    /* ── COMPONENTS ── */
/* ================================================
   CUSIP Design System — cusip-components.css
   All shared styles for every page
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-950:#03081a; --navy-900:#060d2e; --navy-800:#0a1545;
  --navy-700:#0e1f60; --navy-600:#122b7a; --navy-200:#98b2e8;
  --blue-600:#0040cc; --blue-500:#1a5cff; --blue-400:#4d80ff;
  --blue-200:#99b8ff; --blue-50:#eef3ff;
  --teal-600:#007a8a; --teal-500:#009ab0; --teal-400:#26b8cc; --teal-100:#cff2f6;
  --neutral-950:#080c18; --neutral-700:#28304a; --neutral-600:#3d4666;
  --neutral-500:#556080; --neutral-400:#7a849f; --neutral-300:#a3abbe;
  --neutral-200:#cdd2df; --neutral-150:#d8dce8; --neutral-100:#e4e7f0;
  --neutral-50:#f4f5f9; --neutral-0:#ffffff;
}

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--neutral-50);
  color: var(--neutral-950);
  -webkit-font-smoothing: antialiased;
}
body {
      font-family: 'Work Sans', sans-serif;
      background: var(--neutral-50);
      color: var(--neutral-950);
      min-height: 100vh;
    }

    /* ═══════════════════════════════════
       UTILITY BAR
    ════════════════════════════════════ */
    .utility-bar {
      background: #f0f5ff;
      height: 35px;
    }

    .utility-links {
      max-width: 1300px;
      margin: 0 auto;
      height: 35px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .utility-link {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0;
      color: #48617b;
      text-decoration: none;
      padding: 0 10px;
      height: 35px;
      display: flex;
      align-items: center;
      transition: color 0.15s;
    }
    .utility-link:hover { color: var(--blue-500); }

    .utility-divider {
      width: 1px;
      height: 14px;
      background: var(--neutral-200);
      margin: 0 16px;
      flex-shrink: 0;
    }

    .utility-subscribe {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0;
      color: #48617b;
      text-decoration: none;
      height: 35px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.15s;
    }
    .utility-subscribe:hover { color: var(--blue-500); }
    .utility-subscribe svg { flex-shrink: 0; }

    .utility-contact {
      font-size: 12px;
      font-weight: 500;
      color: #48617b;
      text-decoration: none;
      margin-left: 20px;
      height: 35px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.15s;
    }
    .utility-contact:hover { color: var(--blue-500); }

    /* ═══════════════════════════════════
       MAIN HEADER
    ════════════════════════════════════ */
    .site-header {
      background: var(--neutral-0);
      position: sticky;
      top: 0;
      z-index: 150;
      border-bottom: 1px solid var(--neutral-50);
    }

    .header-inner {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0;
      height: 72px;
      display: flex;
      align-items: center;
    }

    /* ── LOGO ── */
    .logo-wrap {
      display: flex;
      align-items: center;
      text-decoration: none;
      margin-right: 40px;
      flex-shrink: 0;
    }

    .logo-img {
      height: 44px;
      width: auto;
      display: block;
    }

    /* ── PRIMARY NAV ── */
    .primary-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
      height: 100%;
      gap: 0;
    }

    .nav-item {
      position: relative;
      height: 72px;
      display: flex;
      align-items: center;
    }

    .nav-link {
      font-size: 15px;
      font-weight: 600;
      color: var(--neutral-700);
      text-decoration: none;
      padding: 0 16px;
      height: 72px;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
      border-bottom: 2px solid transparent;
    }

    .nav-link:hover,
    .nav-item:hover > .nav-link {
      color: var(--blue-500);
      border-bottom-color: transparent;
    }

    /* chevrons removed per design */

    /* ── DROPDOWN ── */
    .dropdown {
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      min-width: 230px;
      background: var(--neutral-0);
      border-radius: 6px;
      border: 1px solid var(--neutral-150);
      box-shadow: 0 8px 32px rgba(3,8,26,0.14), 0 2px 8px rgba(3,8,26,0.06);
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-4px);
      transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
      pointer-events: none;
    }

    .nav-item.open .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: all;
    }

    /* Wide dropdown for Identifiers */
    .dropdown--wide {
      min-width: 280px;
    }

    .dropdown-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--neutral-400);
      padding: 10px 18px 4px;
    }

    .dropdown-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 18px;
      font-size: 13px;
      font-weight: 500;
      color: var(--neutral-600);
      text-decoration: none;
      transition: background 0.15s, color 0.15s;
    }
    .dropdown-link:hover {
      background: var(--neutral-50);
      color: var(--blue-500);
    }
    .dropdown-link .dd-badge {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.08em;
      background: var(--neutral-100);
      color: var(--neutral-400);
      padding: 2px 6px;
      border-radius: 3px;
      margin-left: auto;
    }
    .dropdown-divider {
      height: 1px;
      background: var(--neutral-100);
      margin: 6px 0;
    }

    /* Identifier type pills in dropdown */
    .dd-type {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 20px;
      border-radius: 3px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.05em;
      flex-shrink: 0;
      background: var(--navy-600);
      color: white;
    }
    .dd-type.cins { background: var(--teal-600); }
    .dd-type.isin { background: #1a3d99; }
    .dd-type.lei  { background: #5c7fd4; }
    .dd-type.cei  { background: var(--neutral-600); }

    /* ── NAV SPACER — pushes right group to far right ── */
    .nav-spacer { flex: 1; }

    /* ── CTA AREA ── */
    .header-cta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: 24px;
      flex-shrink: 0;
    }
    .header-cta .btn { border-radius: 9999px; }

    /* ── HEADER SEARCH ICON ── */
    .header-search-btn {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      background: none; border: none; cursor: pointer;
      border-radius: 50%;
      color: var(--neutral-600);
      transition: background 0.15s, color 0.15s;
      flex-shrink: 0;
    }
    .header-search-btn:hover {
      background: var(--neutral-100);
      color: var(--blue-500);
    }
    .mob-search-btn {
      display: none;
      width: 44px; height: 44px;
      align-items: center; justify-content: center;
      background: none; border: none; cursor: pointer;
      border-radius: 50%;
      color: var(--neutral-700);
      transition: background 0.15s, color 0.15s;
      flex-shrink: 0; padding: 0;
      margin-left: auto;
    }
    .mob-search-btn:hover { background: var(--neutral-100); color: var(--blue-500); }

    /* ── HEADER SEARCH (expands over the nav — FactSet-style) ── */
    .header-search {
      display: none;
      align-items: center;
      gap: 14px;
      flex: 1;
      min-width: 0;
      height: 100%;
    }
    .header-search__icon { color: var(--neutral-400); flex-shrink: 0; }
    .header-search__input {
      flex: 1;
      min-width: 0;
      border: none; outline: none; background: none;
      font-family: 'Work Sans', sans-serif;
      font-size: 20px; font-weight: 400; letter-spacing: -0.01em;
      color: var(--neutral-950);
    }
    .header-search__input::placeholder { color: var(--neutral-300); font-weight: 400; }
    /* Open state: clear the logo + nav + CTA, reveal the field, swap the icon to an X */
    .site-header.searching .logo-wrap { display: none; }
    .site-header.searching .primary-nav { display: none; }
    .site-header.searching .header-cta .btn { display: none; }
    .site-header.searching .header-search { display: flex; }
    .hsb-ico--close { display: none; }
    .site-header.searching .hsb-ico--search { display: none; }
    .site-header.searching .hsb-ico--close { display: block; }


    /* ═══════════════════════════════════
       DATA SEARCH BAR (dropdown from header)
    ════════════════════════════════════ */
    .data-search-item {
      position: relative;
    }

    /* data-search uses .nav-item / .dropdown pattern — no extra CSS needed */
    .dropdown-link.locked { opacity: 0.4; cursor: not-allowed; }
    .dropdown-link.locked:hover { background: transparent; color: var(--neutral-600); }

    /* ═══════════════════════════════════
       MOBILE HAMBURGER / TRIGGER
    ════════════════════════════════════ */
    .m-trigger {
      display: none;
      width: 44px; height: 44px;
      background: none; border: none;
      cursor: pointer;
      flex-direction: column;
      align-items: center; justify-content: center;
      gap: 6px;
      flex-shrink: 0; padding: 0;
    }
    .m-line {
      width: 22px; height: 2px;
      background: var(--neutral-700);
      border-radius: 999px;
      transform-origin: center;
      transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
                  opacity  0.2s  cubic-bezier(0.4,0,0.2,1),
                  background 0.22s ease,
                  width 0.2s ease;
    }
    body.nav-open .m-trigger .m-line:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #0070C9; }
    body.nav-open .m-trigger .m-line:nth-child(2) { opacity: 0; width: 0; }
    body.nav-open .m-trigger .m-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #0070C9; }

    /* ── MOBILE BACKDROP ── */
    .mob-backdrop {
      display: none;
      position: fixed; left: 0; right: 0; bottom: 0;
      background: rgba(3,8,26,0.45);
      backdrop-filter: blur(1px);
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 140;
    }
    .mob-backdrop.open { opacity: 1; pointer-events: all; }

    /* ── MOBILE DRAWER ── */
    .mob-drawer {
      display: none;
      position: fixed; left: 0; bottom: 0;
      width: 75%; max-width: 320px;
      background: var(--navy-900);
      transform: translateX(-100%);
      transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
      z-index: 145;
      flex-direction: column;
      overflow-y: auto;
    }
    .mob-drawer::after {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 1px; height: 100%;
      background: rgba(255,255,255,0.06);
    }
    .mob-drawer.open { transform: translateX(0); }

    /* Drawer nav */
    .mob-drw-nav { padding: 6px 0; }
    .mob-drw-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .mob-drw-btn {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; padding: 13px 16px;
      background: none; border: none;
      font-family: 'Work Sans', sans-serif;
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85);
      cursor: pointer; text-align: left;
      transition: background 0.15s, color 0.15s;
      border-left: 2px solid transparent;
    }
    .mob-drw-btn:hover { background: rgba(255,255,255,0.04); color: white; }
    .mob-drw-item.open .mob-drw-btn {
      color: white; border-left-color: var(--teal-400);
      background: rgba(255,255,255,0.04);
    }
    .mob-drw-chev { transition: transform 0.22s ease; flex-shrink: 0; opacity: 0.45; }
    .mob-drw-item.open .mob-drw-chev { transform: rotate(180deg); opacity: 0.8; }
    .mob-drw-sub { display: none; background: rgba(0,0,0,0.15); border-top: 1px solid rgba(255,255,255,0.04); }
    .mob-drw-item.open .mob-drw-sub { display: block; }
    .mob-drw-sub-link {
      display: flex; align-items: center; gap: 8px;
      padding: 9px 16px 9px 30px;
      font-size: 11px; font-weight: 500; color: white;
      text-decoration: none;
      transition: color 0.15s, background 0.15s;
    }
    .mob-drw-sub-link:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.03); }
    .mob-d-pill {
      display: inline-flex; align-items: center; justify-content: center;
      height: 16px; padding: 0 5px; border-radius: 3px;
      font-size: 7.5px; font-weight: 700; letter-spacing: 0.03em;
      flex-shrink: 0;
    }
    .mob-d-pill.cusip { background: var(--navy-600); color: white; }
    .mob-d-pill.cins  { background: var(--teal-500); color: white; }
    .mob-d-pill.isin  { background: #1a3d99; color: white; }
    .mob-d-pill.lei   { background: #5c7fd4; color: white; }
    .mob-d-pill.cei   { background: var(--neutral-600); color: white; }
    .mob-drw-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 4px 0; }

    /* Drawer footer */
    .mob-drw-footer { padding: 14px 16px 20px; border-top: 1px solid rgba(255,255,255,0.07); }
    .mob-drw-cta {
      display: flex; align-items: center; justify-content: center;
      width: 100%; height: 34px;
      background: #0070C9; color: white;
      border: 1px solid #0070C9; border-radius: 30px;
      font-family: 'Work Sans', sans-serif; font-size: 13px; font-weight: 500;
      cursor: pointer; margin-bottom: 12px;
      text-decoration: none;
      box-shadow: 0 1px 2px rgba(26,92,255,0.18);
      transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
    }
    .mob-drw-cta:hover { background: #005CA8; border-color: #005CA8; box-shadow: 0 3px 10px rgba(26,92,255,0.26); }
    .mob-drw-util { display: flex; }
    .mob-drw-util-link {
      font-size: 10px; font-weight: 500; color: white;
      text-decoration: none; padding-right: 12px; margin-right: 12px;
      border-right: 1px solid rgba(255,255,255,0.1);
      transition: color 0.15s;
    }
    .mob-drw-util-link:last-child { border-right: none; }
    .mob-drw-util-link:hover { color: rgba(255,255,255,0.65); }

    /* ═══════════════════════════════════
       PAGE DEMO CONTENT
    ════════════════════════════════════ */
    .demo-page {
      padding: 0;
    }

    .demo-hero {
      background: var(--navy-900);
      padding: 80px 48px;
      text-align: center;
    }
    .demo-eyebrow {
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--teal-400); margin-bottom: 16px;
    }
    .demo-h1 {
      font-size: 52px; font-weight: 800;
      color: white; line-height: 1.08;
      letter-spacing: -0.02em;
      max-width: 700px; margin: 0 auto 20px;
    }
    .demo-body {
      font-size: 19px; font-weight: 300;
      color: var(--navy-200); line-height: 1.7;
      max-width: 540px; margin: 0 auto 32px;
    }
    .demo-btn { display: inline-flex; align-items: center; gap: 8px; background: #0070C9; color: white; padding: 14px 28px; border-radius: 6px; font-weight: 700; font-size: 15px; text-decoration: none; }

    /* ── SPEC DOC ── */
    .spec-section {
      max-width: 1300px;
      margin: 0 auto;
      padding: 64px 48px;
    }
    .spec-title {
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--blue-500); margin-bottom: 8px;
    }
    .spec-h2 { font-size: 26px; font-weight: 800; color: var(--neutral-950); margin-bottom: 8px; }
    .spec-desc { font-size: 15px; color: var(--neutral-600); line-height: 1.7; margin-bottom: 40px; }

    .spec-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 48px; }
    .spec-card {
      background: white;
      border: 1px solid var(--neutral-200);
      border-radius: 8px;
      padding: 24px;
    }
    .spec-card-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-500); margin-bottom: 8px; }
    .spec-card-title { font-size: 16px; font-weight: 700; color: var(--neutral-950); margin-bottom: 6px; }
    .spec-card-body  { font-size: 13px; color: var(--neutral-600); line-height: 1.6; }

    .spec-table { width: 100%; border-collapse: collapse; background: white; border-radius: 8px; overflow: hidden; border: 1px solid var(--neutral-200); }
    .spec-table th { text-align: left; padding: 12px 18px; background: var(--neutral-50); color: var(--neutral-600); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid var(--neutral-200); }
    .spec-table td { padding: 13px 18px; border-bottom: 1px solid var(--neutral-100); font-size: 13px; color: var(--neutral-950); vertical-align: top; }
    .spec-table tr:last-child td { border-bottom: none; }
    .spec-table .mono { font-family: monospace; font-size: 12px; color: var(--blue-500); background: var(--neutral-50); padding: 2px 6px; border-radius: 3px; }
    .spec-table .note { font-size: 12px; color: var(--neutral-400); }

    @media (max-width: 1100px) {
      .header-inner { padding: 0 24px; }
      .utility-links { padding: 0 24px; }
      .nav-link { padding: 0 12px; }
      .spec-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .utility-bar { display: none; }
      .primary-nav { display: none; }
      .header-cta { display: none; }
      .data-search-item { display: none; }
      .m-trigger { display: flex; }
      .mob-search-btn { display: flex; }
      /* Mobile search-open: header row becomes a full-width search field */
      .site-header.searching .m-trigger { display: none; }
      .site-header.searching .header-search { display: flex; order: 1; }
      .site-header.searching .mob-search-btn { order: 2; margin-left: 8px; }
      .site-header.searching .header-search__input { font-size: 16px; }
      .mob-backdrop { display: block; top: 60px; }
      .mob-drawer { display: flex; top: 60px; }
      .header-inner { position: relative; }
      .logo-wrap { position: absolute; left: 50%; transform: translateX(-50%); margin-right: 0; pointer-events: auto; z-index: 10; }
      .logo-img { height: 38px; }
      .spec-grid { grid-template-columns: 1fr; }
      .demo-h1 { font-size: 32px; }
      .demo-hero { padding: 48px 24px; }
      .spec-section { padding: 40px 24px; }
    }
body {
      font-family: 'Work Sans', sans-serif;
      background: var(--neutral-50);
      -webkit-font-smoothing: antialiased;
    }

    /* ── CHROME ── */
    .page-header {
      background: var(--navy-950);
      padding: 36px 60px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-400); opacity: 0.7; margin-bottom: 7px; }
    .page-header h1 { font-size: 24px; font-weight: 600; color: white; letter-spacing: -0.01em; }
    .page-header p  { font-size: 13px; color: var(--neutral-400); margin-top: 4px; font-weight: 400; }

    .body { max-width: 1040px; margin: 0 auto; padding: 56px 60px; }

    .sec-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-500); margin-bottom: 5px; }
    .sec-title { font-size: 18px; font-weight: 700; color: var(--neutral-950); margin-bottom: 4px; letter-spacing: -0.01em; }
    .sec-desc  { font-size: 13px; color: var(--neutral-500); line-height: 1.65; margin-bottom: 28px; font-weight: 400; }

    /* ── PANELS ── */
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 48px; }

    .panel { border-radius: 10px; overflow: hidden; }
    .panel.light { border: 1px solid var(--neutral-200); }
    .panel.dark  { border: 1px solid #141d3a; }

    .panel-cap {
      padding: 8px 22px;
      font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
      display: flex; justify-content: space-between;
    }
    .panel-cap.light { background: var(--neutral-50); color: var(--neutral-300); border-bottom: 1px solid var(--neutral-100); }
    .panel-cap.dark  { background: #020710; color: #1a2240; border-bottom: 1px solid #0c1228; }
    .panel-cap span  { opacity: 0.6; }

    .panel-inner { padding: 36px 28px; display: flex; flex-direction: column; gap: 32px; }
    .panel-inner.light { background: var(--neutral-0); }
    .panel-inner.dark  { background: var(--navy-900); }

    .grp-label {
      font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      margin-bottom: 12px;
    }
    .panel-inner.light .grp-label { color: var(--neutral-200); }
    .panel-inner.dark  .grp-label { color: #16204a; }

    .states { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
    .s-col  { display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .s-tag  { font-size: 9px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; }
    .panel-inner.light .s-tag { color: var(--neutral-300); }
    .panel-inner.dark  .s-tag { color: #1a2448; }

    .pair { display: flex; align-items: center; gap: 8px; }

    /* ════════════════════════════════════════
       BUTTONS
    ════════════════════════════════════════ */

    .btn {
      font-family: 'Work Sans', sans-serif;
      display: inline-flex; align-items: center; justify-content: center;
      gap: 5px;
      border: 1px solid transparent;
      border-radius: 30px;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
      -webkit-font-smoothing: antialiased;
      transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
    }

    /* sizes */
    .btn-sm { font-size: 12px; font-weight: 500; letter-spacing: 0.01em; padding: 0 14px; height: 28px; }
    .btn-md { font-size: 13px; font-weight: 500; letter-spacing: 0.005em; padding: 0 20px; height: 34px; }
    .btn-lg { font-size: 14px; font-weight: 500; letter-spacing: 0.005em; padding: 0 26px; height: 42px; }

    /* ── PRIMARY · LIGHT ── */
    .btn-p {
      background: #0070C9;
      color: #fff;
      border-color: #0070C9;
      box-shadow: 0 1px 2px rgba(26,92,255,0.18);
    }
    .btn-p:not(:disabled):hover          { background: #005CA8; border-color: #005CA8; box-shadow: 0 3px 10px rgba(26,92,255,0.26); }
    .btn-p:active         { background: var(--blue-600); box-shadow: inset 0 1px 2px rgba(0,0,0,0.15); transform: none; }
    .btn-p:focus-visible  { outline: none; background: var(--blue-600); box-shadow: inset 0 1px 2px rgba(0,0,0,0.15); transform: none; }
    .btn-p:disabled       { background: var(--neutral-100); border-color: var(--neutral-100); color: var(--neutral-400); box-shadow: none; cursor: not-allowed; transform: none; }

    /* forced states */
    .st-hover.btn-p  { background: #005CA8; border-color: #005CA8; box-shadow: 0 3px 10px rgba(26,92,255,0.26); }
    .st-active.btn-p { background: var(--blue-600); box-shadow: inset 0 1px 2px rgba(0,0,0,0.15); transform: none; }
    .st-focus.btn-p  { background: var(--blue-600); box-shadow: inset 0 1px 2px rgba(0,0,0,0.15); transform: none; }

    /* ── SECONDARY · LIGHT ── */
    .btn-s {
      background: var(--neutral-0);
      color: var(--neutral-700);
      border-color: var(--neutral-200);
      box-shadow: 0 1px 2px rgba(8,12,24,0.04);
    }
    .btn-s:not(:disabled):hover          { background: var(--neutral-50); border-color: var(--neutral-300); color: var(--neutral-950); box-shadow: 0 1px 3px rgba(8,12,24,0.07); }
    .btn-s:active         { background: var(--neutral-100); box-shadow: inset 0 1px 2px rgba(8,12,24,0.06); transform: none; }
    .btn-s:focus-visible  { outline: none; background: var(--neutral-100); border-color: var(--neutral-400); box-shadow: inset 0 1px 2px rgba(8,12,24,0.06); transform: none; }
    .btn-s:disabled       { color: var(--neutral-300); border-color: var(--neutral-100); box-shadow: none; cursor: not-allowed; background: var(--neutral-0); transform: none; }

    .st-hover.btn-s  { background: var(--neutral-50); border-color: var(--neutral-300); color: var(--neutral-950); box-shadow: 0 1px 3px rgba(8,12,24,0.07); }
    .st-active.btn-s { background: var(--neutral-100); box-shadow: inset 0 1px 2px rgba(8,12,24,0.06); transform: none; }
    .st-focus.btn-s  { background: var(--neutral-100); border-color: var(--neutral-400); box-shadow: inset 0 1px 2px rgba(8,12,24,0.06); transform: none; }

    /* ── PRIMARY · DARK ── */
    .btn-pd {
      background: #0070C9;
      color: #fff;
      border-color: rgba(255,255,255,0.1);
      box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    .btn-pd:not(:disabled):hover          { background: var(--blue-400); border-color: rgba(255,255,255,0.15); box-shadow: 0 3px 14px rgba(77,128,255,0.35); }
    .btn-pd:active         { background: var(--blue-600); box-shadow: inset 0 1px 3px rgba(0,0,0,0.3); transform: none; }
    .btn-pd:focus-visible  { outline: none; background: var(--blue-600); box-shadow: inset 0 1px 3px rgba(0,0,0,0.3); transform: none; }
    .btn-pd:disabled       { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.06); color: rgba(255,255,255,0.2); box-shadow: none; cursor: not-allowed; transform: none; }

    .st-hover.btn-pd  { background: var(--blue-400); border-color: rgba(255,255,255,0.15); box-shadow: 0 3px 14px rgba(77,128,255,0.35); }
    .st-active.btn-pd { background: var(--blue-600); box-shadow: inset 0 1px 3px rgba(0,0,0,0.3); transform: none; }
    .st-focus.btn-pd  { background: var(--blue-600); box-shadow: inset 0 1px 3px rgba(0,0,0,0.3); transform: none; }

    /* ── SECONDARY · DARK ── */
    .btn-sd {
      background: rgba(255,255,255,0.04);
      color: rgba(255,255,255,0.6);
      border-color: rgba(255,255,255,0.1);
      box-shadow: none;
    }
    .btn-sd:not(:disabled):hover          { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); color: rgba(255,255,255,0.9); }
    .btn-sd:active         { background: rgba(255,255,255,0.12); transform: none; }
    .btn-sd:focus-visible  { outline: none; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.40); transform: none; }
    .btn-sd:disabled       { color: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.05); background: transparent; cursor: not-allowed; transform: none; }

    .st-hover.btn-sd  { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); color: rgba(255,255,255,0.9); }
    .st-active.btn-sd { background: rgba(255,255,255,0.12); transform: none; }
    .st-focus.btn-sd  { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.40); transform: none; }

    /* ── SIZES PANEL ── */
    .sizes-panel {
      background: var(--neutral-0);
      border: 1px solid var(--neutral-200);
      border-radius: 10px;
      padding: 32px 28px;
      display: flex; align-items: flex-end; gap: 20px; flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .sz-item { display: flex; flex-direction: column; gap: 8px; }
    .sz-tag  { font-size: 10px; color: var(--neutral-300); font-weight: 500; letter-spacing: 0.02em; }
    .sz-sep  { width: 1px; height: 42px; background: var(--neutral-100); align-self: center; }

    /* ── DELTA TABLE ── */
    .divider { height: 1px; background: var(--neutral-200); margin: 48px 0; }

    table { width: 100%; border-collapse: collapse; background: white; border-radius: 8px; overflow: hidden; border: 1px solid var(--neutral-200); font-size: 13px; }
    th { text-align: left; padding: 10px 18px; background: var(--neutral-50); color: var(--neutral-400); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid var(--neutral-200); }
    td { padding: 11px 18px; border-bottom: 1px solid var(--neutral-100); vertical-align: middle; color: var(--neutral-950); }
    tr:last-child td { border-bottom: none; }
    tr:hover td { background: var(--neutral-50); }
    .tg-row td { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-500); background: white; padding: 9px 18px 4px; border-bottom: 1px solid var(--neutral-100); }
    code { font-family: 'Courier New', monospace; font-size: 11px; color: var(--blue-500); background: #f0f5ff; padding: 2px 6px; border-radius: 3px; }
    .old  { color: var(--neutral-400); font-size: 12px; text-decoration: line-through; }
    .note { color: var(--neutral-400); font-size: 12px; }
    .dot  { display: inline-block; width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.08); vertical-align: middle; margin-right: 5px; }

    @media (max-width: 740px) {
      .two-col { grid-template-columns: 1fr; }
      .body { padding: 36px 24px; }
      .page-header { padding: 32px 24px; }
    }
body {
      font-family: 'Work Sans', sans-serif;
      background: var(--neutral-50);
      color: var(--neutral-950);
      -webkit-font-smoothing: antialiased;
    }

    /* ── PAGE CHROME ── */
    .page-header {
      background: var(--navy-950);
      padding: 36px 60px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-400); opacity: 0.7; margin-bottom: 7px; }
    .page-header h1 { font-size: 24px; font-weight: 600; color: white; letter-spacing: -0.01em; }
    .page-header p  { font-size: 13px; color: var(--neutral-400); margin-top: 4px; }

    .body { max-width: 1300px; margin: 0 auto; padding: 56px 60px; }

    .sec-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-500); margin-bottom: 5px; }
    .sec-title { font-size: 18px; font-weight: 700; color: var(--neutral-950); margin-bottom: 4px; letter-spacing: -0.01em; }
    .sec-desc  { font-size: 13px; color: var(--neutral-500); line-height: 1.65; margin-bottom: 28px; }
    .divider   { height: 1px; background: var(--neutral-200); margin: 52px 0; }

    /* ── SURFACE ── */
    .surface-light { background: var(--neutral-0); border: 1px solid var(--neutral-200); border-radius: 12px; padding: 32px; }
    .surface-mid   { background: var(--neutral-50); border: 1px solid var(--neutral-200); border-radius: 12px; padding: 32px; }
    .surface-dark  { background: var(--navy-900); border-radius: 12px; padding: 32px; }
    .surface-navy  { background: var(--navy-800); border-radius: 12px; padding: 32px; }

    /* ── GRIDS ── */
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

    .surface-label {
      font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
      margin-bottom: 20px;
    }
    .surface-light .surface-label,
    .surface-mid   .surface-label { color: var(--neutral-300); }
    .surface-dark  .surface-label,
    .surface-navy  .surface-label { color: rgba(255,255,255,0.2); }

    /* ════════════════════════════════════════
       CARD BASE
    ════════════════════════════════════════ */

    .card {
      border-radius: 10px;
      display: flex;
      flex-direction: column;
    }

    /* ── LIGHT CARD ── */
    .card-light {
      background: var(--neutral-0);
      border: 1px solid var(--neutral-200);
      padding: 24px;
    }

    /* ── MUTED CARD (sits on white surface) ── */
    .card-muted {
      background: var(--neutral-50);
      border: 1px solid var(--neutral-100);
      padding: 24px;
    }

    /* ── DARK CARD ── */
    .card-dark {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      padding: 24px;
    }

    /* ── NAVY CARD (on dark surfaces) ── */
    .card-navy {
      background: var(--navy-800);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 24px;
    }

    /* ── ACCENT-BORDER CARD ── */
    .card-accent-blue {
      background: var(--neutral-0);
      border: 1px solid var(--neutral-200);
      border-left: 3px solid var(--blue-500);
      border-radius: 0 10px 10px 0;
      padding: 22px 24px;
    }
    .card-accent-teal {
      background: var(--neutral-0);
      border: 1px solid var(--neutral-200);
      border-left: 3px solid var(--teal-400);
      border-radius: 0 10px 10px 0;
      padding: 22px 24px;
    }
    .card-accent-navy {
      background: var(--neutral-0);
      border: 1px solid var(--neutral-200);
      border-left: 3px solid var(--navy-600);
      border-radius: 0 10px 10px 0;
      padding: 22px 24px;
    }

    /* ── TOP-BORDER CARD ── */
    .card-top-blue {
      background: var(--neutral-0);
      border: 1px solid var(--neutral-200);
      border-top: 3px solid var(--blue-500);
      border-radius: 0 0 10px 10px;
      padding: 24px;
    }
    .card-top-teal {
      background: var(--neutral-0);
      border: 1px solid var(--neutral-200);
      border-top: 3px solid var(--teal-400);
      border-radius: 0 0 10px 10px;
      padding: 24px;
    }

    /* ── DARK ACCENT CARD ── */
    .card-dark-accent-blue {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-left: 3px solid var(--blue-500);
      border-radius: 0 10px 10px 0;
      padding: 22px 24px;
    }
    .card-dark-accent-teal {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-left: 3px solid var(--teal-400);
      border-radius: 0 10px 10px 0;
      padding: 22px 24px;
    }

    /* ════════════════════════════════════════
       CARD CONTENT ELEMENTS
    ════════════════════════════════════════ */

    .card-title {
      font-size: 15px;
      font-weight: 600;
      line-height: 1.35;
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }
    .card-title-lg {
      font-size: 17px;
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: -0.015em;
      margin-bottom: 10px;
    }
    .card-title-sm {
      font-size: 13px;
      font-weight: 600;
      line-height: 1.35;
      margin-bottom: 6px;
    }

    .card-body {
      font-size: 13px;
      line-height: 1.7;
      font-weight: 400;
    }
    .card-body-sm {
      font-size: 12px;
      line-height: 1.65;
      font-weight: 400;
    }

    /* Light surface text colors */
    .card-light    .card-title,
    .card-light    .card-title-lg,
    .card-light    .card-title-sm,
    .card-muted    .card-title,
    .card-muted    .card-title-lg,
    .card-muted    .card-title-sm,
    .card-accent-blue .card-title,
    .card-accent-blue .card-title-lg,
    .card-accent-teal .card-title,
    .card-accent-teal .card-title-lg,
    .card-accent-navy .card-title,
    .card-accent-navy .card-title-lg,
    .card-top-blue .card-title,
    .card-top-blue .card-title-lg,
    .card-top-teal .card-title,
    .card-top-teal .card-title-lg { color: var(--neutral-950); }

    .card-light    .card-body,
    .card-light    .card-body-sm,
    .card-muted    .card-body,
    .card-muted    .card-body-sm,
    .card-accent-blue .card-body,
    .card-accent-teal .card-body,
    .card-accent-navy .card-body,
    .card-top-blue .card-body,
    .card-top-teal .card-body { color: var(--neutral-500); }

    /* ════════════════════════════════════════
       IMAGE CARDS
    ════════════════════════════════════════ */

    .card-img {
      background: var(--neutral-0);
      border: 1px solid var(--neutral-200);
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.2s, border-color 0.2s;
    }
    .card-img:hover {
      border-color: var(--neutral-300);
      box-shadow: 0 4px 20px rgba(8,12,24,0.07);
    }
    .card-img-wrap {
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      flex-shrink: 0;
    }
    .card-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }
    .card-img:hover .card-img-wrap img { transform: scale(1.03); }
    .card-img-body {
      padding: 22px 24px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .card-img-body .card-meta {
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--neutral-400);
      margin-bottom: 8px;
      display: flex; align-items: center; gap: 6px;
    }
    .card-img-body .card-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--neutral-300); }
    .card-img-body .card-title { color: var(--neutral-950); font-size: 15px; font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; }
    .card-img-body .card-body  { color: var(--neutral-500); font-size: 13px; line-height: 1.7; margin-top: 8px; flex: 1; }

    /* square / portrait ratio variant */
    .card-img-wrap.ratio-square  { aspect-ratio: 1/1; }
    .card-img-wrap.ratio-tall    { aspect-ratio: 1/2; }

    /* ── Headshot / person card ── */
    .card-person {
      background: var(--neutral-0);
      border: 1px solid var(--neutral-200);
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.2s, border-color 0.2s;
    }
    .card-person:hover {
      border-color: var(--neutral-300);
      box-shadow: 0 4px 20px rgba(8,12,24,0.07);
    }
    .card-person-photo {
      width: 100%;
      aspect-ratio: 1/1;
      overflow: hidden;
      flex-shrink: 0;
      background: linear-gradient(160deg, var(--neutral-100) 0%, var(--neutral-200) 100%);
    }
    .card-person-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform 0.3s ease;
    }
    .card-person:hover .card-person-photo img { transform: scale(1.03); }

    .card-person-info {
      padding: 18px 20px 20px;
      border-top: 1px solid var(--neutral-100);
    }
    .person-name {
      font-size: 14px; font-weight: 600;
      color: var(--neutral-950);
      letter-spacing: -0.01em;
      line-height: 1.3;
    }
    .person-role {
      font-size: 12px; font-weight: 500;
      color: var(--blue-500);
      margin-top: 2px;
    }
    .person-org {
      font-size: 11px;
      color: var(--neutral-400);
      margin-top: 1px;
    }
    .person-bio {
      font-size: 12px; line-height: 1.65;
      color: var(--neutral-500);
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid var(--neutral-100);
    }

    /* Square is now the default ratio — no modifier needed */

    /* Dark person card */
    .card-person-dk {
      background: var(--navy-800);
      border-color: rgba(255,255,255,0.06);
    }
    .card-person-dk:hover {
      border-color: rgba(255,255,255,0.12);
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }
    .card-person-dk .card-person-info { border-top-color: rgba(255,255,255,0.06); }
    .card-person-dk .person-name { color: var(--neutral-0); }
    .card-person-dk .person-role { color: var(--blue-400); }
    .card-person-dk .person-org  { color: rgba(255,255,255,0.3); }
    .card-person-dk .person-bio  { color: rgba(255,255,255,0.4); border-top-color: rgba(255,255,255,0.06); }

    /* Photo placeholder for person cards */
    .person-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(160deg, var(--neutral-100) 0%, var(--neutral-200) 100%);
    }
    .person-placeholder-inner {
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      opacity: 0.35;
    }
    .person-placeholder svg { width: 40px; height: 40px; color: var(--neutral-600); }
    .person-placeholder-label { font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neutral-600); }

    .person-placeholder-dk {
      background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.08) 100%);
    }
    .person-placeholder-dk .person-placeholder-inner { opacity: 0.2; }
    .person-placeholder-dk svg,
    .person-placeholder-dk .person-placeholder-label { color: white; }

    .img-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .img-placeholder-inner {
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      opacity: 0.25;
    }
    .img-placeholder-inner svg { width: 28px; height: 28px; color: white; }
    .img-placeholder-label { font-size: 9px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: white; }

    /* ════════════════════════════════════════
       STAT CARDS
    ════════════════════════════════════════ */

    .card-stat {
      background: var(--neutral-0);
      border: 1px solid var(--neutral-200);
      border-radius: 10px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .stat-label {
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--neutral-400);
      margin-bottom: 4px;
    }
    .stat-value {
      font-size: 52px; font-weight: 800;
      color: var(--neutral-950);
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .stat-value span { font-size: 26px; font-weight: 800; color: var(--blue-500); margin-left: 3px; }
    .stat-sub {
      font-size: 13px;
      color: var(--neutral-500);
      line-height: 1.5;
      margin-top: 6px;
    }

    .card-stat-dk {
      background: var(--navy-900);
      border: 1px solid rgba(255,255,255,0.18);
    }
    .card-stat-dk .stat-label { color: rgba(255,255,255,0.35); }
    .card-stat-dk .stat-value { color: var(--neutral-0); }
    .card-stat-dk .stat-value span { color: var(--teal-400); }
    .card-stat-dk .stat-sub   { color: rgba(255,255,255,0.45); }

    .card-stat-hl {
      background: #0070C9;
      border-color: transparent;
    }
    .card-stat-hl .stat-label { color: rgba(255,255,255,0.65); }
    .card-stat-hl .stat-value { color: white; }
    .card-stat-hl .stat-value span { color: rgba(255,255,255,0.8); }
    .card-stat-hl .stat-sub   { color: white; }

    /* ════════════════════════════════════════
       FEATURE / SERVICE CARDS
    ════════════════════════════════════════ */

    .card-feature {
      background: var(--neutral-0);
      border: 1px solid var(--neutral-200);
      border-radius: 10px;
      padding: 28px;
      display: flex; flex-direction: column; gap: 14px;
      transition: box-shadow 0.2s, border-color 0.2s;
    }
    .card-feature:hover {
      border-color: var(--neutral-300);
      box-shadow: 0 4px 20px rgba(8,12,24,0.07);
    }
    .feature-icon {
      width: 40px; height: 40px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .icon-blue { background: #eef3ff; color: var(--blue-500); }
    .icon-teal { background: #e6f8fa; color: var(--teal-600); }
    .icon-navy { background: #eef0f8; color: var(--navy-600); }
    .feature-icon svg { width: 18px; height: 18px; }
    .feature-title { font-size: 15px; font-weight: 600; color: var(--neutral-950); letter-spacing: -0.01em; line-height: 1.3; }
    .feature-desc  { font-size: 13px; color: var(--neutral-500); line-height: 1.65; flex: 1; }
    .card-link {
      font-size: 12px; font-weight: 500; color: var(--blue-500);
      text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
      transition: gap 0.15s;
    }
    .card-link:hover { gap: 8px; }

    .card-feature-accent { border-left: 3px solid var(--blue-500); border-radius: 0 10px 10px 0; padding-left: 25px; }
    .card-feature-accent.teal { border-left-color: var(--teal-400); }
    .card-feature-accent.navy { border-left-color: var(--navy-600); }

    .card-feature-dk { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); }
    .card-feature-dk:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
    .card-feature-dk .feature-title { color: var(--neutral-0); }
    .card-feature-dk .feature-desc  { color: rgba(255,255,255,0.45); }
    .card-feature-dk .icon-blue { background: rgba(26,92,255,0.15);   color: var(--blue-400); }
    .card-feature-dk .icon-teal { background: rgba(38,184,204,0.12);  color: var(--teal-400); }
    .card-feature-dk .icon-navy { background: rgba(152,178,232,0.10); color: var(--navy-200); }

    /* ════════════════════════════════════════
       CTA / PROMO CARDS
    ════════════════════════════════════════ */

    .btn { font-family: 'Work Sans', sans-serif; display: inline-flex; align-items: center; gap: 5px; border: 1px solid transparent; border-radius: 30px; cursor: pointer; text-decoration: none; white-space: nowrap; -webkit-font-smoothing: antialiased; transition: background 0.15s, border-color 0.15s, color 0.15s; }
    .btn-md { font-size: 13px; font-weight: 500; padding: 0 20px; height: 34px; }
    .btn-p        { background: #0070C9; color: #fff; border-color: #0070C9; }
    .btn-p:not(:disabled):hover  { background: var(--blue-600); border-color: var(--blue-600); }
    .btn-s        { background: var(--neutral-0); color: var(--neutral-700); border-color: var(--neutral-200); }
    .btn-s:not(:disabled):hover  { background: var(--neutral-50); border-color: var(--neutral-300); }
    .btn-p-dk       { background: #0070C9; color: #fff; border-color: transparent; }
    .btn-p-dk:hover { background: var(--blue-400); }
    .btn-ghost-dk       { background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.55); }
    .btn-ghost-dk:hover { background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.8); color: white; }

    .card-cta { border-radius: 10px; padding: 40px 36px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; }
    .card-cta-light { background: var(--neutral-0); border: 1px solid var(--neutral-200); }
    .card-cta-navy  { background: var(--navy-900);  border: 1px solid rgba(255,255,255,0.06); }
    .card-cta-blue  { background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 100%); border: none; }

    .cta-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
    .card-cta-light .cta-eyebrow { color: var(--blue-500); }
    .card-cta-navy  .cta-eyebrow { color: var(--blue-400); }
    .card-cta-blue  .cta-eyebrow { color: rgba(255,255,255,0.65); }

    .cta-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
    .card-cta-light .cta-title { color: var(--neutral-950); }
    .card-cta-navy  .cta-title { color: var(--neutral-0); }
    .card-cta-blue  .cta-title { color: white; }

    .cta-desc { font-size: 13px; line-height: 1.65; }
    .card-cta-light .cta-desc { color: var(--neutral-500); }
    .card-cta-navy  .cta-desc { color: rgba(255,255,255,0.45); }
    .card-cta-blue  .cta-desc { color: rgba(255,255,255,0.65); }

    .cta-actions { display: flex; gap: 8px; align-items: center; margin-top: 4px; flex-wrap: wrap; }

    .card-cta::after { content: ''; position: absolute; right: -40px; top: -40px; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.05); pointer-events: none; }
    .card-cta-light::after { border-color: rgba(8,12,24,0.04); }

    .card-cta-inline { flex-direction: row; align-items: center; justify-content: space-between; padding: 28px 32px; gap: 24px; }
    .card-cta-inline .cta-text    { flex: 1; }
    .card-cta-inline .cta-actions { margin-top: 0; flex-shrink: 0; }

    /* Dark surface text colors */
    .card-dark .card-title,
    .card-dark .card-title-lg,
    .card-dark .card-title-sm,
    .card-navy .card-title,
    .card-navy .card-title-lg,
    .card-navy .card-title-sm,
    .card-dark-accent-blue .card-title,
    .card-dark-accent-blue .card-title-lg,
    .card-dark-accent-blue .card-title-sm,
    .card-dark-accent-teal .card-title,
    .card-dark-accent-teal .card-title-lg,
    .card-dark-accent-teal .card-title-sm { color: var(--neutral-0) !important; }

    .card-dark .card-body,
    .card-dark .card-body-sm,
    .card-navy .card-body,
    .card-navy .card-body-sm,
    .card-dark-accent-blue .card-body,
    .card-dark-accent-blue .card-body-sm,
    .card-dark-accent-teal .card-body,
    .card-dark-accent-teal .card-body-sm { color: rgba(255,255,255,0.5) !important; }
body {
      font-family: 'Work Sans', sans-serif;
      background: var(--neutral-50);
      color: var(--neutral-950);
      -webkit-font-smoothing: antialiased;
    }

    /* ── PAGE CHROME ── */
    .page-header {
      background: var(--navy-950);
      padding: 36px 60px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-400); opacity: 0.7; margin-bottom: 7px; }
    .page-header h1 { font-size: 24px; font-weight: 600; color: white; letter-spacing: -0.01em; }
    .page-header p  { font-size: 13px; color: var(--neutral-400); margin-top: 4px; }

    .body { max-width: 1300px; margin: 0 auto; padding: 56px 60px; }

    .sec-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-500); margin-bottom: 5px; }
    .sec-title { font-size: 18px; font-weight: 700; color: var(--neutral-950); margin-bottom: 4px; letter-spacing: -0.01em; }
    .sec-desc  { font-size: 13px; color: var(--neutral-500); line-height: 1.65; margin-bottom: 28px; }
    .divider   { height: 1px; background: var(--neutral-200); margin: 52px 0; }

    .surface-dark  { background: var(--navy-900); border-radius: 12px; padding: 32px; }
    .surface-white { background: var(--neutral-0); border-radius: 12px; padding: 32px; border: 1px solid var(--neutral-200); }
    .surface-mid   { background: var(--neutral-100); border-radius: 12px; padding: 32px; }
    .surface-label { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
    .surface-dark  .surface-label { color: rgba(255,255,255,0.2); }
    .surface-white .surface-label { color: var(--neutral-300); }
    .surface-mid   .surface-label { color: var(--neutral-400); }

    .row { margin-bottom: 24px; }
    .row:last-child { margin-bottom: 0; }

    /* ══════════════════════════════════════════
       TAB PANEL CONTENT (shared)
    ══════════════════════════════════════════ */
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    /* Max-width constraint for all tab components */
    .tabs-underline,
    .tabs-pill,
    .tabs-box,
    .tab-content { max-width: 1300px; }

    /* ══════════════════════════════════════════
       01 — UNDERLINE TABS (primary / editorial)
    ══════════════════════════════════════════ */

    .tabs-underline {
      display: flex;
      align-items: flex-end;
      gap: 0;
      border-bottom: 1px solid var(--neutral-200);
      margin-bottom: 0;
    }
    .tabs-underline .tab {
      font-size: 15px;
      font-weight: 500;
      color: var(--neutral-400);
      padding: 0 0 14px 0;
      margin-right: 32px;
      border: none;
      background: none;
      cursor: pointer;
      position: relative;
      letter-spacing: -0.01em;
      transition: color 0.15s;
      white-space: nowrap;
      font-family: 'Work Sans', sans-serif;
      -webkit-font-smoothing: antialiased;
    }
    .tabs-underline .tab::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0; right: 0;
      height: 2px;
      background: #0070C9;
      border-radius: 2px 2px 0 0;
      opacity: 0;
      transition: opacity 0.15s;
    }
    .tabs-underline .tab:hover { color: var(--neutral-700); }
    .tabs-underline .tab.active {
      color: var(--neutral-950);
      font-weight: 600;
    }
    .tabs-underline .tab.active::after { opacity: 1; }

    /* SM size */
    .tabs-underline.tabs-sm .tab {
      font-size: 13px;
      font-weight: 500;
      padding-bottom: 10px;
      margin-right: 24px;
    }

    /* LG size — matches live site hero tabs */
    .tabs-underline.tabs-lg .tab {
      font-size: 18px;
      font-weight: 600;
      padding-bottom: 18px;
      margin-right: 48px;
    }

    /* Dark surface underline tabs */
    .tabs-underline.tabs-dk {
      border-bottom-color: rgba(255,255,255,0.10);
    }
    .tabs-underline.tabs-dk .tab { color: rgba(255,255,255,0.35); }
    .tabs-underline.tabs-dk .tab:hover { color: rgba(255,255,255,0.7); }
    .tabs-underline.tabs-dk .tab.active { color: var(--neutral-0); }
    .tabs-underline.tabs-dk .tab::after { background: var(--blue-400); }

    /* Tab content area */
    /* Total visual gap from tab bar to content text = ~60px across all sizes */
    .tab-content {
      padding-top: 44px;
    }
    .tab-content-lg { padding-top: 44px; }
    .tab-content-sm { padding-top: 16px; }

    /* ══════════════════════════════════════════
       02 — PILL TABS (secondary / filter)
    ══════════════════════════════════════════ */

    .tabs-pill {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }
    .tabs-pill .tab {
      font-family: 'Work Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--neutral-500);
      padding: 6px 16px;
      border: 1px solid transparent;
      border-radius: 30px;
      background: transparent;
      cursor: pointer;
      transition: color 0.15s, background 0.15s, border-color 0.15s;
      white-space: nowrap;
      -webkit-font-smoothing: antialiased;
    }
    .tabs-pill .tab:hover {
      color: var(--neutral-700);
      background: var(--neutral-100);
    }
    .tabs-pill .tab.active {
      color: var(--blue-600);
      background: #eef3ff;
      border-color: #c5d5ff;
      font-weight: 600;
    }

    /* Pill on white surface */
    .tabs-pill.tabs-pill-outline .tab {
      border-color: var(--neutral-200);
      color: var(--neutral-500);
      background: var(--neutral-0);
    }
    .tabs-pill.tabs-pill-outline .tab:hover {
      border-color: var(--neutral-300);
      color: var(--neutral-700);
      background: var(--neutral-50);
    }
    .tabs-pill.tabs-pill-outline .tab.active {
      background: #0070C9;
      border-color: #0070C9;
      color: white;
      font-weight: 600;
    }

    /* Dark pill */
    .tabs-pill.tabs-pill-dk .tab {
      color: rgba(255,255,255,0.4);
    }
    .tabs-pill.tabs-pill-dk .tab:hover {
      color: rgba(255,255,255,0.75);
      background: rgba(255,255,255,0.07);
    }
    .tabs-pill.tabs-pill-dk .tab.active {
      color: white;
      background: rgba(26,92,255,0.25);
      border-color: rgba(26,92,255,0.4);
    }

    /* ══════════════════════════════════════════
       03 — BOXED / SEGMENTED TABS
    ══════════════════════════════════════════ */

    .tabs-box {
      display: inline-flex;
      align-items: center;
      background: var(--neutral-100);
      border-radius: 10px;
      padding: 4px;
      gap: 2px;
    }
    .tabs-box .tab {
      font-family: 'Work Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--neutral-500);
      padding: 7px 18px;
      border: none;
      border-radius: 7px;
      background: transparent;
      cursor: pointer;
      transition: color 0.15s, background 0.15s, box-shadow 0.15s;
      white-space: nowrap;
      -webkit-font-smoothing: antialiased;
    }
    .tabs-box .tab:hover { color: var(--neutral-700); }
    .tabs-box .tab.active {
      background: var(--neutral-0);
      color: var(--neutral-950);
      font-weight: 600;
      box-shadow: 0 1px 4px rgba(8,12,24,0.10);
    }

    /* Dark segmented */
    .tabs-box.tabs-box-dk {
      background: rgba(255,255,255,0.06);
    }
    .tabs-box.tabs-box-dk .tab { color: rgba(255,255,255,0.4); }
    .tabs-box.tabs-box-dk .tab:hover { color: rgba(255,255,255,0.75); }
    .tabs-box.tabs-box-dk .tab.active {
      background: rgba(255,255,255,0.10);
      color: white;
      box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    }

    /* ══════════════════════════════════════════
       SAMPLE PANEL CONTENT
    ══════════════════════════════════════════ */

    .demo-panel {
      background: var(--neutral-0);
      border: 1px solid var(--neutral-200);
      border-radius: 10px;
      padding: 28px;
    }
    /* Underline tabs — content has no border or background */
    .demo-panel-bare {
      padding: 0 0 4px;
    }
    .demo-panel-bare h3 {
      font-size: 16px; font-weight: 600;
      color: var(--neutral-950);
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }
    .demo-panel-bare p {
      font-size: 13px; line-height: 1.7;
      color: var(--neutral-500);
    }
    .demo-panel-bare-dk {
      padding: 0 0 4px;
    }
    .demo-panel-bare-dk h3 { font-size: 16px; font-weight: 600; color: var(--neutral-0); letter-spacing: -0.01em; margin-bottom: 8px; }
    .demo-panel-bare-dk p  { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); }
    .demo-panel-dk {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      padding: 28px;
    }
    .demo-panel-muted {
      background: var(--neutral-50);
      border: 1px solid var(--neutral-100);
      border-radius: 10px;
      padding: 28px;
    }
    .demo-panel-muted h3 {
      font-size: 16px; font-weight: 600;
      color: var(--neutral-950);
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }
    .demo-panel-muted p {
      font-size: 13px; line-height: 1.7;
      color: var(--neutral-500);
    }
    .demo-panel h3 {
      font-size: 16px; font-weight: 600;
      color: var(--neutral-950);
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }
    .demo-panel-dk h3 { color: var(--neutral-0); }
    .demo-panel p, .demo-panel-dk p {
      font-size: 13px; line-height: 1.7;
      color: var(--neutral-500);
    }
    .demo-panel-dk p { color: rgba(255,255,255,0.45); }

    /* ══════════════════════════════════════════
       ANATOMY NOTES
    ══════════════════════════════════════════ */
    .token-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 12px;
      margin-top: 20px;
    }
    .token-table th {
      text-align: left;
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--neutral-400);
      padding: 0 12px 10px 0;
      border-bottom: 1px solid var(--neutral-200);
    }
    .token-table td {
      padding: 10px 12px 10px 0;
      border-bottom: 1px solid var(--neutral-100);
      color: var(--neutral-700);
      vertical-align: top;
    }
    .token-table tr:last-child td { border-bottom: none; }
    .token-table td:first-child { color: var(--neutral-950); font-weight: 500; }
    code {
      font-family: 'SF Mono', 'Fira Code', monospace;
      font-size: 11px;
      background: var(--neutral-100);
      color: var(--blue-600);
      padding: 2px 6px;
      border-radius: 4px;
    }

/* ================================================
   BANNER COMPONENTS
   ================================================ */

/* ── Shared: Eyebrow ── */
.banner-eyebrow {
  display: inline-block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 18px;
}
.banner-eyebrow.light { color: var(--teal-400); }
.banner-eyebrow.dark  { color: var(--neutral-500); }

/* ── Shared: CTA row ── */
.banner-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.banner-cta-row.center { justify-content: center; }

/* ── Shared: image overlay ── */
.has-bg-image { background-size: cover; background-position: center; }

/* ─────────────────────────────────────────
   01-02 · Hero Banner — Dark, Centered
───────────────────────────────────────── */
.banner-hero-dark {
  width: 100%; background: var(--navy-900);
  padding: 100px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.banner-hero-dark::before {
  content: ''; position: absolute; inset: 0;
  background: none;
  pointer-events: none;
}
.banner-hero-dark.has-bg-image::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(6,13,46,0.75); z-index: 0;
}
.banner-hero-dark .inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.banner-hero-dark h1 {
  font-size: 52px; font-weight: 800; color: white;
  line-height: 1.06; letter-spacing: -0.025em; margin-bottom: 20px;
}
.banner-hero-dark p {
  font-size: 18px; font-weight: 300; color: var(--navy-200);
  line-height: 1.75; max-width: 540px; margin: 0 auto 36px;
}

/* ─────────────────────────────────────────
   03 · Hero Banner — Dark, Split
───────────────────────────────────────── */
.banner-hero-split {
  width: 100%; background: var(--navy-950);
  border-top: 3px solid var(--teal-400);
  padding: 88px 60px;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 80px; align-items: center;
  position: relative; overflow: hidden;
}
.banner-hero-split::before {
  content: ''; position: absolute; inset: 0;
  background: none;
  pointer-events: none;
}
.banner-hero-split .left { position: relative; z-index: 1; }
.banner-hero-split h1 {
  font-size: 44px; font-weight: 800; color: white;
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 18px;
}
.banner-hero-split p {
  font-size: 16px; font-weight: 300; color: var(--navy-200);
  line-height: 1.75; margin-bottom: 32px; max-width: 440px;
}
.banner-hero-split .right {
  position: relative; z-index: 1;
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--navy-800);
}
.banner-hero-split .right img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─────────────────────────────────────────
   04-05 · Hero Banner — Light
───────────────────────────────────────── */
.banner-hero-light {
  width: 100%; background: var(--neutral-0);
  padding: 100px 60px; text-align: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--neutral-200);
}
.banner-hero-light.has-bg-image::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.88); z-index: 0;
}
.banner-hero-light .inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.banner-hero-light h1 {
  font-size: 52px; font-weight: 800; color: var(--neutral-950);
  line-height: 1.06; letter-spacing: -0.025em; margin-bottom: 20px;
}
.banner-hero-light p {
  font-size: 18px; font-weight: 300; color: var(--neutral-600);
  line-height: 1.75; max-width: 540px; margin: 0 auto 36px;
}

.banner-hero-light-split {
  width: 100%; background: var(--neutral-0);
  padding: 88px 60px;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 80px; align-items: center;
  border-bottom: 1px solid var(--neutral-200);
}
.banner-hero-light-split h1 {
  font-size: 44px; font-weight: 800; color: var(--neutral-950);
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 18px;
}
.banner-hero-light-split p {
  font-size: 16px; font-weight: 300; color: var(--neutral-600);
  line-height: 1.75; margin-bottom: 32px;
}
.banner-hero-light-split .right {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--neutral-100);
}
.banner-hero-light-split .right img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─────────────────────────────────────────
   06-07 · Promotional Banner — Dark
───────────────────────────────────────── */
.banner-promo-dark {
  width: 100%; background: var(--teal-600);
  padding: 48px 60px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
  position: relative; overflow: hidden;
}
.banner-promo-dark::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,92,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.banner-promo-dark.has-bg-image::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,21,69,0.82); z-index: 0;
}
.banner-promo-dark .promo-content { position: relative; z-index: 2; }
.banner-promo-dark h2 {
  font-size: 26px; font-weight: 800; color: white;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.banner-promo-dark p {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.7);
  line-height: 1.6; max-width: 520px;
}
.banner-promo-dark .promo-cta { position: relative; z-index: 2; flex-shrink: 0; }

/* ─────────────────────────────────────────
   08 · Promotional Banner — Light
───────────────────────────────────────── */
.banner-promo-light {
  width: 100%; background: var(--neutral-50);
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  padding: 48px 60px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
}
.banner-promo-light h2 {
  font-size: 26px; font-weight: 800; color: var(--neutral-950);
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.banner-promo-light p {
  font-size: 15px; font-weight: 300; color: var(--neutral-600);
  line-height: 1.6; max-width: 520px;
}
.banner-promo-light .promo-cta { flex-shrink: 0; }

/* ─────────────────────────────────────────
   09-10 · Section Divider — Dark
───────────────────────────────────────── */
.banner-divider-dark {
  width: 100%; background: var(--navy-800);
  border-top: 3px solid var(--teal-400);
  padding: 56px 60px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
  position: relative; overflow: hidden;
}
.banner-divider-dark .bg-overlay {
  position: absolute; inset: 0;
  background: rgba(10,21,69,0.78); z-index: 0;
}
.banner-divider-dark .div-content { position: relative; z-index: 1; }
.banner-divider-dark h2 {
  font-size: 30px; font-weight: 800; color: white;
  letter-spacing: -0.015em; margin-bottom: 10px;
}
.banner-divider-dark p {
  font-size: 15px; font-weight: 300; color: var(--navy-200);
  line-height: 1.65; max-width: 560px;
}
.banner-divider-dark .div-cta { flex-shrink: 0; position: relative; z-index: 1; }

/* ─────────────────────────────────────────
   11 · Section Divider — Light
───────────────────────────────────────── */
.banner-divider-light {
  width: 100%; background: var(--neutral-0);
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  padding: 56px 60px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
}
.banner-divider-light h2 {
  font-size: 30px; font-weight: 800; color: var(--neutral-950);
  letter-spacing: -0.015em; margin-bottom: 10px;
}
.banner-divider-light p {
  font-size: 15px; font-weight: 300; color: var(--neutral-600);
  line-height: 1.65; max-width: 560px;
}
.banner-divider-light .div-cta { flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .banner-hero-dark, .banner-hero-light { padding: 64px 24px; }
  .banner-hero-dark h1, .banner-hero-light h1 { font-size: 36px; }
  .banner-hero-split, .banner-hero-light-split {
    grid-template-columns: 1fr; padding: 56px 24px; gap: 40px;
  }
  .banner-hero-split h1, .banner-hero-light-split h1 { font-size: 32px; }
  .banner-promo-dark, .banner-promo-light {
    flex-direction: column; align-items: flex-start; padding: 36px 24px;
  }
  .banner-divider-dark, .banner-divider-light {
    flex-direction: column; align-items: flex-start; padding: 40px 24px;
  }
}

/* ── Promo Banner — Teal ── */
.banner-promo-teal {
  width: 100%;
  background: var(--teal-600);
  padding: 48px 60px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
  position: relative; overflow: hidden;
}
.banner-promo-teal::before {
  content: ''; position: absolute; inset: 0;
  background: none;
  pointer-events: none;
}
.banner-promo-teal .promo-content { position: relative; z-index: 1; }
.banner-promo-teal h2 {
  font-size: 26px; font-weight: 800; color: white;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.banner-promo-teal p {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.8);
  line-height: 1.6; max-width: 520px;
}
.banner-promo-teal .promo-cta { position: relative; z-index: 1; flex-shrink: 0; }

/* ── Section Divider — Teal/Navy Gradient ── */
.banner-divider-teal {
  width: 100%;
  background: var(--teal-600);
  border-top: 3px solid var(--teal-400);
  padding: 56px 60px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
  position: relative; overflow: hidden;
}
.banner-divider-teal::before {
  content: ''; position: absolute; inset: 0;
  background: none;
  pointer-events: none;
}
.banner-divider-teal .div-content { position: relative; z-index: 1; }
.banner-divider-teal h2 {
  font-size: 30px; font-weight: 800; color: white;
  letter-spacing: -0.015em; margin-bottom: 10px;
}
.banner-divider-teal p {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.75);
  line-height: 1.65; max-width: 560px;
}
.banner-divider-teal .div-cta { flex-shrink: 0; position: relative; z-index: 1; }

@media (max-width: 960px) {
  .banner-promo-teal { flex-direction: column; align-items: flex-start; padding: 36px 24px; }
  .banner-divider-teal { flex-direction: column; align-items: flex-start; padding: 40px 24px; }
}

/* ================================================
   FOOTER COMPONENT
   ================================================ */

.site-footer {
  background: var(--navy-950);
}
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.25); margin: 40px 0 20px; }

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.footer-main-bg {
  background: var(--navy-950);
}

.footer-col-heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 16px;
}

/* ── Three-column main row ── */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0 0;
}

/* ── Col 1: Company name ── */
.footer-company-name {
  font-size: 13px;
  font-weight: 600;
  color: white;
  line-height: 1.15;
  letter-spacing: 0;
}

/* ── Col 2: Address + Contact ── */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-address {
  font-size: 13px; color: var(--neutral-400); line-height: 1.65; margin-bottom: 4px;
}
.footer-phone {
  font-size: 13px; color: var(--neutral-400);
  text-decoration: none; display: flex; align-items: center; gap: 7px;
  transition: color 0.2s;
}
.footer-phone:hover { color: white; }
.footer-phone svg { opacity: 0.45; flex-shrink: 0; }
.footer-contact-link {
  font-size: 13px; font-weight: 400; color: var(--neutral-400);
  text-decoration: none; transition: color 0.2s; width: fit-content;
}
.footer-contact-link:hover { color: white; }

.footer-newsletter { align-self: start; }

/* ── Col 3: Newsletter ── */
.footer-newsletter-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-400); margin-bottom: 8px;
}
.footer-newsletter-title {
  font-size: 13px; color: var(--neutral-400);
  line-height: 1.3; margin-bottom: 16px;
}
/* ── Divider ── */
.footer-rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Legal bar ── */
.footer-legal {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding: 0 0 28px;
}
.footer-legal-left { display: flex; flex-direction: column; gap: 12px; }
.footer-legal-text { font-size: 11px; color: var(--neutral-400); line-height: 1.6; }
.footer-copyright { font-size: 11px; color: var(--neutral-400); padding-left: 20px; }
.footer-legal-links { display: flex; align-items: center; flex-shrink: 0; }
.footer-legal-links a {
  font-size: 11px; font-weight: 500; color: var(--neutral-400);
  text-decoration: none; padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap; transition: color 0.2s;
}
.footer-legal-links a:first-child { padding-left: 0; }
.footer-legal-links a:last-child  { padding-right: 0; border-right: none; }
.footer-legal-links a:hover { color: white; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .footer-main  { grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 0 0; }
  .footer-legal { padding: 0 0 24px; }
}
@media (max-width: 640px) {
  .footer-main      { grid-template-columns: 1fr; gap: 28px; padding: 32px 0 0; }
  .footer-info-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-legal     { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 0 24px; }
  .footer-legal-text { font-size: 11px; line-height: 1.75; color: var(--neutral-300); }
}
@media (max-width: 480px) {
  .footer-copyright { padding-left: 0; }
  .footer-inner { padding: 0 20px; }
  .footer-legal-text { font-size: 11px; line-height: 1.75; }
  .footer-legal-links { flex-direction: column; align-items: flex-start; gap: 4px; }
  .footer-legal-links a { padding: 4px 0; border-right: none; }
}


/* ================================================
   ROTATING HERO BANNER — CAROUSEL
   Homepage use only
   ================================================ */

.banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy-950);
}

/* ── Slides ── */


/* ── Responsive ── */
@media (max-width: 768px) {
  .carousel-arrow { display: none; }
}


    /* ── PAGE STYLES ── */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy-950:#03081a; --navy-900:#060d2e; --navy-800:#0a1545;
      --navy-600:#122b7a; --navy-200:#98b2e8;
      --blue-500:#1a5cff; --blue-400:#4d80ff;
      --teal-600:#007a8a; --teal-400:#26b8cc;
      --neutral-950:#080c18; --neutral-500:#556080;
      --neutral-400:#7a849f; --neutral-200:#cdd2df;
      --neutral-100:#e4e7f0; --neutral-50:#f4f5f9; --neutral-0:#ffffff;
    }
    body {
      font-family: 'Work Sans', sans-serif;
      background: var(--neutral-100);
      -webkit-font-smoothing: antialiased;
    }

    


    /* ══ PAGE STYLES ══ */
    body { background: var(--neutral-0); }

    /* ── Section wrapper ── */
    .section { padding: 80px 60px; max-width: 1420px; margin: 0 auto; }
    .section-sm { padding: 56px 60px; max-width: 1420px; margin: 0 auto; }
    .section-wide { padding: 80px 60px; max-width: 1600px; margin: 0 auto; }
    .section-eyebrow {
      font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--teal-500); margin-bottom: 12px;
      text-align: center;
    }
    .section-title {
      font-size: 36px; font-weight: 800; color: var(--neutral-950);
      letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px;
      text-align: center;
    }
    .section-title.light { color: white; }
    .section-body {
      font-size: 17px; font-weight: 300; color: var(--neutral-600);
      line-height: 1.75; max-width: 800px;
      text-align: center; margin-left: auto; margin-right: auto;
    }
    .section-body.light { color: var(--navy-200); }
    /* Reading-measure body: left-aligned long copy inside a centered ~66ch block
       (use under a centered eyebrow+title when body is 4+ lines) */
    .section-body.read-measure { text-align: left; max-width: 66ch; }

    .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
    .cta-row.center { justify-content: center; }

    /* ── INTRO — Three pillars ── */
    .intro-section {
      background: var(--neutral-0);
      border-bottom: 1px solid var(--neutral-100);
    }
    .intro-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }
    .intro-card {
      padding: 56px 48px;
      border-right: 1px solid var(--neutral-100);
      transition: background 0.2s;
    }
    .intro-card:last-child { border-right: none; }
    .intro-card:hover { background: var(--neutral-50); }
    .intro-card-num {
      font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
      color: var(--teal-600); margin-bottom: 16px;
      display: flex; align-items: center; gap: 10px;
    }
    .intro-card-num::after {
      content: ''; flex: 1; height: 1px; background: var(--neutral-100);
    }
    .intro-card h2 {
      font-size: 22px; font-weight: 800; color: var(--neutral-950);
      letter-spacing: -0.015em; margin-bottom: 12px; line-height: 1.2;
    }
    .intro-card p {
      font-size: 14px; color: var(--neutral-500);
      line-height: 1.7; margin-bottom: 24px;
    }
    .intro-card-link {
      font-size: 13px; font-weight: 500; color: var(--blue-500);
      text-decoration: none; display: inline-flex; align-items: center;
    }
    .intro-card-link:hover { color: var(--blue-400); }

    /* ── IDENTIFIERS TABBED CAROUSEL ── */
    .identifiers-section { background: var(--neutral-0); }
    .identifiers-header {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; gap: 12px;
      margin-bottom: 36px;
    }

    /* ── Identifier tabs — pill (component library) ── */
    .tabs-pill {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .tabs-pill .tab {
      font-family: 'Work Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--neutral-500);
      padding: 6px 16px;
      border: 1px solid transparent;
      border-radius: 30px;
      background: transparent;
      cursor: pointer;
      transition: color 0.15s, background 0.15s, border-color 0.15s;
      white-space: nowrap;
      -webkit-font-smoothing: antialiased;
    }
    .tabs-pill .tab:hover {
      color: var(--neutral-700);
      background: var(--neutral-100);
    }
    .tabs-pill .tab.active {
      color: var(--blue-600);
      background: #eef3ff;
      border-color: #c5d5ff;
      font-weight: 600;
    }

    /* ── Outlined panel wrapper ── */
    .id-panels-outlined {
      border: 1px solid var(--neutral-200);
      border-radius: 12px;
      padding: 40px;
      background: var(--neutral-0);
    }

    /* Panels */
    .id-panels { padding-top: 0; }
    .id-panel { display: none; animation: id-fade 0.3s ease; }
    .id-panel.active { display: block; }
    @keyframes id-fade { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }

    .id-panel-grid { display: block; }
    .id-panel-example-row {
      display: flex;
      gap: 20px;
      align-items: stretch;
      margin: 24px 0 28px;
    }
    .id-panel-example-row .id-example {
      flex: 1;
      margin: 0;
    }
    .id-panel-badge {
      display: inline-flex; align-items: center; justify-content: center;
      height: 32px; padding: 0 14px;
      border-radius: 4px;
      font-size: 13px; font-weight: 800; letter-spacing: 0.06em;
      color: white; margin-bottom: 20px;
    }
    .id-panel-badge.cusip { background: var(--navy-600); }
    .id-panel-badge.cins  { background: var(--teal-600); }
    .id-panel-badge.isin  { background: #1a3d99; }
    .id-panel-badge.lei   { background: #4a6db8; }
    .id-panel-badge.cei   { background: var(--neutral-600, #3d4666); }
    .id-panel-title {
      font-size: 28px; font-weight: 800; color: var(--neutral-950);
      letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px;
    }
    .id-panel-body {
      font-size: 15px; font-weight: 300; color: var(--neutral-600);
      line-height: 1.75; margin-bottom: 28px; max-width: 560px;
    }
    .id-panel-link {
      font-size: 13px; font-weight: 500; color: var(--blue-500);
      text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
      transition: gap 0.2s;
    }
    .id-panel-link:hover { color: var(--blue-400); }
    .id-panel-meta {
      display: flex; flex-direction: column; gap: 8px;
      width: 220px; flex-shrink: 0;
    }
    .id-panel-meta .id-panel-stat { flex: 1; }
    .id-panel-stat {
      background: var(--neutral-50);
      border: 1px solid var(--neutral-200);
      border-radius: 10px;
      padding: 20px 24px;
      display: flex; flex-direction: column; gap: 4px;
    }
    .id-panel-stat span {
      font-size: 28px; font-weight: 800; color: var(--neutral-950);
      letter-spacing: -0.02em; line-height: 1;
    }
    .id-panel-stat {
      font-size: 11px; font-weight: 500;
      color: var(--neutral-500); letter-spacing: 0.08em; text-transform: uppercase;
    }


    /* ── Identifier structure examples ── */
    .id-example {
      background: var(--neutral-50);
      border: 1px solid var(--neutral-200);
      border-radius: 10px;
      padding: 24px;
      margin: 24px 0 28px;
    }
    .id-example-label {
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--neutral-500); margin-bottom: 16px;
    }
    .id-structure {
      display: flex; gap: 3px; margin-bottom: 16px;
    }
    .id-seg {
      background: white;
      border: 1px solid var(--neutral-200);
      border-radius: 6px;
      padding: 12px 14px;
      min-width: 0;
    }
    .id-seg-country { border-color: var(--neutral-200); background: var(--neutral-0); }
    .id-seg-check   { border-color: var(--neutral-200); background: var(--neutral-0); }
    .id-seg-value {
      font-size: 18px; font-weight: 800; color: var(--neutral-950);
      letter-spacing: 0.04em; font-family: monospace;
      margin-bottom: 6px; white-space: nowrap;
    }
    .id-seg-name {
      font-size: 9px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--teal-600); margin-bottom: 4px;
    }
    .id-seg-desc {
      font-size: 10px; color: var(--neutral-500); line-height: 1.5;
    }
    .id-full-identifier {
      font-size: 26px; font-weight: 800; color: var(--neutral-0);
      font-family: monospace; letter-spacing: 0.1em;
      background: var(--navy-800);
      border-radius: 6px;
      padding: 12px 16px;
      margin-top: 16px;
      display: inline-block;
    }
    .id-example-meta {
      display: flex; gap: 20px; flex-wrap: wrap;
      margin-top: 12px;
      font-size: 11px; color: var(--neutral-500);
    }
    .id-example-meta span::before { content: "·  "; }
    .id-example-meta span:first-child::before { content: ""; }

    /* CEI table */
    .id-cei-table {
      display: flex; flex-direction: column; gap: 0;
      border: 1px solid var(--neutral-200);
      border-radius: 6px; overflow: hidden; margin-bottom: 4px;
    }
    .id-cei-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 10px 16px; gap: 16px;
      border-bottom: 1px solid var(--neutral-100);
      font-size: 13px;
    }
    .id-cei-row:last-child { border-bottom: none; }
    .id-cei-header {
      background: var(--neutral-50);
      font-size: 9px; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--neutral-500);
    }
    .id-cei-row span { color: var(--neutral-700, #28304a); }
    .id-cei-row code {
      font-family: monospace; font-size: 13px; font-weight: 600;
      color: var(--navy-700); letter-spacing: 0.05em;
      background: var(--neutral-100);
      padding: 3px 10px; border-radius: 4px;
    }

    /* ── Identifier data-sheet panel layout ── */
    .id-panels-outlined { padding: 0; overflow: hidden; }
    .id-ds-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
    .id-ds-left { padding: 40px; border-right: 1px solid var(--neutral-100); display: flex; flex-direction: column; }
    .id-ds-left .id-panel-badge { align-self: flex-start; }
    .id-ds-left .id-panel-body { max-width: none; margin-bottom: auto; }
    .id-ds-right { background: var(--blue-50); display: flex; flex-direction: column; }
    .id-ds-right-hd { padding: 16px 24px; border-bottom: 1px solid rgba(26,92,255,0.12); }
    .id-ds-right-label { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neutral-500); }
    .id-ds-attr { display: flex; align-items: baseline; justify-content: space-between; padding: 11px 24px; gap: 12px; position: relative; }
    .id-ds-attr::after { content: ''; position: absolute; bottom: 0; left: 24px; right: 24px; height: 1px; background: rgba(26,92,255,0.12); }

    .id-ds-attr-key { font-size: 11px; font-weight: 500; color: var(--neutral-500); letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
    .id-ds-attr-val { font-size: 13px; font-weight: 600; color: var(--neutral-800); text-align: right; }
    .id-ds-attr-mono { font-family: monospace; font-size: 12px; font-weight: 600; color: var(--navy-700); background: var(--neutral-100); padding: 2px 8px; border-radius: 3px; }
    .id-ds-anatomy-hd { padding: 16px 24px 10px; margin-top: 0; }
    .id-ds-anatomy-label { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neutral-500); }
    .id-ds-anatomy-wrap { padding: 12px 24px 20px; }
    .id-ds-anatomy { display: flex; gap: 2px; margin-bottom: 8px; }
    .id-ds-seg { border-radius: 5px; padding: 8px 10px; flex: 1; }
    .id-ds-seg-a { background: rgba(18,43,122,0.07); border: 1px solid rgba(18,43,122,0.15); }
    .id-ds-seg-b { background: rgba(0,122,138,0.07); border: 1px solid rgba(0,122,138,0.15); }
    .id-ds-seg-c { background: var(--neutral-100); border: 1px solid var(--neutral-200); }
    .id-ds-seg-val { font-size: 13px; font-weight: 800; font-family: monospace; letter-spacing: 0.06em; margin-bottom: 3px; }
    .id-ds-seg-a .id-ds-seg-val { color: var(--navy-700); }
    .id-ds-seg-b .id-ds-seg-val { color: var(--teal-600); }
    .id-ds-seg-c .id-ds-seg-val { color: var(--neutral-500); }
    .id-ds-seg-name { font-size: 7px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--neutral-500); }
    .id-ds-full { font-family: monospace; font-size: 17px; font-weight: 800; color: white; background: var(--navy-800); border-radius: 5px; padding: 7px 12px; letter-spacing: 0.1em; display: inline-block; }
    .id-ds-table { border: 1px solid var(--neutral-200); border-radius: 6px; overflow: hidden; margin-bottom: 8px; }
    .id-ds-table-hd { display: flex; justify-content: space-between; padding: 8px 12px; background: var(--neutral-100); font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neutral-500); }
    .id-ds-table-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-top: 1px solid var(--neutral-100); font-size: 13px; gap: 12px; }
    .id-ds-table-row:hover { background: var(--neutral-50); }
    .id-ds-table-row span { color: var(--neutral-700); }
    .id-ds-table-row code { font-family: monospace; font-size: 12px; font-weight: 600; color: var(--navy-700); background: var(--neutral-100); padding: 2px 8px; border-radius: 3px; }

    .section-header-centered {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-header-centered .section-eyebrow,
    .section-header-centered .section-title { text-align: center; }

    /* ── GLOBAL COVERAGE ── */
    .coverage-section { background: var(--neutral-0); }
    .cov-pc {
      position: relative; overflow: hidden; background: var(--neutral-200);
    }
    .cov-pc img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: top center; display: block;
      filter: grayscale(100%) contrast(1.1);
      transition: transform 0.5s ease;
    }
    .cov-pc:hover img { transform: scale(1.04); }    .cov-pc--zoom img { transform: scale(1.15); }    .cov-pc--zoom:hover img { transform: scale(1.19); }
    @media (max-width: 768px) {
      .cov-grid { grid-template-columns: repeat(3,1fr) !important; grid-template-rows: 260px !important; }
      .cov-hide-mobile { display: none; }
    }
    .coverage-clients {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; padding-top: 0;
      max-width: 720px; margin: 0 auto;
    }
    .client-item {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 0;
    }
    .cov-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
    .client-item span {
      font-size: 13px; font-weight: 600; color: var(--neutral-700);
      line-height: 1.4;
    }

    /* ── DATA KNOWLEDGE ── */
    .knowledge-section { background: var(--navy-900); }
    .knowledge-body {
      max-width: 1300px;
      margin: 0 auto;
      display: flex; flex-direction: column; align-items: center;
    }
    .knowledge-body .section-body { text-align: center; max-width: 800px; color: white; }

    /* ── Stats carousel (desktop: plain grid via .grid-4) ── */
    .stats-carousel { width: 100%; }
    .stats-dots { display: none; } /* hidden on desktop */

    /* ── Stats — single animated card (mobile) ── */
    @media (max-width: 768px) {
      .stats-carousel { width: 100%; }
      /* Hide real cards — JS renders a single display card */
      .stats-carousel-track { display: none !important; }
      .stats-dots { display: none; }
      /* The single display card */
      .stats-display-card {
        background: var(--navy-900);
        border: 1px solid rgba(255,255,255,0.18);
        border-radius: 12px;
        padding: 48px 36px 44px;
        display: flex; flex-direction: column; gap: 0;
        position: relative; overflow: hidden;
        min-height: 260px; justify-content: flex-end;
      }
      /* Ghost number as background watermark */
      .stats-display-card::before {
        content: attr(data-ghost);
        position: absolute; top: -10px; right: -8px;
        font-size: 160px; font-weight: 800; line-height: 1;
        letter-spacing: -0.05em;
        color: rgba(255,255,255,0.04);
        pointer-events: none; user-select: none;
      }
      .stats-display-value {
        font-size: 96px; font-weight: 800; color: var(--neutral-0);
        letter-spacing: -0.04em; line-height: 0.9;
        margin-bottom: 16px;
      }
      .stats-display-value span {
        font-size: 48px; font-weight: 800; color: var(--teal-400);
        margin-left: 4px; letter-spacing: -0.02em;
      }
      .stats-display-sub {
        font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
        text-transform: uppercase; color: rgba(255,255,255,0.4);
        line-height: 1.5; border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 16px;
      }
      /* Animate in */
      @keyframes statIn {
        from { opacity: 0; transform: translateY(14px); }
        to   { opacity: 1; transform: translateY(0); }
      }
      @keyframes statOut {
        from { opacity: 1; transform: translateY(0); }
        to   { opacity: 0; transform: translateY(-14px); }
      }
      .stats-display-card.animating-out .stats-display-value,
      .stats-display-card.animating-out .stats-display-sub {
        animation: statOut 0.25s ease forwards;
      }
      .stats-display-card.animating-in .stats-display-value,
      .stats-display-card.animating-in .stats-display-sub {
        animation: statIn 0.3s ease forwards;
      }
    }
    .knowledge-stats {
      display: flex; flex-direction: row; align-items: center;
      gap: 0; width: 100%;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 12px; overflow: hidden;
    }
    .knowledge-stat-item {
      flex: 1; padding: 28px 32px;
    }
    .knowledge-stat {
      font-size: 56px; font-weight: 800; color: white;
      letter-spacing: -0.03em; line-height: 1;
      margin-bottom: 8px;
    }
    .knowledge-stat span { color: rgba(255,255,255,0.55); }
    .knowledge-stat-label {
      font-size: 12px; font-weight: 500; color: white;
      line-height: 1.45;
    }
    .knowledge-divider { width: 1px; background: rgba(255,255,255,0.08); align-self: stretch; }

    /* ── VIDEO ── */
    .video-section { background: var(--neutral-50); }
    .video-container {
      max-width: 900px;
      margin: 0 auto;
    }
    .video-poster {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: var(--navy-900);
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 20px 60px rgba(3,8,26,0.18);
    }
    .video-poster::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-700) 50%, var(--teal-600) 100%);
      opacity: 0.9;
    }
    /* Subtle grid texture */
    .video-poster::after {
      content: '';
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .video-overlay {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 28px;
      z-index: 1;
    }
    .video-play-btn {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 2px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, border-color 0.2s;
      padding-left: 4px;
    }
    .video-play-btn:hover {
      background: #0070C9;
      border-color: #0070C9;
      transform: scale(1.08);
    }
    .video-caption { text-align: center; }
    .video-caption-label {
      font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--teal-400); margin-bottom: 8px;
    }
    .video-caption-title {
      font-size: 18px; font-weight: 600; color: white;
      letter-spacing: -0.01em;
    }

    /* ── ISSUANCE TRENDS ── */
    .trends-section { background: var(--neutral-0); }
    .trends-header {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; gap: 12px; margin-bottom: 40px;
    }
    .trends-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 1fr; gap: 24px; }
    .trend-card {
      border: 1px solid var(--neutral-200);
      border-radius: 10px; padding: 28px;
      display: flex; flex-direction: column; gap: 12px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .trend-card:hover {
      border-color: var(--teal-400);
      box-shadow: 0 4px 24px rgba(3,8,26,0.08);
    }
    .trend-meta {
      font-size: 11px; font-weight: 500; color: var(--neutral-400);
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    .trend-card h3 {
      font-size: 15px; font-weight: 600; color: var(--neutral-950);
      line-height: 1.45; flex: 1;
    }
    .trend-link {
      font-size: 12px; font-weight: 500; color: var(--blue-500);
      text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
      transition: gap 0.2s;
    }
    .trend-link:hover { color: var(--blue-400); }


    /* ── BUTTONS ── */
    .btn {
      font-family: "Work Sans", sans-serif;
      display: inline-flex; align-items: center; gap: 8px;
      font-weight: 700; font-size: 14px;
      border: none; cursor: pointer; text-decoration: none;
      border-radius: 30px; transition: background 0.2s;
      white-space: nowrap; flex-shrink: 0;
    }
    .btn-md { padding: 0 24px; height: 40px; font-size: 13px; }
    .btn-lg { padding: 0 30px; height: 48px; }
    .btn-blue { background: #0070C9; color: white; }
    .btn-blue:not(:disabled):hover { background: var(--blue-600); }
    .btn-white { background: white; color: var(--blue-600); }
    .btn-white:not(:disabled):hover { background: var(--neutral-50); }
    .btn-outline-white {
      background: transparent; color: white;
      border: 1px solid rgba(255,255,255,0.45);
    }
    .btn-outline-white:not(:disabled):hover { border-width: 1px; border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.08); }
    .btn-outline-navy {
      background: transparent; color: var(--neutral-950);
      border: 2px solid var(--neutral-200);
    }
    .btn-outline-navy:not(:disabled):hover { border-color: var(--neutral-400); }
    .btn-teal { background: var(--teal-600); color: white; }
    .btn-teal:not(:disabled):hover { background: var(--teal-400); }

    /* ── View all link ── */
    .view-all {
      font-size: 13px; font-weight: 600; color: var(--blue-500);
      text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
      transition: gap 0.2s;
    }
    .view-all:hover { gap: 10px; }
    .view-all::after { content: ''; }
    .view-all.light { color: var(--teal-400); }

    /* ── Responsive ── */
    @media (max-width: 1100px) {
      .identifiers-grid { grid-template-columns: repeat(3,1fr); }
      .coverage-grid, .knowledge-grid { grid-template-columns: 1fr; gap: 48px; }
    }
    @media (max-width: 768px) {
      .section, .section-sm { padding: 48px 24px; }
      .section-wide { padding: 48px 24px; }
      .intro-grid { grid-template-columns: 1fr; }
      .intro-card { border-right: none; border-bottom: 1px solid var(--neutral-100); padding: 36px 24px; }
      .identifiers-grid { grid-template-columns: 1fr 1fr; }
      .trends-grid { grid-template-columns: 1fr; gap: 16px; }
      .trend-card { padding: 20px; }
      .newsletter-strip { flex-direction: column; align-items: flex-start; padding: 36px 24px; gap: 16px; }
      .carousel-slide { padding: 60px 24px 72px; }
      .carousel-slide h1 { font-size: 30px; }
      .carousel-slide p { font-size: 15px; }
      .carousel-arrow { display: none; }
      .coverage-clients { grid-template-columns: 1fr; }
      .client-item:last-child { border-bottom: none; }
      /* Stat cards: 4-col → 2-col (non-carousel grids only) */
      .grid-4:not(.stats-carousel-track) { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      /* Section typography */
      .section-title { font-size: 28px; line-height: 1.15; }
      .section-body { font-size: 15px; }
      /* Header */
      .header-inner { padding: 0 20px; height: 60px; }
      /* Mobile toggle tap target */
      .mobile-toggle { min-width: 44px; min-height: 44px; padding: 10px; display: flex; align-items: center; justify-content: center; }
      /* Buttons */
      .btn-lg { height: 44px; font-size: 13px; }
      /* CTA row stack */
      .cta-row { gap: 10px; }
      /* ID panel — stack info and spec vertically */
      .id-ds-grid { grid-template-columns: 1fr; min-height: unset; }
      .id-ds-left { border-right: none; border-bottom: 1px solid var(--neutral-100); padding: 28px 24px; }
      .id-ds-right { min-height: unset; }
      .id-panel-meta { width: 100%; flex-shrink: 1; }
      /* Banners */
      .banner-promo-teal h2, .banner-divider-teal h2 { font-size: 22px; }
      .banner-hero-dark, .banner-hero-light { padding-bottom: 36px; }
    }

    /* ── Small mobile (480px and below) ── */
    @media (max-width: 480px) {
      .section, .section-sm, .section-wide { padding: 40px 16px; }
      /* Stat cards: 2-col → 1-col (non-carousel) */
      .grid-4:not(.stats-carousel-track) { grid-template-columns: 1fr; gap: 10px; }
      .card-stat { padding: 20px; }
      .stat-value { font-size: 40px; }
      /* Hero */
      .carousel-slide { padding: 48px 16px 56px; }
      .carousel-slide h1 { font-size: 26px; letter-spacing: -0.02em; }
      .carousel-slide p { font-size: 14px; }
      /* CTA buttons full-width */
      .cta-row { flex-direction: column; }
      .cta-row .btn { width: 100%; justify-content: center; }
      /* Intro cards */
      .intro-card { padding: 28px 16px; }
      .intro-card h2 { font-size: 19px; }
      /* Section typography */
      .section-title { font-size: 24px; }
      /* Identifiers grid */
      .identifiers-grid { grid-template-columns: 1fr; }
      /* Trend cards */
      .trend-card { padding: 16px; }
      /* Footer */
      .footer-inner { padding: 0 20px; }
      .footer-legal-text { font-size: 11px; line-height: 1.75; }
      .footer-legal-links { flex-direction: column; align-items: flex-start; gap: 4px; }
      .footer-legal-links a { padding: 4px 0; border-right: none; }
      .footer-copyright { padding-left: 0; }
      /* Newsletter strip */
      .newsletter-strip { padding: 28px 16px; }
    }

/* ── Utility login dropdown ── */
  .utility-login { position: relative; margin-left: 0; height: 35px; display: flex; align-items: center; }
  .utility-login-trigger { font-size: 12px; font-weight: 400; color: #48617b; text-decoration: none; height: 35px; display: flex; align-items: center; gap: 5px; cursor: pointer; transition: color 0.15s; padding-left: 10px; }
  .utility-login-trigger:hover, .utility-login.open .utility-login-trigger { color: var(--blue-500); }
  .utility-login-caret { transition: transform 0.16s ease; }
  .utility-login.open .utility-login-caret { transform: rotate(180deg); }
  .utility-login-menu { position: absolute; top: 100%; right: 0; min-width: 230px; background: var(--neutral-0); border-radius: 6px; border: 1px solid var(--neutral-150); box-shadow: 0 8px 32px rgba(3,8,26,0.14), 0 2px 8px rgba(3,8,26,0.06); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s; pointer-events: none; z-index: 200; }
  .utility-login.open .utility-login-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
  .utility-divider { margin: 0 4px; }
  .utility-subscribe { padding: 0 10px; }
  @media (max-width: 768px) { .utility-login { display: none; } }

/* ── Mobile drawer light theme ── */
@media (max-width: 768px) {
  .logo-wrap { position: absolute; left: 50%; transform: translateX(-50%); margin-left: 0; }
  .logo-img { height: 44px; }
}
.mob-drawer { background: var(--neutral-0); }
.mob-drawer::after { display: none; }
.mob-drw-item { border-bottom-color: var(--neutral-100); }
.mob-drw-btn { color: var(--neutral-700); }
.mob-drw-btn:hover { background: var(--neutral-50); color: var(--blue-500); }
.mob-drw-item.open .mob-drw-btn { color: var(--blue-500); border-left-color: var(--blue-500); background: var(--neutral-50); }
.mob-drw-sub { background: transparent; border-top-color: transparent; padding-bottom: 12px; }
.mob-drw-sub-link { color: var(--neutral-600); padding-left: 16px; }
.mob-drw-sub-link:hover { color: var(--blue-500); background: var(--neutral-100); }
.mob-drw-footer { border-top-color: var(--neutral-100); }

/* ── Legal overlay ── */
.lgl-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,12,24,0.6); align-items: center; justify-content: center;
}
.lgl-overlay.open { display: flex; }
.lgl-panel {
  background: var(--neutral-0); border-radius: 12px;
  width: min(700px, 94vw); max-height: 80vh;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 60px rgba(8,12,24,0.25);
}
.lgl-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; border-bottom: 1px solid var(--neutral-100);
}
.lgl-title { font-size: 20px; font-weight: 600; color: var(--neutral-950); }
.lgl-close {
  width: 36px; height: 36px; background: none; border: none;
  cursor: pointer; font-size: 22px; color: var(--neutral-500);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.15s;
}
.lgl-close:hover { background: var(--neutral-100); color: var(--neutral-700); }
.lgl-body { padding: 24px 28px; overflow-y: auto; }
.lgl-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.lgl-body p { font-size: 14px; line-height: 1.7; color: var(--neutral-600); margin-bottom: 10px; }


  .lgl-overlay { position: fixed; inset: 0; background: rgba(3,8,26,0.6); z-index: 1100; display: flex; justify-content: flex-end; align-items: stretch; visibility: hidden; opacity: 0; transition: opacity 0.28s ease, visibility 0s linear 0.3s; }
  .lgl-overlay.open { visibility: visible; opacity: 1; transition: opacity 0.28s ease; }
  .lgl-overlay.open .lgl-modal { transform: translateX(0); }
  .lgl-modal { background: #ffffff; width: 100%; max-width: 560px; height: 100%; display: flex; flex-direction: column; box-shadow: -12px 0 48px rgba(0,0,0,0.28); overflow: hidden; transform: translateX(100%); transition: transform 0.34s cubic-bezier(0.4,0,0.2,1); }
  .lgl-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 22px 28px 16px; border-bottom: 1px solid #e4e7f0; }
  .lgl-title { font-family: 'Work Sans', sans-serif; font-size: 18px; font-weight: 700; color: #080c18; letter-spacing: -0.01em; margin: 0; }
  .lgl-close { background: none; border: none; cursor: pointer; color: #7a849f; padding: 4px; display: flex; align-items: center; justify-content: center; border-radius: 6px; transition: color 0.15s, background 0.15s; flex-shrink: 0; }
  .lgl-close:hover { color: #080c18; background: #e4e7f0; }
  .lgl-body { padding: 20px 28px 28px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .lgl-body .lgl-updated { font-size: 12px; color: #7a849f; margin: 0 0 16px; }
  .lgl-body h3 { font-family: 'Work Sans', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #080c18; margin: 22px 0 8px; }
  .lgl-body p { font-size: 13px; line-height: 1.65; color: #28304a; margin: 0 0 12px; }
  .lgl-body ul { margin: 0 0 12px; padding-left: 20px; }
  .lgl-body li { font-size: 13px; line-height: 1.6; color: #28304a; margin-bottom: 7px; }
  .lgl-body a { color: #1a5cff; text-decoration: underline; }
  .lgl-body a:hover { color: #0040cc; }
  @media (max-width: 768px) {
    .lgl-overlay { padding: 0; }
    .lgl-modal { max-width: 100%; }
  }

/* ── Override style.css global button padding that squeezes icon buttons ── */
.header-search-btn,
.mob-search-btn,
.mob-trigger,
.lgl-close { padding: 0 !important; }

/* ── Suppress body:before pseudo-element content injected by style.css ── */
body::before { display: none !important; content: none !important; }



 /* ── IDENTIFIERS TABBED CAROUSEL ── */
    .identifiers-section { background: var(--neutral-0); }
    .identifiers-header {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; gap: 12px;
      margin-bottom: 36px;
    }

    /* ── Identifier tabs — pill (component library) ── */
    .tabs-pill {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .tabs-pill .tab {
      font-family: 'Work Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--neutral-500);
      padding: 6px 16px;
      border: 1px solid transparent;
      border-radius: 30px;
      background: transparent;
      cursor: pointer;
      transition: color 0.15s, background 0.15s, border-color 0.15s;
      white-space: nowrap;
      -webkit-font-smoothing: antialiased;
    }
    .tabs-pill .tab:hover {
      color: var(--neutral-700);
      background: var(--neutral-100);
    }
    .tabs-pill .tab.active {
      color: var(--blue-600);
      background: #eef3ff;
      border-color: #c5d5ff;
      font-weight: 600;
    }

    /* ── Outlined panel wrapper ── */
    .id-panels-outlined {
      border: 1px solid var(--neutral-200);
      border-radius: 12px;
      padding: 40px;
      background: var(--neutral-0);
    }

    /* Panels */
    .id-panels { padding-top: 0; }
    .id-panel { display: none; animation: id-fade 0.3s ease; }
    .id-panel.active { display: block; }
    @keyframes id-fade { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }

    .id-panel-grid { display: block; }
    .id-panel-example-row {
      display: flex;
      gap: 20px;
      align-items: stretch;
      margin: 24px 0 28px;
    }
    .id-panel-example-row .id-example {
      flex: 1;
      margin: 0;
    }
    .id-panel-badge {
      display: inline-flex; align-items: center; justify-content: center;
      height: 32px; padding: 0 14px;
      border-radius: 4px;
      font-size: 13px; font-weight: 800; letter-spacing: 0.06em;
      color: white; margin-bottom: 20px;
    }
    .id-panel-badge.cusip { background: var(--navy-600); }
    .id-panel-badge.cins  { background: var(--teal-600); }
    .id-panel-badge.isin  { background: #1a3d99; }
    .id-panel-badge.lei   { background: #4a6db8; }
    .id-panel-badge.cei   { background: var(--neutral-600, #3d4666); }
    .id-panel-title {
      font-size: 28px; font-weight: 800; color: var(--neutral-950);
      letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px;
    }
    .id-panel-body {
      font-size: 15px; font-weight: 300; color: var(--neutral-600);
      line-height: 1.75; margin-bottom: 28px; max-width: 560px;
    }
    .id-panel-link {
      font-size: 13px; font-weight: 500; color: var(--blue-500);
      text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
      transition: gap 0.2s;
    }
    .id-panel-link:hover { color: var(--blue-400); }
    .id-panel-meta {
      display: flex; flex-direction: column; gap: 8px;
      width: 220px; flex-shrink: 0;
    }
    .id-panel-meta .id-panel-stat { flex: 1; }
    .id-panel-stat {
      background: var(--neutral-50);
      border: 1px solid var(--neutral-200);
      border-radius: 10px;
      padding: 20px 24px;
      display: flex; flex-direction: column; gap: 4px;
    }
    .id-panel-stat span {
      font-size: 28px; font-weight: 800; color: var(--neutral-950);
      letter-spacing: -0.02em; line-height: 1;
    }
    .id-panel-stat {
      font-size: 11px; font-weight: 500;
      color: var(--neutral-500); letter-spacing: 0.08em; text-transform: uppercase;
    }


    /* ── Identifier structure examples ── */
    .id-example {
      background: var(--neutral-50);
      border: 1px solid var(--neutral-200);
      border-radius: 10px;
      padding: 24px;
      margin: 24px 0 28px;
    }
    .id-example-label {
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--neutral-500); margin-bottom: 16px;
    }
    .id-structure {
      display: flex; gap: 3px; margin-bottom: 16px;
    }
    .id-seg {
      background: white;
      border: 1px solid var(--neutral-200);
      border-radius: 6px;
      padding: 12px 14px;
      min-width: 0;
    }
    .id-seg-country { border-color: var(--neutral-200); background: var(--neutral-0); }
    .id-seg-check   { border-color: var(--neutral-200); background: var(--neutral-0); }
    .id-seg-value {
      font-size: 18px; font-weight: 800; color: var(--neutral-950);
      letter-spacing: 0.04em; font-family: monospace;
      margin-bottom: 6px; white-space: nowrap;
    }
    .id-seg-name {
      font-size: 9px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--teal-600); margin-bottom: 4px;
    }
    .id-seg-desc {
      font-size: 10px; color: var(--neutral-500); line-height: 1.5;
    }
    .id-full-identifier {
      font-size: 26px; font-weight: 800; color: var(--neutral-0);
      font-family: monospace; letter-spacing: 0.1em;
      background: var(--navy-800);
      border-radius: 6px;
      padding: 12px 16px;
      margin-top: 16px;
      display: inline-block;
    }
    .id-example-meta {
      display: flex; gap: 20px; flex-wrap: wrap;
      margin-top: 12px;
      font-size: 11px; color: var(--neutral-500);
    }
    .id-example-meta span::before { content: "·  "; }
    .id-example-meta span:first-child::before { content: ""; }

    /* CEI table */
    .id-cei-table {
      display: flex; flex-direction: column; gap: 0;
      border: 1px solid var(--neutral-200);
      border-radius: 6px; overflow: hidden; margin-bottom: 4px;
    }
    .id-cei-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 10px 16px; gap: 16px;
      border-bottom: 1px solid var(--neutral-100);
      font-size: 13px;
    }
    .id-cei-row:last-child { border-bottom: none; }
    .id-cei-header {
      background: var(--neutral-50);
      font-size: 9px; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--neutral-500);
    }
    .id-cei-row span { color: var(--neutral-700, #28304a); }
    .id-cei-row code {
      font-family: monospace; font-size: 13px; font-weight: 600;
      color: var(--navy-700); letter-spacing: 0.05em;
      background: var(--neutral-100);
      padding: 3px 10px; border-radius: 4px;
    }

    /* ── Identifier data-sheet panel layout ── */
    .id-panels-outlined { padding: 0; overflow: hidden; }
    .id-ds-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
    .id-ds-left { padding: 40px; border-right: 1px solid var(--neutral-100); display: flex; flex-direction: column; }
    .id-ds-left .id-panel-badge { align-self: flex-start; }
    .id-ds-left .id-panel-body { max-width: none; margin-bottom: auto; }
    .id-ds-right { background: var(--blue-50); display: flex; flex-direction: column; }
    .id-ds-right-hd { padding: 16px 24px; border-bottom: 1px solid rgba(26,92,255,0.12); }
    .id-ds-right-label { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neutral-500); }
    .id-ds-attr { display: flex; align-items: baseline; justify-content: space-between; padding: 11px 24px; gap: 12px; position: relative; }
    .id-ds-attr::after { content: ''; position: absolute; bottom: 0; left: 24px; right: 24px; height: 1px; background: rgba(26,92,255,0.12); }

    .id-ds-attr-key { font-size: 11px; font-weight: 500; color: var(--neutral-500); letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
    .id-ds-attr-val { font-size: 13px; font-weight: 600; color: var(--neutral-800); text-align: right; }
    .id-ds-attr-mono { font-family: monospace; font-size: 12px; font-weight: 600; color: var(--navy-700); background: var(--neutral-100); padding: 2px 8px; border-radius: 3px; }
    .id-ds-anatomy-hd { padding: 16px 24px 10px; margin-top: 0; }
    .id-ds-anatomy-label { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neutral-500); }
    .id-ds-anatomy-wrap { padding: 12px 24px 20px; }
    .id-ds-anatomy { display: flex; gap: 2px; margin-bottom: 8px; }
    .id-ds-seg { border-radius: 5px; padding: 8px 10px; flex: 1; }
    .id-ds-seg-a { background: rgba(18,43,122,0.07); border: 1px solid rgba(18,43,122,0.15); }
    .id-ds-seg-b { background: rgba(0,122,138,0.07); border: 1px solid rgba(0,122,138,0.15); }
    .id-ds-seg-c { background: var(--neutral-100); border: 1px solid var(--neutral-200); }
    .id-ds-seg-val { font-size: 13px; font-weight: 800; font-family: monospace; letter-spacing: 0.06em; margin-bottom: 3px; }
    .id-ds-seg-a .id-ds-seg-val { color: var(--navy-700); }
    .id-ds-seg-b .id-ds-seg-val { color: var(--teal-600); }
    .id-ds-seg-c .id-ds-seg-val { color: var(--neutral-500); }
    .id-ds-seg-name { font-size: 7px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--neutral-500); }
    .id-ds-full { font-family: monospace; font-size: 17px; font-weight: 800; color: white; background: var(--navy-800); border-radius: 5px; padding: 7px 12px; letter-spacing: 0.1em; display: inline-block; }
    .id-ds-table { border: 1px solid var(--neutral-200); border-radius: 6px; overflow: hidden; margin-bottom: 8px; }
    .id-ds-table-hd { display: flex; justify-content: space-between; padding: 8px 12px; background: var(--neutral-100); font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neutral-500); }
    .id-ds-table-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-top: 1px solid var(--neutral-100); font-size: 13px; gap: 12px; }
    .id-ds-table-row:hover { background: var(--neutral-50); }
    .id-ds-table-row span { color: var(--neutral-700); }
    .id-ds-table-row code { font-family: monospace; font-size: 12px; font-weight: 600; color: var(--navy-700); background: var(--neutral-100); padding: 2px 8px; border-radius: 3px; }

    .section-header-centered {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-header-centered .section-eyebrow,
    .section-header-centered .section-title { text-align: center; }




    /* ── GLOBAL COVERAGE ── */
    .coverage-section { background: var(--neutral-0); }
    .cov-pc {
      position: relative; overflow: hidden; background: var(--neutral-200);
    }
    .cov-pc img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: top center; display: block;
      filter: grayscale(100%) contrast(1.1);
      transition: transform 0.5s ease;
    }
    .cov-pc:hover img { transform: scale(1.04); }    .cov-pc--zoom img { transform: scale(1.15); }    .cov-pc--zoom:hover img { transform: scale(1.19); }
    @media (max-width: 768px) {
      .cov-grid { grid-template-columns: repeat(3,1fr) !important; grid-template-rows: 260px !important; }
      .cov-hide-mobile { display: none; }
    }
    .coverage-clients {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; padding-top: 0;
      max-width: 720px; margin: 0 auto;
    }
    .client-item {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 0;
    }
    .cov-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
    .client-item span {
      font-size: 13px; font-weight: 600; color: var(--neutral-700);
      line-height: 1.4;
    }

    /* ── DATA KNOWLEDGE ── */
    .knowledge-section { background: var(--navy-900); }
    .knowledge-body {
      max-width: 1300px;
      margin: 0 auto;
      display: flex; flex-direction: column; align-items: center;
    }
    .knowledge-body .section-body { text-align: center; max-width: 800px; color: white; }

    /* ── Stats carousel (desktop: plain grid via .grid-4) ── */
    .stats-carousel { width: 100%; }
    .stats-dots { display: none; } /* hidden on desktop */

    /* ── Stats — single animated card (mobile) ── */
    @media (max-width: 768px) {
      .stats-carousel { width: 100%; }
      /* Hide real cards — JS renders a single display card */
      .stats-carousel-track { display: none !important; }
      .stats-dots { display: none; }
      /* The single display card */
      .stats-display-card {
        background: var(--navy-900);
        border: 1px solid rgba(255,255,255,0.18);
        border-radius: 12px;
        padding: 48px 36px 44px;
        display: flex; flex-direction: column; gap: 0;
        position: relative; overflow: hidden;
        min-height: 260px; justify-content: flex-end;
      }
      /* Ghost number as background watermark */
      .stats-display-card::before {
        content: attr(data-ghost);
        position: absolute; top: -10px; right: -8px;
        font-size: 160px; font-weight: 800; line-height: 1;
        letter-spacing: -0.05em;
        color: rgba(255,255,255,0.04);
        pointer-events: none; user-select: none;
      }
      .stats-display-value {
        font-size: 96px; font-weight: 800; color: var(--neutral-0);
        letter-spacing: -0.04em; line-height: 0.9;
        margin-bottom: 16px;
      }
      .stats-display-value span {
        font-size: 48px; font-weight: 800; color: var(--teal-400);
        margin-left: 4px; letter-spacing: -0.02em;
      }
      .stats-display-sub {
        font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
        text-transform: uppercase; color: rgba(255,255,255,0.4);
        line-height: 1.5; border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 16px;
      }
      /* Animate in */
      @keyframes statIn {
        from { opacity: 0; transform: translateY(14px); }
        to   { opacity: 1; transform: translateY(0); }
      }
      @keyframes statOut {
        from { opacity: 1; transform: translateY(0); }
        to   { opacity: 0; transform: translateY(-14px); }
      }
      .stats-display-card.animating-out .stats-display-value,
      .stats-display-card.animating-out .stats-display-sub {
        animation: statOut 0.25s ease forwards;
      }
      .stats-display-card.animating-in .stats-display-value,
      .stats-display-card.animating-in .stats-display-sub {
        animation: statIn 0.3s ease forwards;
      }
    }
    .knowledge-stats {
      display: flex; flex-direction: row; align-items: center;
      gap: 0; width: 100%;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 12px; overflow: hidden;
    }
    .knowledge-stat-item {
      flex: 1; padding: 28px 32px;
    }
    .knowledge-stat {
      font-size: 56px; font-weight: 800; color: white;
      letter-spacing: -0.03em; line-height: 1;
      margin-bottom: 8px;
    }
    .knowledge-stat span { color: rgba(255,255,255,0.55); }
    .knowledge-stat-label {
      font-size: 12px; font-weight: 500; color: white;
      line-height: 1.45;
    }
    .knowledge-divider { width: 1px; background: rgba(255,255,255,0.08); align-self: stretch; }

    /* ── VIDEO ── */
    .video-section { background: var(--neutral-50); }
    .video-container {
      max-width: 900px;
      margin: 0 auto;
    }
    .video-poster {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: var(--navy-900);
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 20px 60px rgba(3,8,26,0.18);
    }
    .video-poster::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-700) 50%, var(--teal-600) 100%);
      opacity: 0.9;
    }
    /* Subtle grid texture */
    .video-poster::after {
      content: '';
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .video-overlay {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 28px;
      z-index: 1;
    }
    .video-play-btn {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 2px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, border-color 0.2s;
      padding-left: 4px;
    }
    .video-play-btn:hover {
      background: #0070C9;
      border-color: #0070C9;
      transform: scale(1.08);
    }
    .video-caption { text-align: center; }
    .video-caption-label {
      font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--teal-400); margin-bottom: 8px;
    }
    .video-caption-title {
      font-size: 18px; font-weight: 600; color: white;
      letter-spacing: -0.01em;
    }

    /* ── ISSUANCE TRENDS ── */
    .trends-section { background: var(--neutral-0); }
    .trends-header {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; gap: 12px; margin-bottom: 40px;
    }
    .trends-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 1fr; gap: 24px; }
    .trend-card {
      border: 1px solid var(--neutral-200);
      border-radius: 10px; padding: 28px;
      display: flex; flex-direction: column; gap: 12px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .trend-card:hover {
      border-color: var(--teal-400);
      box-shadow: 0 4px 24px rgba(3,8,26,0.08);
    }
    .trend-meta {
      font-size: 11px; font-weight: 500; color: var(--neutral-400);
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    .trend-card h3 {
      font-size: 15px; font-weight: 600; color: var(--neutral-950);
      line-height: 1.45; flex: 1;
    }
    .trend-link {
      font-size: 12px; font-weight: 500; color: var(--blue-500);
      text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
      transition: gap 0.2s;
    }
    .trend-link:hover { color: var(--blue-400); }





    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy-950:  #03081a;
      --navy-900:  #060d2e;
      --navy-800:  #0a1545;
      --navy-700:  #0e1f60;
      --navy-600:  #122b7a;
      --navy-200:  #98b2e8;
      --blue-600:  #0040cc;
      --blue-500:  #1a5cff;
      --blue-400:  #4d80ff;
      --teal-600:  #007a8a;
      --teal-500:  #007a95;
      --teal-400:  #26b8cc;
      --neutral-950: #080c18;
      --neutral-700: #28304a;
      --neutral-600: #3d4666;
      --neutral-500: #556080;
      --neutral-400: #7a849f;
      --neutral-300: #a3abbe;
      --neutral-200: #cdd2df;
      --neutral-150: #d8dce8;
      --neutral-100: #e4e7f0;
      --neutral-50:  #f4f5f9;
      --neutral-0:   #ffffff;
    }

    body {
      font-family: 'Work Sans', sans-serif;
      background: var(--neutral-50);
      color: var(--neutral-950);
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
    }

    /* ═══════════════════════════════════
       UTILITY BAR
    ════════════════════════════════════ */
    .utility-bar { background: #f0f5ff; height: 35px; }
    .utility-links {
      max-width: 1300px; margin: 0 auto; height: 35px; padding: 0;
      display: flex; align-items: center; justify-content: flex-end;
    }
    .utility-link {
      font-size: 12px; font-weight: 400; color: var(--neutral-400);
      text-decoration: none; padding: 0 10px; height: 35px;
      display: flex; align-items: center; transition: color 0.15s;
    }
    .utility-link:hover { color: var(--blue-500); }
    .utility-divider { width: 1px; height: 14px; background: var(--neutral-200); margin: 0 16px; flex-shrink: 0; }
    .utility-subscribe {
      font-size: 12px; font-weight: 400; color: #48617b; text-decoration: none;
      height: 35px; display: flex; align-items: center; gap: 6px; transition: color 0.15s;
    }
    .utility-subscribe:hover { color: var(--blue-500); }
    .utility-subscribe svg { flex-shrink: 0; }
    .utility-contact {
      font-size: 12px; font-weight: 500; color: #48617b; text-decoration: none;
      margin-left: 20px; height: 35px; display: flex; align-items: center; gap: 6px; transition: color 0.15s;
    }
    .utility-contact:hover { color: var(--blue-500); }

    /* ═══════════════════════════════════
       MAIN HEADER
    ════════════════════════════════════ */
    .site-header {
      background: var(--neutral-0); position: sticky; top: 0; z-index: 150;
      border-bottom: 1px solid var(--neutral-50);
    }
    .header-inner {
      max-width: 1300px; margin: 0 auto; padding: 0;
      height: 72px; display: flex; align-items: center;
    }
    .logo-wrap { display: flex; align-items: center; text-decoration: none; margin-right: 40px; flex-shrink: 0; }
    .logo-img { height: 44px; width: auto; display: block; }
    .primary-nav {
      display: flex; align-items: center; justify-content: center;
      flex: 1; height: 100%; gap: 0;
    }
    .nav-item { position: relative; height: 72px; display: flex; align-items: center; }
    .nav-link {
      font-size: 15px; font-weight: 600; color: var(--neutral-700);
      text-decoration: none; padding: 0 16px; height: 72px;
      display: flex; align-items: center; gap: 5px;
      transition: color 0.2s, background 0.2s; white-space: nowrap;
      border-bottom: 2px solid transparent;
    }
    .nav-link:hover, .nav-item:hover > .nav-link { color: var(--blue-500); border-bottom-color: transparent; }
    .nav-link.active { color: var(--blue-500); border-bottom-color: var(--blue-500); }
    .dropdown {
      position: absolute; top: calc(100% + 4px); left: 0; min-width: 230px;
      background: var(--neutral-0); border-radius: 6px; border: 1px solid var(--neutral-200);
      box-shadow: 0 8px 32px rgba(3,8,26,0.14), 0 2px 8px rgba(3,8,26,0.06);
      padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-4px);
      transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s; pointer-events: none;
    }
    .nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
    .dropdown--wide { min-width: 280px; }
    .dropdown-label {
      font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--neutral-400); padding: 10px 18px 4px;
    }
    .dropdown-link {
      display: flex; align-items: center; gap: 10px; padding: 9px 18px;
      font-size: 13px; font-weight: 500; color: var(--neutral-600);
      text-decoration: none; transition: background 0.15s, color 0.15s;
    }
    .dropdown-link:hover { background: var(--neutral-50); color: var(--blue-500); }
    .dropdown-link.active { color: var(--blue-500); background: var(--neutral-50); }
    .dd-type {
      display: inline-flex; align-items: center; justify-content: center;
      width: 34px; height: 20px; border-radius: 3px;
      font-size: 9px; font-weight: 700; letter-spacing: 0.05em; flex-shrink: 0;
      background: var(--navy-600); color: white;
    }
    .dd-type.cins { background: var(--teal-600); }
    .dd-type.isin { background: #1a3d99; }
    .dd-type.lei  { background: #5c7fd4; }
    .dd-type.cei  { background: var(--neutral-600); }
    .header-cta { display: flex; align-items: center; gap: 12px; margin-left: 24px; flex-shrink: 0; }
    .header-search-btn {
      width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
      background: none; border: none; cursor: pointer; border-radius: 50%;
      color: var(--neutral-600); transition: background 0.15s, color 0.15s; flex-shrink: 0;
    }
    .header-search-btn:hover { background: var(--neutral-100); color: var(--blue-500); }
    .btn {
      font-family: 'Work Sans', sans-serif;
      display: inline-flex; align-items: center; justify-content: center; gap: 5px;
      border: 1px solid transparent; border-radius: 30px; cursor: pointer;
      text-decoration: none; white-space: nowrap; -webkit-font-smoothing: antialiased;
      transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
    }
    .btn-md { font-size: 13px; font-weight: 500; letter-spacing: 0.005em; padding: 0 20px; height: 34px; }
    .btn-p { background: #0070C9; color: #fff; border-color: #0070C9; box-shadow: 0 1px 2px rgba(26,92,255,0.18); }
    .btn-p:hover { background: #005CA8; border-color: #005CA8; box-shadow: 0 3px 10px rgba(26,92,255,0.26); }
    .btn-outline-white { background: transparent; color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.25); }
    .btn-outline-white:hover { border-color: rgba(255,255,255,0.5); color: white; }
    .btn-s { background: var(--neutral-0); color: var(--neutral-700); border-color: var(--neutral-200); box-shadow: 0 1px 2px rgba(8,12,24,0.04); }
    .btn-s:hover { background: var(--neutral-50); border-color: var(--neutral-300); color: var(--neutral-950); box-shadow: 0 1px 3px rgba(8,12,24,0.07); }

    /* ── MOBILE ── */
    .m-trigger {
      display: none; width: 44px; height: 44px; background: none; border: none;
      cursor: pointer; flex-direction: column; align-items: center; justify-content: center;
      gap: 6px; flex-shrink: 0; padding: 0;
    }
    .m-line {
      width: 22px; height: 2px; background: var(--neutral-700); border-radius: 999px;
      transform-origin: center;
      transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.2s cubic-bezier(0.4,0,0.2,1), background 0.22s ease, width 0.2s ease;
    }
    body.nav-open .m-trigger .m-line:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #0070C9; }
    body.nav-open .m-trigger .m-line:nth-child(2) { opacity: 0; width: 0; }
    body.nav-open .m-trigger .m-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #0070C9; }
    .mob-search-btn {
      display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
      background: none; border: none; cursor: pointer; border-radius: 50%;
      color: var(--neutral-700); transition: background 0.15s, color 0.15s;
      flex-shrink: 0; padding: 0; margin-left: auto;
    }
    .mob-search-btn:hover { background: var(--neutral-100); color: var(--blue-500); }
    .mob-backdrop {
      display: none; position: fixed; left: 0; right: 0; bottom: 0;
      background: rgba(3,8,26,0.45); backdrop-filter: blur(1px);
      opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 140;
    }
    .mob-backdrop.open { opacity: 1; pointer-events: all; }
    .mob-drawer {
      display: none; position: fixed; left: 0; bottom: 0;
      width: 75%; max-width: 320px; background: var(--navy-900);
      transform: translateX(-100%); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
      z-index: 145; flex-direction: column; overflow-y: auto;
    }
    .mob-drawer.open { transform: translateX(0); }
    .mob-drw-nav { padding: 6px 0; }
    .mob-drw-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .mob-drw-btn {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; padding: 13px 16px; background: none; border: none;
      font-family: 'Work Sans', sans-serif; font-size: 13px; font-weight: 600;
      color: rgba(255,255,255,0.85); cursor: pointer; text-align: left;
      transition: background 0.15s, color 0.15s; border-left: 2px solid transparent;
    }
    .mob-drw-btn:hover { background: rgba(255,255,255,0.04); color: white; }
    .mob-drw-item.open .mob-drw-btn { color: white; border-left-color: var(--teal-400); background: rgba(255,255,255,0.04); }
    .mob-drw-chev { transition: transform 0.22s ease; flex-shrink: 0; opacity: 0.45; }
    .mob-drw-item.open .mob-drw-chev { transform: rotate(180deg); opacity: 0.8; }
    .mob-drw-sub { display: none; background: rgba(0,0,0,0.15); border-top: 1px solid rgba(255,255,255,0.04); }
    .mob-drw-item.open .mob-drw-sub { display: block; }
    .mob-drw-sub-link {
      display: flex; align-items: center; gap: 8px; padding: 9px 16px 9px 30px;
      font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.75);
      text-decoration: none; transition: color 0.15s, background 0.15s;
    }
    .mob-drw-sub-link:hover { color: white; background: rgba(255,255,255,0.03); }
    .mob-d-pill {
      display: inline-flex; align-items: center; justify-content: center;
      height: 16px; padding: 0 5px; border-radius: 3px;
      font-size: 7.5px; font-weight: 700; letter-spacing: 0.03em; flex-shrink: 0;
    }
    .mob-d-pill.cusip { background: var(--navy-600); color: white; }
    .mob-d-pill.cins  { background: var(--teal-500); color: white; }
    .mob-d-pill.isin  { background: #1a3d99; color: white; }
    .mob-d-pill.lei   { background: #5c7fd4; color: white; }
    .mob-d-pill.cei   { background: var(--neutral-600); color: white; }
    .mob-drw-footer { padding: 14px 16px 20px; border-top: 1px solid rgba(255,255,255,0.07); }
    .mob-drw-cta {
      display: flex; align-items: center; justify-content: center;
      width: 100%; height: 34px; background: #0070C9; color: white;
      border: 1px solid #0070C9; border-radius: 30px;
      font-family: 'Work Sans', sans-serif; font-size: 13px; font-weight: 500;
      cursor: pointer; margin-bottom: 12px; text-decoration: none;
      transition: background 0.15s, border-color 0.15s;
    }
    .mob-drw-cta:hover { background: #005CA8; border-color: #005CA8; }
    .mob-drw-util { display: flex; }
    .mob-drw-util-link {
      font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.5);
      text-decoration: none; padding-right: 12px; margin-right: 12px;
      border-right: 1px solid rgba(255,255,255,0.1); transition: color 0.15s;
    }
    .mob-drw-util-link:last-child { border-right: none; }
    .mob-drw-util-link:hover { color: rgba(255,255,255,0.8); }

    @media (max-width: 1100px) {
      .header-inner { padding: 0 24px; }
      .utility-links { padding: 0 24px; }
      .nav-link { padding: 0 12px; }
    }
    @media (max-width: 768px) {
      .utility-bar { display: none; }
      .primary-nav { display: none; }
      .header-cta { display: none; }
      .m-trigger { display: flex; }
      .mob-search-btn { display: flex; }
      .mob-backdrop { display: block; top: 60px; }
      .mob-drawer { display: flex; top: 60px; }
      .header-inner { position: relative; height: 60px; padding: 0 16px; }
      .logo-wrap { position: absolute; left: 50%; transform: translateX(-50%); margin-right: 0; }
      .logo-img { height: 38px; }
    }

    /* ═══════════════════════════════════
       PAGE INTRO — LIGHT (matches About / Leadership)
    ════════════════════════════════════ */
    .section { padding: 80px 60px; max-width: 1420px; margin: 0 auto; }
    .page-intro-light {
      background: var(--neutral-50);
      position: relative;
    }
    .page-intro-light .section { max-width: 800px; }
    .page-intro-dark {
      background: radial-gradient(ellipse at 50% 100%, var(--navy-900) 0%, var(--navy-950) 70%);
      position: relative;
    }
    .page-intro-dark .section { max-width: 800px; }
    .page-intro-dark .section-eyebrow { color: var(--teal-400); }
    .page-intro-dark .section-title { color: var(--neutral-0); }
    .page-intro-dark .section-body { color: var(--navy-200); }
    .section-eyebrow {
      font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--teal-500); margin-bottom: 12px;
      text-align: center;
    }
    .section-title {
      font-size: 36px; font-weight: 800; color: var(--neutral-950);
      letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px;
      text-align: center;
    }
    .section-body {
      font-size: 17px; font-weight: 300; color: var(--neutral-600);
      line-height: 1.75; max-width: 800px;
      text-align: center; margin-left: auto; margin-right: auto;
    }
    @media (max-width: 960px) {
      .section { padding: 56px 24px; }
      .section-title { font-size: 28px; }
    }

    /* ═══════════════════════════════════
       CONTACT SECTION
    ════════════════════════════════════ */
    .contact-section-wrap {
      background: var(--neutral-0);
    }
    .contact-section-inner {
      max-width: 1420px;
      margin: 0 auto;
      padding: 80px 60px;
    }
    .group-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--neutral-950);
      margin: 0 auto 24px;
      max-width: 1300px;
    }
    .contact-section-inner > address {
      max-width: 1300px;
      margin-left: auto;
      margin-right: auto;
    }
    .group-label::before {
      content: '';
      display: block;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--teal-400);
      flex-shrink: 0;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 1300px;
      margin: 0 auto;
    }
    .contact-card {
      background: var(--neutral-0);
      border: 1px solid var(--neutral-200);
      border-radius: 8px;
      padding: 20px 20px 22px;
    }
    .contact-avatar {
      width: 80px; height: 80px;
      border-radius: 50%; overflow: hidden;
      background: var(--neutral-50);
      margin-bottom: 14px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-avatar img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top; display: block;
    }
    .contact-avatar-initials {
      font-family: 'Dancing Script', cursive;
      font-size: 34px; font-weight: 700;
      background: linear-gradient(135deg, #26b8cc 0%, #4d80ff 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text; line-height: 1;
    }
    .contact-card-name {
      font-size: 14px; font-weight: 700;
      color: var(--neutral-950); letter-spacing: -0.01em;
      line-height: 1.3; margin-bottom: 4px;
    }
    .contact-card-title {
      font-size: 11px; font-weight: 400;
      color: var(--neutral-500); line-height: 1.5;
      margin-bottom: 2px;
    }
    .contact-card-org {
      font-size: 11px; font-weight: 400;
      color: var(--neutral-500); line-height: 1.5;
      margin-bottom: 10px;
    }
    .contact-card-email {
      display: block; font-size: 13px; font-weight: 500;
      color: var(--blue-500); text-decoration: none;
    }
    .contact-card-email:hover { text-decoration: underline; }

    /* ── Roster table (Data Operations & Support) ── */
    .contact-roster-table {
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      border-collapse: separate;
      border-spacing: 0;
      border: 1px solid var(--neutral-200);
      border-radius: 12px;
      overflow: hidden;
      background: var(--neutral-0);
    }
    .cusip-structure-card .cei-structure-table { border: none; border-radius: 0; }
    .contact-roster-table td {
      padding: 14px 22px;
      font-size: 14px;
      line-height: 1.5;
      vertical-align: middle;
      border-bottom: 1px solid var(--neutral-100);
      transition: background 0.15s;
    }
    .contact-roster-table tr:last-child td { border-bottom: none; }
    .contact-roster-table tr:hover td { background: var(--neutral-50); }
    .contact-roster-name {
      font-weight: 600;
      color: var(--neutral-950);
      width: 50%;
      border-right: 1px solid var(--neutral-100);
    }
    .contact-roster-name .role {
      display: block;
      font-weight: 400;
      color: var(--neutral-500);
      font-size: 12px;
      margin-top: 2px;
    }
    .contact-roster-email { width: 50%; }
    .contact-roster-email a {
      color: var(--blue-500);
      text-decoration: none;
      font-weight: 500;
      display: block;
      line-height: 1.55;
    }
    .contact-roster-email a + a { margin-top: 2px; }
    .contact-roster-email a:hover { text-decoration: underline; }

    /* ── 3-column instrument-types variant ── */
    .instrument-table thead th {
      background: var(--neutral-50);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--neutral-950);
      text-align: left;
      padding: 14px 22px;
      border-bottom: 1px solid var(--neutral-200);
      border-right: 1px solid var(--neutral-100);
    }
    .instrument-table thead th:last-child { border-right: none; }
    .instrument-table tbody td {
      width: 33.33%;
      font-weight: 500;
      color: var(--neutral-700);
      border-right: 1px solid var(--neutral-100);
    }
    .instrument-table tbody tr td:last-child { border-right: none; }
    /* Columns are independent lists, so hover highlights the individual cell, not the row */
    .instrument-table tbody tr:hover td { background: transparent; }
    .instrument-table tbody td:not(:empty):hover { background: var(--neutral-50); }

    /* ── Horizontal-scroll wrapper for wide tables (used on mobile) ── */
    .table-scroll {
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .table-scroll .contact-roster-table { min-width: 480px; }
    .table-scroll .instrument-table { min-width: 640px; }

    /* ── Instrument types: stacked-by-category list (mobile only — replaces the
       horizontally-scrolling 3-col table; shown ≤580px, hidden on desktop) ── */
    .instrument-stack { display: none; max-width: 1300px; margin: 0 auto; }
    .instrument-group {
      border: 1px solid var(--neutral-200);
      border-radius: 12px;
      overflow: hidden;
      background: var(--neutral-0);
      margin-bottom: 16px;
    }
    .instrument-group:last-child { margin-bottom: 0; }
    .instrument-group-title {
      background: var(--neutral-50);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--neutral-950);
      padding: 12px 16px;
      border-bottom: 1px solid var(--neutral-200);
    }
    .instrument-list { list-style: none; margin: 0; padding: 0; }
    .instrument-list li {
      padding: 11px 16px;
      font-size: 14px;
      font-weight: 500;
      color: var(--neutral-700);
      line-height: 1.4;
      border-bottom: 1px solid var(--neutral-100);
    }
    .instrument-list li:last-child { border-bottom: none; }

    /* ── 4-column structure table (CUSIP anatomy) ── */
    .instrument-table.cols-4 thead th { width: 25%; }
    .instrument-table.cols-4 tbody td { width: 25%; vertical-align: top; padding: 18px 22px; }
    .struct-value {
      font-family: monospace;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 0.06em;
      color: var(--neutral-950);
      line-height: 1;
      margin-bottom: 6px;
    }
    .struct-value.issuer { color: var(--navy-700); }
    .struct-value.issue  { color: var(--teal-600); }
    .struct-value.check  { color: var(--neutral-500); }
    .struct-pos {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--neutral-500);
    }
    .struct-desc {
      font-size: 12px;
      color: var(--neutral-600);
      line-height: 1.6;
      font-weight: 400;
    }

    /* ── Anatomy block + column copy structure ── */
    .alt-grid {
      max-width: 1300px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 16px; align-items: start;
    }
    .alt-col { display: flex; flex-direction: column; }

    .alt-seg {
      border-radius: 8px;
      padding: 18px 16px;
      margin-bottom: 18px;
      text-align: center;
    }
    .alt-seg-issuer { background: rgba(18,43,122,0.07); border: 1px solid rgba(18,43,122,0.15); }
    .alt-seg-issue  { background: rgba(0,122,138,0.07); border: 1px solid rgba(0,122,138,0.15); }
    .alt-seg-check  { background: var(--neutral-100); border: 1px solid var(--neutral-200); }
    .alt-seg-result { background: var(--navy-800); border: 1px solid var(--navy-700); }
    .alt-seg-val {
      font-family: monospace; font-size: 22px; font-weight: 800;
      letter-spacing: 0.06em; line-height: 1; margin-bottom: 6px;
    }
    .alt-seg-issuer .alt-seg-val { color: var(--navy-700); }
    .alt-seg-issue  .alt-seg-val { color: var(--teal-600); }
    .alt-seg-check  .alt-seg-val { color: var(--neutral-500); }
    .alt-seg-result .alt-seg-val { color: var(--neutral-0); font-size: 17px; letter-spacing: 0.1em; }
    .alt-seg-name {
      font-family: 'Work Sans', sans-serif;
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--neutral-500);
    }
    .alt-seg-result .alt-seg-name { color: rgba(255,255,255,0.5); }

    .alt-lead {
      font-size: 13px; font-weight: 800;
      color: var(--neutral-950); letter-spacing: -0.01em;
      margin-bottom: 10px;
      padding: 0 10px;
    }
    .alt-text {
      font-size: 12px; color: var(--neutral-700);
      line-height: 1.6; margin-bottom: 8px;
      padding: 0 10px;
    }
    .alt-text:last-child { margin-bottom: 0; }
    .alt-list { list-style: none; padding: 0 10px; margin: 0 0 8px; }
    .alt-list li {
      font-size: 12px; font-weight: 600;
      color: var(--neutral-950); line-height: 1.5;
      padding: 1px 0 1px 12px; position: relative;
    }
    .alt-list li::before {
      content: ''; position: absolute;
      left: 0; top: 8px;
      width: 4px; height: 4px;
      border-radius: 50%; background: var(--neutral-400);
    }
    .alt-grid.cols-5 { grid-template-columns: repeat(5, 1fr); gap: 12px; }
    /* LEI values are longer — shrink to fit */
    .lei-grid .alt-seg-val { font-size: 16px; letter-spacing: 0.04em; }
    .lei-grid .alt-seg-result .alt-seg-val { font-size: 14px; letter-spacing: 0.06em; }

    /* ── CEI Hierarchy diagram ── */
    .cei-h { max-width: 800px; margin: 64px auto 0; }
    .cei-h-title { font-size: 24px; font-weight: 800; color: var(--neutral-950); letter-spacing: -0.01em; margin-bottom: 36px; text-align: center; }
    .cei-h-scroll { width: 100%; }
    .cei-h-canvas { width: 100%; max-width: 800px; margin: 0 auto; }

    .cei-node {
      width: 200px;
      border: 1px solid var(--neutral-200);
      border-radius: 6px;
      overflow: hidden;
      background: var(--neutral-0);
    }
    .cei-node-name {
      background: var(--neutral-0);
      padding: 10px 12px 9px;
      color: var(--neutral-950);
      font-size: 12px; line-height: 1.3; text-align: center;
      border-bottom: 1px solid var(--neutral-150);
    }
    .cei-node-name strong { display: block; font-weight: 700; }
    .cei-node-name span { display: block; font-size: 10px; font-weight: 400; color: var(--neutral-500); margin-top: 3px; }
    .cei-node-cei {
      background: var(--neutral-50);
      color: var(--blue-600);
      padding: 7px 12px;
      font-size: 11px;
      font-weight: 700;
      font-family: monospace;
      letter-spacing: 0.04em;
      text-align: center;
    }

    .cei-arrow { width: 1px; height: 20px; position: relative; margin: 0 auto; }
    .cei-arrow::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 16px; background: var(--neutral-500); }
    .cei-arrow::after { content: ''; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); border-style: solid; border-width: 4px 4px 0 4px; border-color: var(--neutral-500) transparent transparent transparent; }

    .cei-h-top { display: flex; flex-direction: column; align-items: center; gap: 0; }

    /* Bridge below umbrella — 2 drops (one per main column) */
    .cei-h-bridge { position: relative; width: 100%; height: 1px; margin: 16px 0 0; }
    .cei-h-bridge .line { position: absolute; left: 25%; right: 25%; top: 0; height: 1px; background: var(--neutral-500); }
    .cei-h-bridge .stem { position: absolute; left: 50%; top: -16px; transform: translateX(-50%); width: 1px; height: 16px; background: var(--neutral-500); }
    .cei-h-bridge .drop-l, .cei-h-bridge .drop-r {
      position: absolute; top: 0; width: 1px; height: 20px; background: transparent;
    }
    .cei-h-bridge .drop-l { left: 25%; }
    .cei-h-bridge .drop-r { right: 25%; }
    .cei-h-bridge .drop-l::before,
    .cei-h-bridge .drop-r::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; width: 1px; height: 16px; background: var(--neutral-500);
    }
    .cei-h-bridge .drop-l::after,
    .cei-h-bridge .drop-r::after {
      content: ''; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); border-style: solid; border-width: 4px 4px 0 4px; border-color: var(--neutral-500) transparent transparent transparent;
    }

    /* 2-column grid of main chains */
    .cei-h-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; justify-items: center; }
    .cei-h-group { display: flex; flex-direction: column; align-items: center; }

    /* Row that has the "Class A" addition on its left */
    .cei-h-with-aside { position: relative; }
    .cei-h-with-aside .cei-h-aside {
      position: absolute;
      right: calc(100% + 28px);
      top: 0;
    }
    /* Horizontal connector — Discovery → Class A (left-pointing arrow, apex touches Class A) */
    .cei-h-with-aside::before {
      content: '';
      position: absolute;
      left: -24px;        /* line begins right after the arrow's back */
      top: 50%;
      width: 24px;        /* extends to Discovery's left edge */
      height: 1px;
      background: var(--neutral-500);
      transform: translateY(-1px);
    }
    .cei-h-with-aside::after {
      content: '';
      position: absolute;
      left: -28px;        /* apex at Class A's right edge */
      top: 50%;
      transform: translateY(-50%);
      border-style: solid;
      border-width: 4px 4px 4px 0;
      border-color: transparent var(--neutral-500) transparent transparent;
    }
    /* Mobile-only inline connector between aside and Discovery — hidden on desktop */
    .cei-h-with-aside .cei-h-link { display: none; }

    @media (max-width: 720px) {
      .cei-h { margin: 40px auto 0; }
      .cei-h-title { font-size: 18px; margin-bottom: 24px; }

      /* Horizontal scroll fallback when viewport is narrower than the diagram's minimum width.
         326px is the smallest canvas width where Class A (left aside) doesn't clip. */
      .cei-h-scroll {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
      }
      .cei-h-canvas {
        min-width: 326px;
        max-width: 380px;
      }

      /* Smaller cards — sized so aside + col-1 + col-2 all fit at 320px viewport */
      .cei-node { width: 72px; }
      .cei-node-name { padding: 6px 4px 5px; word-break: break-word; }
      .cei-node-name strong { font-size: 9px; line-height: 1.2; }
      .cei-node-name span { font-size: 7.5px; margin-top: 2px; }
      .cei-node-cei { padding: 4px 3px; font-size: 8px; letter-spacing: 0; line-height: 1.3; word-break: break-word; }

      /* Tighter vertical arrows */
      .cei-arrow { height: 14px; }
      .cei-arrow::before { height: 10px; }
      .cei-arrow::after { top: 10px; }

      /* Bridge — drops anchored to card centers via calc, viewport-independent.
         Math: card-1 center sits at 50% - half_gap(5px) - half_card(36px) = 50% - 41px. */
      .cei-h-bridge { margin-top: 14px; }
      .cei-h-bridge .stem { top: -10px; height: 10px; }
      .cei-h-bridge .line   { left: calc(50% - 41px); right: calc(50% - 41px); }
      .cei-h-bridge .drop-l { left: calc(50% - 41px); height: 14px; }
      .cei-h-bridge .drop-r { right: calc(50% - 41px); height: 14px; }
      .cei-h-bridge .drop-l::before,
      .cei-h-bridge .drop-r::before { height: 10px; }
      .cei-h-bridge .drop-l::after,
      .cei-h-bridge .drop-r::after { top: 10px; }

      /* Symmetric 1fr / 1fr grid; col-1 cards lean right, col-2 cards lean left
         → both columns hug the center, leaving viewport edge room for the Class A aside */
      .cei-h-groups { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
      .cei-h-groups > .cei-h-group:first-child { align-items: flex-end; }
      .cei-h-groups > .cei-h-group:last-child  { align-items: flex-start; }

      /* Arrows must track the card center (not the column center) since cards are now
         offset to one side. Card width 72 → 36px from the card's anchored edge. */
      .cei-h-groups > .cei-h-group:first-child .cei-arrow { margin: 0 36px 0 auto; }
      .cei-h-groups > .cei-h-group:last-child  .cei-arrow { margin: 0 auto 0 36px; }

      /* Class A aside in-flow as a flex sibling of Discovery — so it contributes to canvas
         width and the scroll container can reach it (absolute-positioned aside doesn't). */
      .cei-h-with-aside { display: flex; align-items: center; gap: 0; }
      .cei-h-with-aside .cei-h-aside {
        position: static; right: auto; top: auto; flex-shrink: 0;
      }
      .cei-h-with-aside::before, .cei-h-with-aside::after { display: none; }
      .cei-h-with-aside .cei-h-link {
        display: block; flex-shrink: 0;
        width: 12px; height: 1px;
        background: var(--neutral-500);
        position: relative;
      }
      .cei-h-with-aside .cei-h-link::before {
        content: '';
        position: absolute;
        left: 0; top: 50%;
        transform: translateY(-50%);
        border-style: solid;
        border-width: 4px 4px 4px 0;
        border-color: transparent var(--neutral-500) transparent transparent;
      }
    }

    /* CEI Resources accordion (matches FAQ pattern from cusip-apply.html) */
    .faq-accordion { max-width: 680px; margin: 0 auto; }
    .faq-accordion .faq-item { border-bottom: 1px solid var(--neutral-200); }
    .faq-accordion .faq-item:first-child { border-top: 1px solid var(--neutral-200); }
    .faq-accordion .faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; align-items: center; gap: 12px;
      padding: 20px 0;
      font-family: 'Work Sans', sans-serif;
      font-size: 15px; font-weight: 600; color: var(--neutral-950);
      text-align: left; transition: color 0.15s;
    }
    .faq-accordion .faq-q:hover { color: var(--blue-500); }
    .faq-accordion .faq-q .faq-chevron {
      flex-shrink: 0; color: var(--neutral-400);
      transition: transform 0.2s, color 0.15s;
    }
    .faq-accordion .faq-item.open .faq-q { color: var(--blue-500); }
    .faq-accordion .faq-item.open .faq-q .faq-chevron { transform: rotate(180deg); color: var(--blue-500); }
    .faq-accordion .faq-body {
      display: none; padding: 0 0 24px 30px;
      color: var(--neutral-600); font-size: 14px; line-height: 1.7;
    }
    .faq-accordion .faq-item.open .faq-body { display: block; }
    /* Additional resources links list */
    .cei-res-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
    .cei-res-links a { color: var(--blue-500); text-decoration: none; font-size: 14px; font-weight: 500; }
    .cei-res-links a:hover { text-decoration: underline; }
    @media (max-width: 720px) {
      .alt-grid { grid-template-columns: repeat(2, 1fr); }
      .alt-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 580px) {
      .alt-grid,
      .alt-grid.cols-5 { grid-template-columns: 1fr; }
      .alt-seg { margin-bottom: 12px; }
    }

    /* In-page panel switching (driven by tab clicks) */
    .id-panel-content { display: none; }
    .id-panel-content.active { display: block; }
    /* Tighter top padding inside panels — the sticky tab bar already contributes the gap */
    .id-panel-content .contact-section-inner { padding-top: 40px; }
    /* Hard cap intro title + paragraph width */
    .id-panel-intro { max-width: 800px; margin-left: auto; margin-right: auto; text-align: left; }
    .id-panel-intro h2,
    .id-panel-intro p { max-width: 800px; margin-left: auto; margin-right: auto; }
    .id-panel-intro h2 { text-align: center; }

    /* ── Sticky tab bar that pins below the main nav (72px) ── */
    .id-tab-bar-spacer {
      background: var(--neutral-0);
      height: 0;
    }
    .id-tab-bar {
      position: sticky;
      top: 72px;
      z-index: 90;
      background: var(--neutral-0);
      padding-top: 50px;
      padding-bottom: 10px;
    }
    .id-tab-bar-inner {
      max-width: 1420px;
      margin: 0 auto;
      padding: 0 60px;
    }
    .id-tab-bar .tabs-underline {
      margin: 0 auto;
      max-width: none;
      width: fit-content;
      padding: 0 20px;
      justify-content: center;
    }

    /* ── Underline tabs (medium) — matches component library ── */
    .tabs-underline {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 0;
      border-bottom: 1px solid var(--neutral-200);
      max-width: 800px;
      margin: 0 auto 40px;
    }
    .tabs-underline .tab:last-child { margin-right: 0; }
    .tabs-underline .tab {
      font-family: 'Work Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: var(--neutral-400);
      padding: 0 0 14px 0;
      margin-right: 32px;
      border: none;
      background: none;
      cursor: pointer;
      position: relative;
      letter-spacing: -0.01em;
      transition: color 0.15s;
      white-space: nowrap;
      text-decoration: none;
      display: inline-block;
    }
    .tabs-underline .tab::after {
      content: '';
      position: absolute;
      bottom: -1.5px; left: -20px; right: -20px;
      height: 2px;
      background: #0070C9;
      border-radius: 0;
      opacity: 0;
      transition: opacity 0.15s;
    }
    .tabs-underline .tab:hover { color: var(--neutral-700); }
    .tabs-underline .tab.active {
      color: var(--blue-500);
      font-weight: 600;
    }
    .tabs-underline .tab.active::after { opacity: 1; }

    /* ── Tab bar pins flush under the 60px mobile header (no content gap above tabs) ── */
    @media (max-width: 768px) {
      .id-tab-bar { top: 60px; }
    }

    /* ── Tab bar on mobile: drop the wide side padding so tabs center within the viewport ── */
    @media (max-width: 580px) {
      .id-tab-bar-inner { padding: 0 16px; }
      .id-tab-bar .tabs-underline {
        width: 100%;
        max-width: 100%;
        padding: 0;
        justify-content: center;
      }
      .tabs-underline .tab { margin-right: 20px; }
      .tabs-underline .tab:last-child { margin-right: 0; }
    }

    /* ── CUSIP Anatomy section ── */
    .cusip-anatomy { background: var(--neutral-0); }
    .cusip-anatomy-inner { max-width: 1300px; margin: 0 auto; padding: 80px 60px 64px; }
    .anatomy-visual { display: flex; gap: 8px; margin-bottom: 14px; }
    .anatomy-seg {
      border-radius: 10px; padding: 28px 24px; text-align: center;
    }
    .anatomy-seg-issuer { background: rgba(18,43,122,0.07); border: 1px solid rgba(18,43,122,0.18); flex: 6; }
    .anatomy-seg-issue  { background: rgba(0,122,138,0.08); border: 1px solid rgba(0,122,138,0.18); flex: 2; }
    .anatomy-seg-check  { background: var(--neutral-100); border: 1px solid var(--neutral-200); flex: 1; }
    .anatomy-seg-val {
      font-family: monospace;
      font-size: 30px; font-weight: 800;
      letter-spacing: 0.08em; line-height: 1; margin-bottom: 10px;
    }
    .anatomy-seg-issuer .anatomy-seg-val { color: var(--navy-700); }
    .anatomy-seg-issue  .anatomy-seg-val { color: var(--teal-600); }
    .anatomy-seg-check  .anatomy-seg-val { color: var(--neutral-500); }
    .anatomy-seg-label {
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--neutral-500);
    }
    .anatomy-example {
      text-align: center;
      font-size: 13px; color: var(--neutral-500);
      margin-bottom: 56px;
    }
    .anatomy-example strong { color: var(--neutral-950); font-weight: 600; }
    .anatomy-example .full-cusip {
      font-family: monospace; font-weight: 700;
      color: var(--neutral-950); font-size: 15px; letter-spacing: 0.06em;
      margin-left: 6px;
    }
    .anatomy-cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .anatomy-col {
      background: var(--neutral-50);
      border: 1px solid var(--neutral-200);
      border-radius: 10px;
      padding: 24px;
    }
    .anatomy-col-num {
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--neutral-500);
      margin-bottom: 6px;
    }
    .anatomy-col-title {
      font-size: 18px; font-weight: 800;
      color: var(--neutral-950); letter-spacing: -0.01em;
      margin-bottom: 12px;
    }
    .anatomy-col-desc {
      font-size: 13px; color: var(--neutral-600);
      line-height: 1.65; font-weight: 400;
    }
    .anatomy-result {
      margin-top: 36px;
      text-align: center;
      font-size: 14px; font-weight: 600;
      color: var(--neutral-950);
    }
    .anatomy-result em { font-style: normal; color: var(--teal-600); }

    @media (max-width: 720px) {
      .anatomy-cols { grid-template-columns: 1fr; }
      .anatomy-visual { flex-direction: column; }
      .cusip-anatomy-inner { padding: 56px 24px 48px; }
    }

    @media (max-width: 580px) {
      .contact-roster-table tr { display: block; padding: 12px 16px; }
      .contact-roster-table td { display: block; padding: 4px 0; width: 100%; }
      /* Tables inside .table-scroll keep their row/cell layout — they scroll instead of stacking */
      .table-scroll .contact-roster-table tr { display: table-row; padding: 0; }
      .table-scroll .contact-roster-table td { display: table-cell; padding: 14px 22px; width: auto; }

      /* CEI Structure: keep the 2-column table layout intact on mobile — just tighten padding & fonts */
      .cei-structure-table tr { display: table-row; padding: 0; }
      .cei-structure-table th,
      .cei-structure-table td {
        display: table-cell !important;
        padding: 10px 12px !important;
        width: 50% !important;
      }
      .cei-structure-table thead th { font-size: 10px !important; }
      .cei-structure-table thead th span { font-size: 9px !important; line-height: 1.4; }
      .cei-structure-table tbody td { font-size: 13px !important; line-height: 1.4; }
      .cei-structure-table tbody td:last-child { font-size: 12px !important; }
    }

    @media (max-width: 1100px) {
      .contact-section-inner { padding: 48px 24px; }
      .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    }
    @media (max-width: 580px) {
      .contact-grid { grid-template-columns: 1fr; }
      /* Tighten the stacked padding between the active tab panel and the
         "General Interest Instrument Types" section below it on mobile */
      .id-panel-content > .contact-section-wrap:last-child .contact-section-inner { padding-bottom: 24px; }
      .instrument-types-wrap .contact-section-inner { padding-top: 24px; }
      /* Swap the scrolling instrument table for the stacked-by-category list */
      .instrument-scroll { display: none; }
      .instrument-stack { display: block; }
    }

    /* ═══════════════════════════════════
       FOOTER (synced from cusip-all-components.html — canonical source)
    ════════════════════════════════════ */
    .site-footer { background: var(--navy-950); }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.25); margin: 40px 0 20px; }
    .footer-inner { max-width: 800px; margin: 0 auto; padding: 0; }
    .footer-main-bg { background: var(--navy-950); }
    .footer-col-heading {
      font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--teal-400); margin-bottom: 16px;
    }
    .footer-main {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 48px; align-items: start; padding: 48px 0 0;
    }
    .footer-company-name { font-size: 13px; font-weight: 600; color: white; line-height: 1.15; letter-spacing: 0; }
    .footer-info { display: flex; flex-direction: column; gap: 8px; }
    .footer-address { font-size: 13px; color: var(--neutral-400); line-height: 1.65; margin-bottom: 4px; font-style: normal; }
    .footer-phone {
      font-size: 13px; color: var(--neutral-400);
      text-decoration: none; display: flex; align-items: center; gap: 7px;
      transition: color 0.2s;
    }
    .footer-phone:hover { color: white; }
    .footer-phone svg { opacity: 0.45; flex-shrink: 0; }
    .footer-contact-link {
      font-size: 13px; font-weight: 400; color: var(--neutral-400);
      text-decoration: none; transition: color 0.2s; width: fit-content;
    }
    .footer-contact-link:hover { color: white; }
    .footer-newsletter { align-self: start; }
    .footer-newsletter-label {
      font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--teal-400); margin-bottom: 8px;
    }
    .footer-newsletter-title { font-size: 13px; color: var(--neutral-400); line-height: 1.3; margin-bottom: 16px; }
    .footer-rule { border: none; border-top: 1px solid rgba(255,255,255,0.07); }
    .footer-legal {
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px; flex-wrap: wrap; padding: 0 0 28px;
    }
    .footer-legal-left { display: flex; flex-direction: column; gap: 12px; }
    .footer-legal-text { font-size: 11px; color: var(--neutral-400); line-height: 1.6; }
    .footer-copyright { font-size: 11px; color: var(--neutral-400); padding-left: 20px; }
    .footer-legal-links { display: flex; align-items: center; flex-shrink: 0; }
    .footer-legal-links a {
      font-size: 11px; font-weight: 500; color: var(--neutral-400);
      text-decoration: none; padding: 0 14px;
      border-right: 1px solid rgba(255,255,255,0.1);
      white-space: nowrap; transition: color 0.2s;
    }
    .footer-legal-links a:first-child { padding-left: 0; }
    .footer-legal-links a:last-child  { padding-right: 0; border-right: none; }
    .footer-legal-links a:hover { color: white; }
    @media (max-width: 960px) {
      .footer-main  { grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 0 0; }
      .footer-legal { padding: 0 0 24px; }
    }
    @media (max-width: 640px) {
      .footer-main      { grid-template-columns: 1fr; gap: 28px; padding: 32px 0 0; }
      .footer-info-grid { grid-template-columns: 1fr; gap: 16px; }
      .footer-legal     { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 0 24px; }
      .footer-legal-text { font-size: 11px; line-height: 1.75; color: var(--neutral-300); }
    }
    @media (max-width: 480px) {
      .footer-copyright { padding-left: 0; }
      .footer-inner { padding: 0 20px; }
      .footer-legal-text { font-size: 11px; line-height: 1.75; }
      .footer-legal-links { flex-direction: column; align-items: flex-start; gap: 4px; }
      .footer-legal-links a { padding: 4px 0; border-right: none; }
    }

  @media (max-width: 768px) { .footer-helix { display: none !important; } .logo-wrap { position: absolute; left: 50%; transform: translateX(-50%); margin-left: 0; } .logo-img { height: 44px; } }
  /* Mobile drawer — light theme (matches desktop nav) */
  .mob-drawer { background: var(--neutral-0); }
  .mob-drawer::after { display: none; }
  .mob-drw-item { border-bottom-color: var(--neutral-100); }
  .mob-drw-btn { color: var(--neutral-700); }
  .mob-drw-btn:hover { background: var(--neutral-50); color: var(--blue-500); }
  .mob-drw-item.open .mob-drw-btn { color: var(--blue-500); border-left-color: var(--blue-500); background: var(--neutral-50); }
  .mob-drw-chev { opacity: 0.55; }
  .mob-drw-sub { background: transparent; border-top-color: transparent; padding-bottom: 12px; }
  .mob-drw-sub-link { color: var(--neutral-600); padding-left: 16px; }
  .mob-drw-sub-link:hover { color: var(--blue-500); background: var(--neutral-100); }
  .mob-drw-footer { border-top-color: var(--neutral-100); }
  .mob-drw-util { flex-direction: column; align-items: stretch; margin: 0 -16px; padding: 0 16px 13px; border-bottom: 1px solid var(--neutral-100); }
  .mob-drw-util-link { color: var(--neutral-600); border-right: none; margin-right: 0; padding: 11px 0; font-size: 13px; border-bottom: 1px solid var(--neutral-100); }
  .mob-drw-util-link:hover { color: var(--blue-500); }
  .mob-drw-util-link:last-child { border-bottom: none; }
  .mob-drw-util-link:first-child { padding-top: 0; }
  .mob-drw-nav .mob-drw-item:last-child { border-bottom: none; }
