/* Base report styles */
:root {
      --color-primary: #004671;
      --color-primary-2: #006EA8;
      --color-primary-dark: #003050;
      --color-primary-tint: #E0F0FA;
      --color-bg: #F8F5F0;
      --color-surface: #FFFFFF;
      --color-muted: #EDE9E3;
      --color-dark: #1A2033;
      --color-group-white: #888780;
      --color-group-black: #003050;
      --color-group-hispanic: #C01882;
      --color-group-asian: #1E7048;
      --color-alert: #B84425;
      --color-highlight: #856E00;
      --color-warm: #E8C87A;
      --color-warm-tint: #F5E6C8;
      --color-secondary: #0A7A7A;
      --color-link: #3B6CB7;
      --color-midgray: #767676;
      --shadow-card: 0 2px 12px rgba(0, 70, 113, 0.08);
      --shadow-soft: 0 18px 48px rgba(0, 48, 80, 0.08);
      --radius: 8px;
      --max-width: 1180px;
      --text-hero: clamp(4rem, 7vw, 5rem);
      --text-h1: clamp(2.45rem, 4vw, 2.5rem);
      --text-h2: clamp(1.8rem, 3vw, 1.75rem);
      --text-h3: 1.25rem;
      --text-stat: clamp(3.4rem, 7vw, 6.875rem);
      --text-body: 1.0625rem;
      --text-quote: clamp(1.55rem, 3vw, 1.75rem);
      --text-data-label: 0.875rem;
      --text-caption: 0.78rem;
      --text-source: 0.75rem;
        
/*addl colors*/

--color-series-total: #00457d;
--color-series-genz: #0077b6;
--color-series-millennial: #ffd101;
--color-series-genx: #7a2e8f;
--color-series-boomer: #0d6b57;

--chart-grid-line: rgba(8, 22, 36, 0.12);
--chart-axis: rgba(8, 22, 36, 0.54);
--chart-ink: #081624;
--chart-muted: #5e6a78;
--chart-card-bg: rgba(255, 255, 255, 0.82);
--chart-card-border: rgba(8, 22, 36, 0.08);
--chart-shadow: 0 18px 36px rgba(0, 30, 61, 0.08);
--chart-radius: 24px;
--chart-reveal-distance: 22px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: var(--color-bg); }
    body {
      margin: 0;
      background: var(--color-bg);
      color: var(--color-dark);
      font-family: 'Lora', Georgia, serif;
      font-size: var(--text-body);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; overflow-wrap: break-word; }
    button, a { -webkit-tap-highlight-color: transparent; }
    :focus-visible {
      outline: 3px solid var(--color-primary-2);
      outline-offset: 3px;
      border-radius: 4px;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .site-progress {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 120;
      height: 4px;
      background: rgba(255, 255, 255, 0.2);
    }
    .site-progress__bar {
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, var(--color-warm), var(--color-primary-2));
    }

    .site-header {
      position: sticky;
      top: 4px;
      z-index: 110;
      border-bottom: 1px solid rgba(0, 70, 113, 0.08);
      background: rgba(248, 245, 240, 0.9);
      backdrop-filter: blur(12px);
    }
    .site-header__inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 14px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
      text-decoration: none;
    }
    .brand img {
      width: 188px;
      max-width: 38vw;
      height: auto;
    }
    .brand__meta {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-primary);
      white-space: nowrap;
    }

    .primary-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: flex-end;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.78rem;
    }
    .primary-nav a {
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--color-primary);
      text-decoration: none;
      background: rgba(0, 70, 113, 0.05);
      transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    }
    .primary-nav a:hover,
    .primary-nav a.is-active {
      background: var(--color-primary);
      color: white;
      transform: translateY(-1px);
    }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: calc(100vh - 68px);
      background: radial-gradient(circle at 85% 15%, rgba(0, 110, 168, 0.16), transparent 32%), var(--color-primary-dark);
      color: white;
    }
    .hero::before {
      content: '67%';
      position: absolute;
      top: 4%;
      right: 3%;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: clamp(14rem, 34vw, 31rem);
      line-height: 0.82;
      color: rgba(0, 70, 113, 0.85);
      pointer-events: none;
      z-index: 0;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: auto 0 0 0;
      height: 120px;
      background: linear-gradient(180deg, rgba(0, 48, 80, 0) 0%, rgba(0, 48, 80, 0.34) 100%);
      pointer-events: none;
    }
    .hero__inner {
      position: relative;
      z-index: 1;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 108px 24px 88px;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
      align-items: end;
      gap: 52px;
    }
    .hero__eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-warm);
      margin: 0 0 12px;
    }
    .hero h1 {
      margin: 0;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-weight: 800;
      font-size: var(--text-hero);
      line-height: 1.05;
      max-width: 11ch;
    }
    .hero h1 .accent { color: var(--color-primary-2); }
    .hero__subhead {
      margin: 18px 0 20px;
      font-style: italic;
      font-size: 22px;
      line-height: 1.4;
      color: var(--color-muted);
      max-width: 30rem;
    }
      .hero__accent {
          color: var(--color-primary-tint);
      }
    .hero__description {
      max-width: 35rem;
      color: rgba(255, 255, 255, 0.94);
    }
    .hero__description p { margin: 0 0 0.75rem; }
    .hero__description p:last-child { margin-bottom: 0; }
    .hero__actions {
      margin-top: 28px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px 18px;
    }
    .button-primary,
    .button-secondary,
    .button-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
      cursor: pointer;
    }
    .button-primary {
      padding: 14px 28px;
      border-radius: 999px;
      background: white;
      color: var(--color-primary);
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.05rem;
      font-weight: 800;
      box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
    }
    .button-primary:hover {
      background: var(--color-primary-2);
      color: white;
      transform: translateY(-2px);
    }
    .button-secondary {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.88rem;
      color: var(--color-primary-tint);
      text-decoration: none;
    }
    .hero__aside {
      position: relative;
      width: min(100%, 520px);
      margin-left: auto;
    }
    .hero__preview {
      position: relative;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(224, 240, 250, 0.22);
      border-radius: 18px;
      padding: 18px;
      box-shadow: 0 34px 80px rgba(0, 0, 0, 0.25);
    }
    .hero__preview-label {
      display: inline-block;
      margin-bottom: 14px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-warm);
    }
    .hero__preview figure { margin: 0; }
    .hero__preview img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .hero__preview figcaption {
      margin-top: 12px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.78rem;
      color: rgba(224, 240, 250, 0.88);
    }
    .hero__quickstats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
    }
    .hero__quickstat {
      padding: 12px 14px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(224, 240, 250, 0.14);
    }
    .hero__quickstat strong {
      display: block;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.9rem;
      line-height: 1;
      color: white;
    }
    .hero__quickstat span {
      display: block;
      margin-top: 6px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      line-height: 1.45;
      letter-spacing: 0.04em;
      color: rgba(224, 240, 250, 0.9);
      text-transform: uppercase;
    }

    .page-section {
      padding: 88px 24px;
    }
    .page-section--sky { background: var(--color-primary-tint); }
    .page-section--linen { background: var(--color-muted); }
    .page-section--white { background: white; }
    .page-section--dark {
      position: relative;
      background: var(--color-primary-dark);
      color: white;
      overflow: hidden;
    }
    .page-section--dark::before {
      content: '\201C';
      position: absolute;
      inset: 0 auto auto max(24px, calc(50% - 360px));
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: clamp(10rem, 20vw, 16rem);
      line-height: 0.7;
      color: rgba(0, 110, 168, 0.2);
      pointer-events: none;
    }
    .section-wrap {
      position: relative;
      z-index: 1;
      max-width: var(--max-width);
      margin: 0 auto;
    }
    .section-label {
      margin: 0 0 12px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-primary-2);
    }
    .page-section--dark .section-label { color: var(--color-warm); }
    .section-title {
      margin: 0;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 40px;
      line-height: 1.1;
      color: var(--color-primary-dark);
    }
    .page-section--dark .section-title,
    .page-section--dark h2 { color: white; }
    .section-intro {
      max-width: 860px;
      margin: 16px 0 0;
      color: var(--color-dark);
    }
    .page-section--dark .section-intro { color: rgba(255, 255, 255, 0.9); }

    .findings-grid {
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 22px;
    }
    .finding-card {
      grid-column: span 4;
      min-height: 240px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 18px;
      padding: 28px;
      border-radius: 8px;
      background: var(--color-surface);
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(0, 70, 113, 0.05);
      transition: transform 200ms ease, box-shadow 200ms ease;
    }
    .finding-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px rgba(0, 70, 113, 0.14);
    }
    .finding-card__pill {
      width: fit-content;
      padding: 4px 10px;
      border-radius: 100px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      background: var(--pill-bg);
      color: var(--pill-color);
    }
    .finding-card__value {
      display: inline-flex;
      align-items: flex-end;
      gap: 8px;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: clamp(3.2rem, 3.7vw, 3.7rem);
      line-height: 0.95;
      color: var(--pill-color);
      letter-spacing: -0.02em;
    }
    .finding-card__value small {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.95rem;
      line-height: 1.4;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--pill-color);
    }
    .finding-card__comparison {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    .comparison-box {
      padding: 14px 14px 12px;
      border-radius: 8px;
      background: var(--comparison-bg);
      border-left: 4px solid var(--comparison-color);
    }
    .comparison-box strong {
      display: block;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 2.7rem;
      line-height: 0.95;
      color: var(--comparison-color);
    }
    .comparison-box span {
      display: block;
      margin-top: 6px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      color: var(--color-dark);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .finding-card p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.65;
      color: var(--color-dark);
    }

    .landing-viz {
      max-width: 860px;
      margin: 30px auto 0;
      display: grid;
      gap: 22px;
    }

    .chart-card {
        max-width: 860px;
      padding: 32px;
        margin-bottom: 16px;
      border-radius: 8px;
      background: white;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(0, 70, 113, 0.07);
    }
    .chart-card__eyebrow {
      display: inline-block;
      margin-bottom: 8px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-primary);
    }
    .chart-card h3 {
          margin: 0 0 16px;
font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chart-ink);
      }
      
    .chart-card h4 {
      margin: 0;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 22px;
      line-height: 1.2;
      color: var(--color-primary-dark);
    }
    .chart-card p {
      margin: 10px 0 0;
      color: var(--color-midgray);
      font-size: 0.97rem;
    }
    .chart-group + .chart-group { margin-top: 20px; }
    .chart-group__title {
      margin: 18px 0 10px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-primary);
    }
    .bar-row {
      display: grid;
      gap: 8px;
      margin-bottom: 14px;
    }
    .bar-row__meta {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 14px;
      font-size: 0.94rem;
      line-height: 1.45;
    }
    .bar-row__meta strong {
      flex: 0 0 auto;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.9rem;
      color: var(--color-primary-dark);
    }
    .bar-track {
      height: 12px;
      border-radius: 999px;
      background: rgba(0, 70, 113, 0.09);
      overflow: hidden;
    }
    .bar-fill {
      display: block;
      height: 100%;
      width: 0;
      border-radius: inherit;
      background: var(--bar-color, var(--color-primary));
      transition: width 1200ms cubic-bezier(0.18, 0.82, 0.2, 1);
    }
    .is-visible .bar-fill,
    .reveal.is-visible .bar-fill { width: calc(var(--value) * 1%); }

    .pull-quote {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }
    .pull-quote blockquote {
      margin: 0;
      font-style: italic;
      font-weight: 700;
      font-size: var(--text-quote);
      line-height: 1.4;
      color: white;
    }
    .pull-quote figcaption {
      margin-top: 18px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.875rem;
      color: var(--color-warm);
    }

    .about-grid {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 36px;
    }
    .about-panel {
      padding-right: 28px;
    }
    .about-panel + .about-panel {
      border-left: 1px solid var(--color-muted);
      padding-left: 36px;
      padding-right: 0;
    }
    .about-panel h3 {
      margin: 0 0 14px;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 24px;
      line-height: 1.2;
      color: var(--color-primary);
    }
    .about-panel p { margin: 0 0 1rem; }
    .survey-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 22px 0;
    }
    .survey-stat {
      padding: 8px 12px;
      border-radius: 999px;
      background: white;
      border: 1px solid rgba(0, 70, 113, 0.09);
      font-family: 'IBM Plex Mono', monospace;
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-primary);
      box-shadow: var(--shadow-card);
    }
    .survey-note {
      font-style: italic;
      color: var(--color-dark);
    }

    .download-grid {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }
    .download-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 24px;
      border-radius: 0 0 8px 8px;
      border-top: 4px solid var(--color-primary);
      background: white;
      box-shadow: var(--shadow-card);
    }
    .download-card h3 {
      margin: 0;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 20px;
      line-height: 1.2;
      color: var(--color-primary);
    }
    .download-card p {
      margin: 0;
      font-size: 0.96rem;
      color: var(--color-dark);
    }
    .download-preview {
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid rgba(0, 70, 113, 0.08);
      background: var(--color-bg);
    }
    .download-preview img { width: 100%; }
    .button-outline {
      width: fit-content;
      padding: 10px 20px;
      border: 1px solid var(--color-primary);
      background: var(--color-bg);
      color: var(--color-primary);
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.81rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .button-outline:hover {
      background: var(--color-primary);
      color: white;
      transform: translateY(-1px);
    }
    .button-outline.is-disabled,
    .button-outline[aria-disabled="true"] {
      opacity: 0.55;
      pointer-events: none;
    }
    .download-note {
      margin-top: 16px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.78rem;
      color: var(--color-midgray);
    }

    .media-card {
        display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
      margin-top: 20px;
    }
    .contact-block {
        padding: 22px 24px;
      border-radius: 8px;
      background: var(--color-bg);
      border: 1px solid rgba(0, 70, 113, 0.08);
      box-shadow: var(--shadow-card);
    }
    .contact-block strong {
      display: block;
      margin-bottom: 4px;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 20px;
      line-height: 1.2;
      color: var(--color-primary);
    }
    .contact-block a { color: var(--color-primary-2); overflow-wrap: break-word;}
    .contact-block p { margin: 0.35rem 0 0; display: block; width: auto;}
    .contact-note {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.78rem;
      color: var(--color-midgray);
    }

    .full-report-intro {
      background: linear-gradient(180deg, rgba(224, 240, 250, 0.72) 0%, rgba(248, 245, 240, 0.82) 100%);
      border-top: 1px solid rgba(0, 70, 113, 0.08);
      border-bottom: 1px solid rgba(0, 70, 113, 0.08);
    }
      
    .full-report-layout__content h1 {
      margin: 0;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-weight: 800;
      font-size: var(--text-hero);
      line-height: 1.05;
      max-width: 11ch;
    }
    .full-report-layout__content h1 .accent { color: var(--color-primary-2); }
    .full-report-layout__content h3 {
      margin: 18px 0 20px;
      font-style: italic;
      font-size: 22px;
      line-height: 1.4;
      color: var(--color-primary);
      max-width: 30rem;
    }
      
    .chapter-grid {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }
    .chapter-card {
      display: block;
      padding: 18px 18px 16px;
      border-radius: 8px;
      background: white;
      text-decoration: none;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(0, 70, 113, 0.07);
      transition: transform 180ms ease, border-color 180ms ease;
    }
    .chapter-card:hover {
      transform: translateY(-3px);
      border-color: rgba(0, 110, 168, 0.35);
    }
    .chapter-card__eyebrow {
      display: block;
      margin-bottom: 8px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-primary-2);
    }
    .chapter-card strong {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.1rem;
      line-height: 1.2;
      color: var(--color-primary-dark);
    }

    .report-section {
      padding: 82px 24px;
      border-bottom: 1px solid rgba(0, 70, 113, 0.07);
      background: var(--color-bg);
    }
    .report-section:nth-of-type(even) { background: /* #FBF9F5 */ transparent; }
    .report-section .section__inner {
      max-width: 100%;
      margin: 0 0;
    }
      
      /* -------------------Fake bg------------------- */
      .full-report-layout__content {
  position: relative;
  min-width: 0;
}

.report-section {
  position: relative;
  isolation: isolate;
      padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

 .report-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  /*width: 100vw;*/
  transform: translateX(-50%);
  z-index: -1;
  background: transparent;
}
      
      .full-report-layout__content > .report-section:nth-of-type(even)::before {
  background: var(--report-alt-bg, #f7f3ea);
      }
      
            /* -------------------Fake bg------------------- */
      
    .section-head {
      max-width: 760px;
      margin-bottom: 26px;
    }
    .section-kicker {
      display: inline-block;
      margin-bottom: 10px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-primary-2);
    }
    .section-head h2 {
      margin: 0;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: var(--text-h1);
      line-height: 1.1;
      color: var(--color-primary-dark);
    }
    .section-head p,
    .copy,
    .copy p {
      max-width: 660px;
        margin-bottom: 16px;
    }
    .copy p {
      margin: 0 0 1rem;
      font-size: 17px;
      line-height: 1.7;
      color: var(--color-dark);
    }
    .copy p:last-child { margin-bottom: 0; }
    .subhead {
      max-width: 660px;
      margin: 36px 0 16px;
      padding-top: 0;
      border-top: 0;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 28px;
      line-height: 1.2;
      color: var(--color-primary);
    }
    .theme-cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin: 28px 0;
    }
    .theme-card {
      padding: 22px;
      border-radius: 8px;
      background: white;
      border: 1px solid rgba(0, 70, 113, 0.06);
      box-shadow: var(--shadow-card);
    }
    .theme-card h4 {
      margin: 0 0 10px;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 20px;
      line-height: 1.25;
      color: var(--color-primary-dark);
    }
    .theme-card p {
      margin: 0;
      font-size: 0.98rem;
      color: var(--color-dark);
    }
    .callout {
      max-width: 860px;
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: start;
      gap: 18px;
      margin: 28px 0;
      padding: 22px 24px;
      border-radius: 8px;
      box-shadow: var(--shadow-card);
    }
    .callout-light {
      max-width: 860px;
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: start;
      gap: 18px;
      margin: 28px 0;
      padding: 22px 24px;
      border-radius: 8px;
      box-shadow: var(--shadow-card);
    }
    .callout__badge {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 1rem;
      font-weight: 700;
      color: white;
      background: var(--color-primary-dark);
    }
    .callout h4 {
      margin: 0 0 8px;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.4rem;
      line-height: 1.2;
      color: var(--color-primary-dark);
    }
    .callout-light h4 {
      margin: 0 0 8px;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.4rem;
      line-height: 1.2;
      color: var(--color-warm);
    }
    .callout p {
      margin: 0;
      max-width: none;
    }
    .callout--insight {
      background: var(--color-warm-tint);
      border-left: 6px solid var(--color-highlight);
    }
    .callout--policy {
      background: var(--color-primary-dark);
        color: var(--color-surface);
    }
    .callout--policy__badge {
    display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 1rem;
      font-weight: 700;
      color: white;
      background: var(--color-warm);
    }
    .callout--alert {
      background: var(--color-surface);
      border-left: 6px solid var(--color-alert);
    }
    .callout--alert__badge {
    display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 1rem;
      font-weight: 700;
      color: white;
      background: var(--color-alert);
    }
    .callout--data {
      background: var(--color-primary-tint);
      border-top: 3px solid var(--color-primary);
    }
    .callout--data__badge {
    display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 1rem;
      font-weight: 700;
      color: white;
      background: var(--color-primary);
    }
    .callout--hispanic {
      background: var(--color-surface);
      border-left: 6px solid var(--color-group-hispanic);
    }
    .callout--hispanic__badge {
    display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 1rem;
      font-weight: 700;
      color: white;
      background: var(--color-group-hispanic);
    }
    .callout--asian {
      background: var(--color-surface);
      border-left: 6px solid var(--color-group-asian);
    }
    .callout--asian__badge {
    display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 1rem;
      font-weight: 700;
      color: white;
      background: var(--color-group-asian);
    }

    .report-figure,
    .table-wrap {
      max-width: 860px;
      margin: 28px 0;
      padding: 18px;
      border-radius: 8px;
      background: white;
      border: 1px solid rgba(0, 70, 113, 0.07);
      box-shadow: var(--shadow-card);
    }
    .report-figure img {
      width: 100%;
      border-radius: 6px;
      border: 1px solid rgba(0, 70, 113, 0.06);
      background: var(--color-surface);
    }
    .report-figure figcaption,
    .table-caption,
    .micro-note,
    .footer-note {
      margin-top: 12px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.78rem;
      line-height: 1.55;
      color: var(--color-midgray);
    }
    .table-scroll {
      overflow: auto;
      border-radius: 6px;
      border: 1px solid rgba(0, 70, 113, 0.08);
    }
    table {
      width: 100%;
      min-width: 620px;
      border-collapse: collapse;
      background: white;
      font-size: 0.95rem;
    }
    th, td {
      padding: 12px 14px;
      border-bottom: 1px solid rgba(0, 70, 113, 0.08);
      vertical-align: top;
      text-align: left;
    }
    thead th {
      background: var(--color-primary);
      color: white;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.76rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    tbody tr:nth-child(even) td,
    tbody tr:nth-child(even) th {
      background: rgba(237, 233, 227, 0.42);
    }
    tbody th {
      color: var(--color-primary-dark);
      font-weight: 600;
      min-width: 170px;
    }

    .site-footer {
      background: var(--color-primary-dark);
      color: white;
      padding: 40px 24px;
    }
    .site-footer__inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .site-footer__meta {
      display: grid;
      gap: 8px;
    }
    .site-footer__meta p {
      margin: 0;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 13px;
      line-height: 1.6;
      color: var(--color-muted);
    }
    .site-footer__meta p:last-child {
      font-size: 12px;
      font-style: italic;
      color: rgba(224, 240, 250, 0.7);
    }
    .site-footer__logos {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .site-footer__logos img {
      display: block;
      filter: brightness(0) invert(1);
      opacity: 0.95;
    }
    .site-footer__logos .logo-jbi { width: 120px; }
    .site-footer__logos .logo-crl { width: 120px; }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 520ms ease, transform 520ms ease;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1100px) {
      .hero__inner { grid-template-columns: 1fr; gap: 30px; }
      .hero__aside { margin-left: 0; width: min(100%, 620px); }
      .findings-grid .finding-card { grid-column: span 6; }
      .chapter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

    @media (max-width: 860px) {
      .site-header__inner { flex-direction: column; align-items: flex-start; }
      .primary-nav { justify-content: flex-start; }
      .about-grid,
      .download-grid,
      .theme-cards { grid-template-columns: 1fr; }
      .about-panel { padding-right: 0; }
      .about-panel + .about-panel {
        border-left: 0;
        border-top: 1px solid var(--color-muted);
        padding-left: 0;
        padding-top: 28px;
      }
      .findings-grid .finding-card { grid-column: span 12; }
      .chapter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .site-footer__inner { flex-direction: column; align-items: flex-start; }
      .site-footer__logos { justify-content: flex-start; }
    }

    @media (max-width: 640px) {
      .hero { min-height: auto; }
      .hero::before { right: -8%; top: 10%; }
      .hero__inner,
      .page-section,
      .report-section { padding-left: 18px; padding-right: 18px; }
      .hero__inner { padding-top: 92px; }
      .section-title,
      .section-head h2 { font-size: 2rem; }
      .hero__subhead { font-size: 1.15rem; }
      .chart-card,
      .download-card,
      .finding-card,
      .theme-card,
      .callout,
      .report-figure,
      .table-wrap { padding: 18px; }
      .bar-row__meta {
        flex-direction: column;
        align-items: flex-start;
      }
      .chapter-grid { grid-template-columns: 1fr; }
      .hero__quickstats { grid-template-columns: 1fr; }
      .finding-card__comparison { grid-template-columns: 1fr; }
      .callout { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .reveal,
      .reveal.is-visible {
        opacity: 1 !important;
        transform: none !important;
      }
      .bar-fill { width: calc(var(--value) * 1%) !important; }
    }
      .section-endcap {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 22, 36, 0.08);
}
      
      /* ----------------------------Start Back to Top CSS---------------------------- */
/*
.back-to-top {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-primary, var(--navy, #00457d));
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 22, 36, 0.08);
  box-shadow: 0 12px 28px rgba(0, 30, 61, 0.08);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(255, 209, 1, 0.20),
      rgba(2, 145, 190, 0.10) 55%,
      rgba(255, 255, 255, 0.92)
    );
  z-index: -2;
}

.back-to-top::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 34%;
  transform: translateX(-180%) skewX(-24deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: -1;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform 0.25s ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 30, 61, 0.12);
  color: var(--color-primary-dark, #022f54);
}

.back-to-top:hover::after {
  transform: translateX(420%) skewX(-24deg);
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(255, 209, 1, 0.6);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top,
  .back-to-top svg,
  .back-to-top::after {
    transition: none;
  }

  .back-to-top:hover {
    transform: none;
  }

  .back-to-top:hover svg {
    transform: none;
  }

  .back-to-top::after {
    display: none;
  }
} */
      
      .back-to-top-fab {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 1200;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--color-primary, #00457d);
  border: 2px solid #fff;
  box-shadow: 0 8px 24px rgba(0, 30, 61, 0.32);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.back-to-top-fab::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: transparent;
  z-index: -2;
}

.back-to-top-fab::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 34%;
  transform: translateX(-180%) skewX(-24deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: -1;
}

.back-to-top-fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top-fab:hover {
  background: var(--color-primary-dark, #003050);
  box-shadow: 0 12px 30px rgba(0, 30, 61, 0.4);
}

.back-to-top-fab:hover::after {
  transform: translateX(420%) skewX(-24deg);
}

.back-to-top-fab svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.back-to-top-fab:focus-visible {
  outline: 3px solid #ffd101;
  outline-offset: 3px;
}

.back-to-top-fab:active {
  background: #00243d;
}

@media (max-width: 640px) {
  .back-to-top-fab {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 14px;
  }

  .back-to-top-fab__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top-fab,
  .back-to-top-fab::after {
    transition: none;
  }
}
      
      /* ----------------------------End Back to Top CSS---------------------------- */
      /* ----------------------------Start Sticky Report Nav---------------------------- */
      .full-report-layout__inner {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.full-report-layout__content {
  min-width: 0;
}

.full-report-layout__content > .section,
.full-report-layout__content > .page-section {
  padding-left: 0;
  padding-right: 0;
}

.full-report-layout__content > .section .section__inner,
.full-report-layout__content > .section .section-wrap,
.full-report-layout__content > .page-section .section__inner,
.full-report-layout__content > .page-section .section-wrap {
  max-width: none;
  margin: 0;
}

.full-report-layout__content > section[id] {
  scroll-margin-top: 120px;
}

.chapter-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  max-height: calc(100vh - 120px);
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  z-index: 20;
}

.chapter-sidebar__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--color-primary, var(--navy, #00457d));
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.chapter-sidebar__title {
  margin: 0 0 8px;
  font-family: var(--display-font, var(--display, inherit));
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-ink, var(--ink, #081624));
}

.chapter-sidebar__intro {
  margin: 0 0 14px;
  font-size: 0.94rem;
  color: var(--color-text-muted, var(--muted, #65758a));
}

.chapter-sidebar__nav {
  display: grid;
  gap: 6px;
}

.chapter-sidebar__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1b3045;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.chapter-sidebar__link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 69, 125, 0.18);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.chapter-sidebar__link:hover {
  outline: 1px solid rgba(0, 69, 125, 0.5);
  outline-offset: 2px;

  transform: translateX(3px);
}

.chapter-sidebar__link.is-active {
  color: var(--color-primary, var(--navy, #00457d));
  background: rgba(0, 69, 125, 0.05);
}

.chapter-sidebar__link.is-active::before {
  background: var(--color-accent, var(--navy, #00457d));
  transform: scale(1.05);
}

.chapter-sidebar__link:focus-visible {
  outline: 1px solid rgba(0, 69, 125, 0.5);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .full-report-layout__inner {
    grid-template-columns: 1fr;
  }

  .chapter-sidebar {
    position: static;
    top: auto;
  }

  .chapter-sidebar__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .chapter-sidebar__nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chapter-sidebar__link,
  .chapter-sidebar__link::before {
    transition: none;
  }

  .chapter-sidebar__link:hover {
    transform: none;
  }
}
/* ----------------------------End Sticky Report Nav---------------------------- */
      
      /* -------------------------- charts & wrappers---------------------*/
.report-chart-block {
  margin-top: clamp(44px, 6vw, 72px);
    margin-bottom: 16px;
}

.report-chart-block + .report-chart-block {
  margin-top: clamp(64px, 8vw, 96px);
}

.report-chart-title {
  margin: 0 0 12px;
  color: inherit;
  font: inherit;
}

.report-chart-subtitle {
  max-width: 72ch;
  margin: 0 0 24px;
  color: inherit;
  opacity: 0.82;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 18px;
}

.chart-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--chart-ink);
}

.chart-legend__swatch {
  width: 24px;
  height: 24px;
  border-radius: 0px;
  flex: 0 0 24px;
}

/* reveal on scroll */
.chart-reveal {
  opacity: 0;
  transform: translateY(var(--chart-reveal-distance));
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.chart-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* split chart grid */
.split-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

@media (max-width: 880px) {
  .split-chart-grid {
    grid-template-columns: 1fr;
  }
}

.chart-card {
  position: relative;
  padding: 22px 20px 18px;
  border: 1px solid var(--chart-card-border);
  border-radius: var(--chart-radius);
  background: var(--chart-card-bg);
  box-shadow: var(--chart-shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.chart-card__title {
  margin: 0 0 16px;
font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chart-ink);
}

/* common vertical chart */
.vertical-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  min-height: 420px;
  padding-top: 12px;
}

.vertical-chart__item {
  display: grid;
  gap: 10px;
}

.vertical-chart__plot {
  position: relative;
  height: 420px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.vertical-chart__track {
  position: relative;
  width: min(100%, 92px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(to top, rgba(8, 22, 36, 0.04), rgba(8, 22, 36, 0.01));
}

.vertical-chart__track::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to top, var(--chart-grid-line) 1px, transparent 1px);
  background-size: 100% 25%;
  pointer-events: none;
}

.vertical-chart__segment {
  --to: 0%;
  position: relative;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: height 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.chart-is-animated .vertical-chart__segment {
  height: var(--to);
}

.vertical-chart__segment span {
  padding: 4px 5px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

/* .vertical-chart__segment.is-small span {
  display: none;
}  */

.vertical-chart__group {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--chart-ink);
}

.vertical-chart__total {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--chart-muted);
    display: none;
}

/* polished sheet 5 bars */
.metric-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  min-height: 340px;
  padding-top: 8px;
}

.metric-chart__item {
  display: grid;
  gap: 12px;
  align-items: end;
}

.metric-chart__value {
  text-align: center;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1;
  color: var(--chart-ink);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: var(--delay, 0ms);
}

.chart-is-animated .metric-chart__value {
  opacity: 1;
  transform: translateY(0);
}

.metric-chart__bar-wrap {
  position: relative;
  height: 260px;
  display: flex;
  align-items: end;
  justify-content: center;
}

 .metric-chart__bar-track {
  position: relative;
  width: min(100%, 96px);
  height: 130%;
  border-radius: 0;
  overflow: hidden;
  /* background:
    linear-gradient(to top, rgba(8, 22, 36, 0.05), rgba(8, 22, 36, 0.01)); */
}

/* .metric-chart__bar-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 100% 20%;
  pointer-events: none;
} */

.metric-chart__bar {
  --to: 0%;
  position: absolute;
  inset: auto 0 0;
  height: 0;
  border-radius: 0;
  transition: height 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.chart-is-animated .metric-chart__bar {
  height: var(--to);
}

.metric-chart__label {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--chart-ink);
}

/* sheet 7 wide grouped horizontal chart */
.wide-chart-shell {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.wide-chart-shell::-webkit-scrollbar {
  height: 10px;
}

.wide-chart-shell::-webkit-scrollbar-thumb {
  background: rgba(8, 22, 36, 0);
  border-radius: 999px;
}

.advice-chart {
  min-width: 800px;
  display: grid;
  grid-template-columns: 260px repeat(5, minmax(100px, 1fr));
  gap: 0;
  align-items: start;
  border: 1px solid var(--chart-card-border);
  border-radius: var(--chart-radius);
  background: var(--chart-card-bg);
  box-shadow: var(--chart-shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.advice-chart__labels,
.advice-chart__series {
  padding: 18px 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.advice-chart__labels {
  border-right: 1px solid rgba(8, 22, 36, 0.08);
}

.advice-chart__series + .advice-chart__series {
  border-left: 1px solid rgba(8, 22, 36, 0.08);
}
      
.advice-chart__row {
  height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(8, 22, 36, 0.06);
}

.advice-chart__labels .advice-chart__row:last-child,
.advice-chart__series .advice-chart__row:last-child {
  border-bottom: 0;
}

.advice-chart__series-title {
  margin: 0 0 14px;
  padding-bottom: 10px;
font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chart-ink);
  border-bottom: 1px solid rgba(8, 22, 36, 0.08);
}

.advice-chart__labels .advice-chart__series-title {
  opacity: 0;
}

.advice-chart__row {
  height: 38px;
  display: flex;
  align-items: center;
}

.advice-chart__label {
  font-size: 0.88rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--chart-ink);
}

.advice-chart__bar-rail {
  position: relative;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(8, 22, 36, 0.07);
  overflow: hidden;
}

.advice-chart__bar {
  --to: 0%;
  width: 0;
  height: 100%;
  border-radius: inherit;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.chart-is-animated .advice-chart__bar {
  width: var(--to);
}

.advice-chart__bar-value {
  min-width: 24px;
  margin-left: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--chart-muted);
  text-align: right;
}

.advice-chart__row--plot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

@media (max-width: 880px) {
  .vertical-chart,
  .metric-chart {
    gap: 12px;
  }

  .vertical-chart__track,
  .metric-chart__bar-track {
    width: min(100%, 82px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .chart-reveal,
  .vertical-chart__segment,
  .metric-chart__bar,
  .metric-chart__value,
  .advice-chart__bar {
    transition: none !important;
  }

  .chart-reveal {
    opacity: 1;
    transform: none;
  }
}

.chart-not-100 { text-align: center; }

/* Westside report styles */
.westside-page {
  --westside-sky: #8ec5ee;
  --westside-blue: #17678a;
  --westside-ink: #0e3146;
  --westside-header-height: 76px;
}

.westside-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: white;
  background:
    radial-gradient(circle at 84% 18%, rgba(142, 197, 238, 0.12), transparent 31%),
    var(--color-dark);
}

.westside-hero::after {
  content: 'WESTSIDE';
  position: absolute;
  right: -0.04em;
  bottom: -0.18em;
  font: 800 clamp(7rem, 18vw, 17rem)/0.8 'Bricolage Grotesque', sans-serif;
  color: rgba(142, 197, 238, 0.1);
  pointer-events: none;
}

.westside-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 82px;
}

.westside-hero__eyebrow,
.westside-hero__authors {
  font-family: 'IBM Plex Mono', monospace;
}

.westside-hero__eyebrow {
  margin: 0 0 18px;
  color: var(--color-warm);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.westside-hero h1 {
  max-width: 11ch;
  margin: 0;
  font: 800 clamp(3.9rem, 8vw, 7rem)/0.92 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.055em;
}

.westside-hero h1 span { color: var(--westside-sky); }

.westside-hero__subhead {
  max-width: 760px;
  margin: 28px 0 30px;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.westside-hero__authors {
  display: grid;
  gap: 4px;
  max-width: 760px;
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
}

.westside-report .report-section { padding-inline: 0; }
.westside-report .report-section {
  padding-block: clamp(56px, 7vw, 92px);
  scroll-margin-top: 110px;
}

.westside-report > .report-section:last-of-type {
  border-bottom: 0;
}

.westside-report .report-section:first-child { padding-top: 32px; }
.westside-report .report-section--part { border-top: 0; }
.westside-report .section-head { max-width: 100%; margin-bottom: 34px; }
.westside-report .section-head h2 { max-width: none; }
.westside-report #key-findings .section-head h2 {
  max-width: 12ch;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}
.westside-report .report-section--part .section-head h2 { font-size: clamp(2.25rem, 4.7vw, 4.2rem); }
.westside-report .report-section--front .section-head { display: block; }

@media (max-width: 640px) {
  .westside-report #key-findings .section-head h2 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: clamp(2.1rem, 10.5vw, 4rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }
}

.westside-report .section-kicker,
.westside-page .chapter-sidebar__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0;
  border-radius: 0;
  color: var(--color-primary-2);
  background: transparent;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.report-context {
  position: sticky;
  top: var(--westside-header-height);
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  height: 58px;
  min-height: 58px;
  margin: 0 0 -58px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 8px 8px;
  color: white;
  background: rgba(26, 32, 51, 0.96);
  box-shadow: 0 10px 26px rgba(0, 30, 61, 0.16);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
}

.report-context.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .report-context { transition: none; }
}

.report-context__eyebrow {
  color: var(--color-warm);
  font: 700 0.67rem/1.2 'IBM Plex Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-context__eyebrow:empty,
.chapter-sidebar__mobile-kicker:empty {
  display: none;
}

.report-context strong {
  min-width: 0;
  overflow: hidden;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.96rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-flow {
  max-width: 800px;
  color: #1b2c38;
}

.report-flow::after {
  content: "";
  display: block;
  clear: both;
}

.report-flow > p {
  margin: 0 0 1.05rem;
  font-size: 1.02rem;
  line-height: 1.78;
}

.report-flow strong { color: #102d40; }
.report-flow a { color: var(--color-link); }
.report-flow > ul,
.report-flow > ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.45rem;
}

.report-flow li { margin: 0.42rem 0; }
.report-flow li > p { margin: 0; }

.frontmatter-heading {
  margin: 52px 0 18px;
  padding-top: 0;
  border-top: 0;
  font: 800 clamp(1.5rem, 3vw, 2.25rem)/1.1 'Bricolage Grotesque', sans-serif;
  color: var(--color-primary-dark);
}

.frontmatter-heading:first-child { margin-top: 0; }

.crl-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 24px 0;
}

.crl-contact-grid address {
  padding: 20px;
  border: 1px solid rgba(0, 70, 113, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.65;
}

.report-copyright {
  margin-top: 30px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 70, 113, 0.18);
  font-size: 0.9rem !important;
}

@media (max-width: 760px) {
  .crl-contact-grid { grid-template-columns: 1fr; }
}

.source-toc {
  display: grid;
  gap: 7px;
  padding: 22px;
  border: 1px solid rgba(0, 70, 113, 0.12);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-card);
}

.source-toc p { margin: 0; }
.source-toc a { display: block; text-decoration: none; }

.report-flow .subhead {
  max-width: 800px;
  margin: 42px 0 18px;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
}

.westside-report .report-flow h3 {
  max-width: 800px;
  margin: 42px 0 18px;
  padding-top: 0;
  border-top: 0;
  color: var(--color-primary-dark);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.westside-report .report-flow h3 strong {
  color: inherit;
  font-weight: inherit;
}

.westside-report .report-flow h4 {
  max-width: 800px;
  margin: 30px 0 12px;
  padding: 0;
  border: 0;
  color: var(--color-primary-dark);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

.westside-report .report-flow h4 strong {
  color: inherit;
  font-weight: inherit;
}

.report-quote {
  margin: 30px 0 !important;
  padding: 21px 24px 21px 30px;
  border-left: 6px solid var(--westside-sky);
  background: linear-gradient(90deg, rgba(142, 197, 238, 0.16), rgba(142, 197, 238, 0.03));
  color: var(--westside-blue);
  font-size: 1.17rem !important;
  font-style: italic;
  line-height: 1.65 !important;
}

.report-caption {
  margin: 34px 0 8px !important;
  font: 700 0.78rem/1.5 'IBM Plex Mono', monospace !important;
  letter-spacing: 0.035em;
  color: var(--color-primary) !important;
  text-align: left;
}

.report-table-scroll {
  position: relative;
  max-width: 100%;
  margin: 8px 0 30px;
  overflow: auto;
  border: 1px solid rgba(14, 49, 70, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(90deg, white 30%, rgba(255,255,255,0)) left center / 36px 100% no-repeat local,
    linear-gradient(270deg, white 30%, rgba(255,255,255,0)) right center / 36px 100% no-repeat local,
    linear-gradient(90deg, rgba(14,49,70,0.14), transparent) left center / 12px 100% no-repeat scroll,
    linear-gradient(270deg, rgba(14,49,70,0.14), transparent) right center / 12px 100% no-repeat scroll;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

.report-table-scroll:focus-visible {
  outline: 3px solid var(--color-primary-2);
  outline-offset: 3px;
}

.report-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  background: white;
  font-size: 0.82rem;
  line-height: 1.42;
  box-shadow: none;
}

.report-table p { margin: 0; font-size: inherit; line-height: inherit; }
.report-table th,
.report-table td {
  min-width: 74px;
  padding: 9px 10px;
  border: 1px solid rgba(14, 49, 70, 0.13);
  text-align: left;
  vertical-align: middle;
}

.report-table th {
  position: sticky;
  top: 0;
  z-index: 3;
  color: #fff !important;
  background: var(--color-dark) !important;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.report-table th *,
.report-table th p,
.report-table th strong {
  color: inherit !important;
}

.report-table tr:nth-child(even) td { background: rgba(224, 240, 250, 0.36); }

.report-table tbody .report-table__group {
  position: static;
  color: var(--color-primary-dark) !important;
  background: var(--color-primary-tint) !important;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.report-table--focus-groups th,
.report-table--focus-groups td { min-width: 150px; }

.report-table--focus-groups th:first-child,
.report-table--focus-groups td:first-child { min-width: 190px; }

.recommendation-box {
  margin: 32px 0;
  padding: 22px 24px;
  border: 0;
  border-left: 7px solid var(--color-warm);
  background: #f7f2e6;
  box-shadow: 0 14px 34px rgba(0, 48, 80, 0.08);
}

.recommendation-box > :first-child { margin-top: 0; }
.recommendation-box > :last-child { margin-bottom: 0; }

.report-figure {
  margin: 18px 0 42px !important;
  padding: 24px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-card);
}

.report-figure img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.westside-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 36px;
  padding: 1px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.westside-stat {
  display: grid;
  align-content: center;
  min-height: 132px;
  padding: 22px;
  color: white;
  background: var(--westside-blue);
}

.westside-stat strong {
  color: white;
  font: 800 clamp(2rem, 5vw, 3.5rem)/1 'Bricolage Grotesque', sans-serif;
}

.westside-stat span { margin-top: 8px; font-size: 0.88rem; line-height: 1.35; }
.westside-stats__source {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 14px;
  color: #244052;
  background: var(--color-primary-tint);
  font: 0.7rem/1.45 'IBM Plex Mono', monospace;
}

.report-data-callout {
  float: right;
  clear: right;
  width: 40%;
  box-sizing: border-box;
  margin: 4px 0 24px 28px;
  padding: 16px;
  border: 1px solid rgba(0, 70, 113, 0.16);
  border-left: 7px solid var(--color-primary-2);
  border-radius: 8px;
  background: #EBF4FB;
  box-shadow: 0 14px 34px rgba(0, 48, 80, 0.1);
  break-inside: avoid;
}

.report-data-callout__title {
  margin: 0 0 12px;
  color: var(--color-primary-dark);
  font: 800 1rem/1.2 'Bricolage Grotesque', sans-serif;
}

.report-data-callout__summary {
  margin: 0;
  color: var(--color-primary-dark);
  font: 800 0.94rem/1.45 'Bricolage Grotesque', sans-serif;
}

.report-data-callout__list {
  margin: 0;
  padding-left: 1.1rem;
  color: #24313a;
  font-size: 0.84rem;
  line-height: 1.4;
}

.report-data-callout__list li {
  margin: 0.45rem 0;
}

.report-data-callout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.report-data-callout__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  padding-top: 0;
  border-top: 0;
  color: #24313a;
  font-size: 0.82rem;
  line-height: 1.35;
}

.report-data-callout__item strong {
  color: var(--color-primary-dark);
  font: 800 1.3rem/1 'Bricolage Grotesque', sans-serif;
}

.endnote-list {
  margin: 0;
  padding-left: 2rem;
}

.endnote-list li {
  position: relative;
  margin: 0 0 1.15rem;
  padding-left: 0.4rem;
  scroll-margin-top: 120px;
  font-size: 0.86rem;
  line-height: 1.62;
}

.endnote-list p { display: inline; margin: 0; }
.endnote-backlink { margin-left: 8px; text-decoration: none; }

.chapter-sidebar__link--sub {
  margin-left: 10px;
  padding-block: 6px;
  font-size: 0.84rem;
  font-weight: 600;
}

.chapter-sidebar__subnav {
  counter-reset: chapter-subitem;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chapter-sidebar__subnav > li {
  counter-increment: chapter-subitem;
}

.chapter-sidebar__subnav .chapter-sidebar__link::before {
  content: counter(chapter-subitem) ".";
  flex: 0 0 14px;
  width: 14px;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  color: var(--color-primary, var(--navy, #00457d));
  background: none;
  box-shadow: none;
  font: 700 0.68rem/1 'IBM Plex Mono', monospace;
  white-space: nowrap;
  text-align: center;
  transform: none;
}

.chapter-sidebar__link::before {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
}

@media (min-width: 1081px) {
  .westside-page .full-report-layout__inner {
    grid-template-columns: minmax(340px, 380px) minmax(0, 1fr);
  }

  .westside-report .report-section:first-of-type {
    padding-top: 20px;
  }
}

.westside-page .site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  min-height: var(--westside-header-height);
  padding-block: 10px;
}

.westside-page .brand img { width: 172px; }

.report-header-title {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  column-gap: 0.34em;
  color: var(--color-primary-dark);
  font: 700 clamp(1.4rem, 2.15vw, 1.9rem)/1 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  text-decoration: none;
  white-space: normal;
}

.report-header-title__label {
  color: var(--color-primary-2);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.report-header-title__label--mobile { display: none; }

.report-header-title__name {
  min-width: 0;
  white-space: normal;
}

.report-header-title strong {
  color: var(--color-primary-2);
  font: inherit;
  font-weight: 800;
}

.header-downloads {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 0;
  border-radius: 5px;
  color: white;
  background: var(--color-primary-dark);
  font: 700 0.68rem/1.2 'IBM Plex Mono', monospace;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.btn strong { color: var(--color-warm); }

.report-download__label--mobile { display: none; }

.report-download__icon {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  min-width: 20px;
  height: 20px;
  max-width: none;
  aspect-ratio: 1;
  overflow: visible;
  fill: none;
  stroke: var(--color-warm);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.report-download__pdf-glyph {
  stroke-width: 1.35;
}

.btn:hover {
  color: white;
  background: var(--color-primary);
  transform: translateY(-1px);
}

.btn.report-download--forthcoming,
.btn.report-download--forthcoming:hover {
  color: rgba(255, 255, 255, 0.76);
  background: var(--color-primary-dark);
  opacity: 0.78;
  transform: none;
  cursor: not-allowed;
}

.report-header-title:focus-visible,
.btn:focus-visible,
.chapter-sidebar__mobile-toggle:focus-visible {
  outline: 3px solid var(--color-primary-2);
  outline-offset: 3px;
}

.chapter-sidebar__mobile-toggle { display: none; }

.westside-page .back-to-top-fab {
  display: grid;
  place-items: center;
  color: white;
  font: 700 1.25rem/1 'IBM Plex Mono', monospace;
}

.westside-page .site-footer__meta p:last-child {
  color: var(--color-muted);
  font-size: 13px;
  font-style: normal;
}

/* Compact only the denser report header before the content layout changes. */
@media (max-width: 1000px) {
  .westside-page {
    --westside-header-height: 68px;
  }
  .westside-page .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    min-height: var(--westside-header-height);
    padding: 8px 16px;
  }
  .westside-page .brand img { width: 118px; max-width: none; }
  .report-header-title {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 2px;
    overflow: hidden;
    font-size: 0.92rem;
    line-height: 1;
    white-space: normal;
  }
  .report-header-title__label--desktop { display: none; }
  .report-header-title__label--mobile {
    display: inline;
    font: 700 0.7rem/1 'IBM Plex Mono', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .report-header-title__name {
    font-size: 20px;
    line-height: 1;
    white-space: normal;
  }
  .btn { padding: 9px 10px; }
  .report-download__label--desktop { display: none; }
  .report-download__label--mobile { display: inline; }
}

@media (max-width: 760px) {
  .westside-hero__inner { width: min(100% - 32px, 1180px); padding: 76px 0 56px; }
  .report-flow > p { font-size: 0.98rem; }
  .westside-stats { grid-template-columns: 1fr; }
  .westside-stats__source { grid-column: auto; }
  .report-data-callout {
    float: none;
    clear: both;
    width: 100%;
    margin: 24px 0 30px;
  }
  .report-table { min-width: 560px; }
  .report-table--wide { min-width: 760px; }
  .report-table--wide tbody tr > :first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #fff;
    box-shadow: 1px 0 0 rgba(14, 49, 70, 0.13);
  }
  .report-table--wide tbody tr:nth-child(even) > :first-child {
    background: #f3f6f7;
  }
  .report-table--wide thead tr > :first-child {
    left: 0;
    z-index: 5;
  }
  .recommendation-box { min-width: 0; }
  .report-figure { padding: 12px; }
  .report-context {
    top: calc(var(--westside-header-height) + var(--westside-mobile-nav-height));
    grid-template-columns: 1fr;
    gap: 2px;
    min-height: 64px;
    padding: 9px 13px;
  }
  .report-context strong { font-size: 0.88rem; }
}

@media (max-width: 1080px) {
  .westside-page { --westside-mobile-nav-height: 72px; }
  .chapter-sidebar {
    position: sticky;
    top: calc(var(--westside-header-height) + 4px);
    z-index: 60;
    max-height: calc(100vh - var(--westside-header-height) - 8px);
    margin: 0;
    padding: 0;
    overflow-y: auto;
    border: 1px solid rgba(0, 70, 113, 0.14);
    border-radius: 0 0 7px 7px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 9px 24px rgba(0, 30, 61, 0.12);
    backdrop-filter: blur(12px);
  }
  .westside-page .chapter-sidebar__eyebrow { display: none; }
  .chapter-sidebar__mobile-toggle {
    width: 100%;
    min-height: var(--westside-mobile-nav-height);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border: 0;
    color: var(--color-primary-dark);
    background: transparent;
    text-align: left;
    cursor: pointer;
  }
  .chapter-sidebar__mobile-context {
    min-width: 0;
    display: grid;
    gap: 3px;
  }
  .chapter-sidebar__mobile-kicker {
    color: var(--color-primary-2);
    font: 700 0.65rem/1.2 'IBM Plex Mono', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .chapter-sidebar__mobile-toggle strong {
    min-width: 0;
    display: -webkit-box;
    overflow: hidden;
    color: var(--color-primary-dark);
    font: 700 0.9rem/1.18 'Bricolage Grotesque', sans-serif;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .chapter-sidebar__mobile-icon {
    color: var(--color-primary-2);
    font: 700 1.2rem/1 'IBM Plex Mono', monospace;
  }
  .chapter-sidebar:not(.is-open) .chapter-sidebar__nav { display: none; }
  .chapter-sidebar.is-open .chapter-sidebar__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 8px 12px 16px;
    border-top: 1px solid rgba(0, 70, 113, 0.1);
  }
  .chapter-sidebar__link { padding-block: 6px; font-size: 0.8rem; }
  .chapter-sidebar__subnav {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .chapter-sidebar__link--sub { margin-left: 10px; font-size: 0.76rem; }
  .report-context { display: none; }
  .westside-report .report-section { scroll-margin-top: calc(var(--westside-header-height) + var(--westside-mobile-nav-height) + 18px); }
}

@media (max-width: 560px) {
  .chapter-sidebar.is-open .chapter-sidebar__nav { grid-template-columns: 1fr; }
  .chapter-sidebar__subnav { grid-template-columns: 1fr; }
}

/* Give only the report header title its own row on smaller screens. */
@media (max-width: 640px) {
  .westside-page {
    --westside-header-height: 94px;
  }

  .westside-page .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    row-gap: 6px;
  }

  .westside-page .site-header__inner > .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .westside-page .site-header .header-downloads {
    grid-column: 3;
    grid-row: 1;
  }

  .westside-page .site-header .report-header-title {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .header-downloads { gap: 4px; }
  .btn {
    gap: 4px;
    padding: 7px 6px;
    font-size: 0.62rem;
  }
  .report-download__icon {
    flex-basis: 18px;
    width: 18px;
    min-width: 18px;
    height: 18px;
  }
}

/* Print and PDF styles */
@page {
  size: Letter;
  margin: 0.68in 0.62in 0.72in;

  @bottom-left {
    content: "Credit for the Westside";
    color: #52616c;
    font: 400 7.5pt/1.2 "IBM Plex Mono", monospace;
    letter-spacing: 0.04em;
  }

  @bottom-center {
    content: "Page " counter(page);
    color: #52616c;
    font: 700 7.5pt/1.2 "IBM Plex Mono", monospace;
  }
}

@page:first {
  margin: 0;

  @bottom-left { content: none; }
  @bottom-center { content: none; }
}

@media print {
  html,
  body {
    width: 100%;
    background: #fff !important;
  }

  html { font-size: 10pt; }

  body {
    color: #1a2033;
    font-size: 10pt;
    line-height: 1.52;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  a {
    color: #004671;
    text-decoration-thickness: 0.06em;
    overflow-wrap: anywhere;
  }

  .site-progress,
  .site-header,
  .report-context,
  .chapter-sidebar__mobile-toggle,
  .back-to-top-fab,
  .endnote-backlink {
    display: none !important;
  }

  .westside-hero {
    display: grid;
    align-items: end;
    width: 8.5in;
    height: 11in;
    color: #fff !important;
    background: #1a2033 !important;
    break-after: page;
  }

  .westside-hero::after {
    right: -0.02em;
    bottom: -0.1em;
    color: rgba(142, 197, 238, 0.12);
    font-size: 2.05in;
  }

  .westside-hero__inner {
    width: auto;
    margin: 0;
    padding: 0.85in 0.78in 0.9in;
  }

  .westside-hero__eyebrow {
    margin-bottom: 0.24in;
    color: #e8c87a !important;
    font-size: 9pt;
  }

  .westside-hero h1 {
    max-width: 6.2in;
    color: #fff !important;
    font-size: 55pt;
    line-height: 0.93;
  }

  .westside-hero h1 span { color: #8ec5ee !important; }

  .westside-hero__subhead {
    max-width: 6.25in;
    margin: 0.32in 0 0.3in;
    color: #fff !important;
    font-size: 18pt;
    line-height: 1.25;
  }

  .westside-hero__authors {
    color: #fff !important;
    font-size: 8.5pt;
  }

  .page-section.full-report-layout,
  .full-report-layout__inner,
  .full-report-layout__content,
  .westside-report,
  .westside-report .section__inner {
    display: block;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .chapter-sidebar {
    position: static;
    display: block;
    max-height: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    scrollbar-gutter: auto;
    break-after: page;
  }

  .westside-page .chapter-sidebar__eyebrow {
    display: block;
    margin: 0 0 0.28in;
    color: #17678a;
    font-size: 9pt;
  }

  .chapter-sidebar__eyebrow::after {
    content: "\A Report contents";
    white-space: pre;
    color: #1a2033;
    font: 800 30pt/1.05 "Bricolage Grotesque", sans-serif;
    letter-spacing: -0.025em;
    text-transform: none;
  }

  .chapter-sidebar__nav {
    display: block !important;
    columns: 2;
    column-gap: 0.42in;
    padding-top: 0.08in;
    border-top: 2px solid #1a2033;
  }

  .chapter-sidebar__link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    padding: 8px 4px;
    border-bottom: 1px solid #d8e0e5;
    border-radius: 0;
    color: #1a2033;
    font-size: 10pt;
    line-height: 1.3;
    break-inside: avoid;
  }

  .chapter-sidebar__link--sub {
    padding-left: 18px;
    font-size: 9pt;
    font-weight: 600;
  }

  .chapter-sidebar__link::before {
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    margin-top: 0.32em;
    background: #8ec5ee;
  }

  .westside-report .report-section {
    padding: 0;
    background: #fff !important;
    break-before: page;
  }

  .westside-report .report-section--front { break-before: page; }

  .westside-report .report-section--front .section-head {
    display: block;
  }

  .westside-report .section-head {
    margin: 0 0 0.28in;
    padding-bottom: 0.16in;
    border-bottom: 2px solid #1a2033;
  }

  .westside-report .section-kicker {
    display: block;
    margin-bottom: 0.08in;
    color: #17678a !important;
    font-size: 8pt;
  }

  .westside-report .section-head h2,
  .westside-report .report-section--part .section-head h2 {
    margin: 0;
    color: #1a2033 !important;
    font-size: 27pt;
    line-height: 1.05;
  }

  .report-flow > p,
  .report-flow > ul,
  .report-flow > ol {
    orphans: 3;
    widows: 3;
  }

  .report-flow h3,
  .report-flow h4,
  .report-flow .subhead,
  .frontmatter-heading,
  .report-caption {
    break-after: avoid;
  }

  .report-flow h3,
  .report-flow .subhead {
    margin-top: 0.28in;
    margin-bottom: 0.11in;
    color: #1a2033;
    font-size: 16pt;
    line-height: 1.15;
  }

  .report-flow h4 {
    margin-top: 0.2in;
    margin-bottom: 0.08in;
    color: #1a2033;
    font-size: 12pt;
    line-height: 1.2;
  }

  .report-quote,
  .recommendation-box,
  .westside-stats,
  .report-figure {
    break-inside: avoid;
    box-shadow: none !important;
  }

  .report-quote {
    margin: 0.2in 0 !important;
    padding: 0.14in 0.18in;
    border-left-width: 4px;
    color: #174f69 !important;
    font-size: 10.5pt !important;
  }

  .recommendation-box {
    margin: 0.22in 0;
    padding: 0.17in 0.2in;
    border-left-width: 5px;
    background: #f7f2e6 !important;
  }

  .westside-stats {
    grid-template-columns: repeat(2, 1fr);
    margin: 0.2in 0;
  }

  .westside-stat {
    min-height: 0;
    padding: 0.18in;
    background: #17678a !important;
  }

  .westside-stat strong { font-size: 24pt; }

  .report-figure {
    margin: 0.18in 0 0.28in !important;
    padding: 0.14in;
    border: 1px solid #d8e0e5;
  }

  .report-figure img {
    max-height: 7.2in;
    object-fit: contain;
  }

  .report-caption {
    margin: 0.2in 0 0.07in !important;
    color: #004671 !important;
    font-size: 7.5pt !important;
  }

  .report-table-scroll {
    max-width: none;
    margin: 0 0 0.24in;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: #fff !important;
    break-inside: auto;
  }

  .report-table,
  .report-table--wide {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    font-size: 7pt;
    line-height: 1.25;
  }

  .report-table th,
  .report-table td,
  .report-table--focus-groups th,
  .report-table--focus-groups td,
  .report-table--focus-groups th:first-child,
  .report-table--focus-groups td:first-child {
    min-width: 0;
    padding: 5px 4px;
    overflow-wrap: anywhere;
  }

  .report-table th {
    position: static;
    color: #fff !important;
    background: #1a2033 !important;
    font-size: 6.5pt;
  }

  .report-table tr { break-inside: avoid; }
  .report-table thead { display: table-header-group; }

  .endnote-list {
    padding-left: 0.25in;
    font-size: 8pt;
    line-height: 1.4;
  }

  .endnote-list li { break-inside: avoid; }

  .site-footer {
    margin: 0.32in 0 0;
    padding: 0.55in 0;
    background: #1a2033 !important;
    break-inside: avoid;
  }

  .site-footer__inner {
    display: flex;
    max-width: none;
    margin: 0;
    padding: 0 0.18in;
  }
}
