/* ═══════════════════════════════════════════════════════════
   BUDGET CHALLENGE — EFFECTIVENESS 2026 SKIN STYLES

   Companion to Effectiveness2026.ascx and Effectiveness2026.js.
   Extracted from preview.html on 2026-05-05.
   ═══════════════════════════════════════════════════════════ */

  /* ═══════════════════════════════════════════════════════════
     BUDGET CHALLENGE — EFFECTIVENESS PAGE PREVIEW
     Visual language matches State Standards 2026 + Sponsor 2026.
     Same brand tokens, same .bc-section / .bc-ss-* pattern,
     same hero / stats-band / strip conventions.
     ═══════════════════════════════════════════════════════════ */

  :root {
    --bc-blue: #4070B8;
    --bc-blue-dark: #1A4E8A;
    --bc-green: #70B840;
    --bc-amber: #EC971F;
    --bc-text: rgb(65, 65, 65);
    --bc-body: rgb(114, 113, 113);
    --bc-secondary: rgb(85, 85, 85);
    --bc-border: #CCCCCC;
    --bc-light-bg: #F9F9F9;
    --bc-light-bg-2: #F5F5F5;
    --bc-card-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  }
  * { box-sizing: border-box; }
  body {
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--bc-text);
    background: #FFFFFF;
    line-height: 1.5;
  }
  a { color: var(--bc-blue); text-decoration: none; }
  a:hover { text-decoration: underline; }
  h1, h2, h3, h4, h5 { font-family: 'Ubuntu', sans-serif; font-weight: 500; color: var(--bc-text); }

  .container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }


  /* ─────────────────────────────────────────────────────────
     HERO  (light gray, contained)
     ───────────────────────────────────────────────────────── */
  .bc-ss-hero { background: var(--bc-light-bg); padding: 64px 0 48px; }
  .bc-ss-hero .hero-inner { text-align: center; }
  .bc-ss-hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
    line-height: 1.12;
  }
  .bc-ss-hero h1 .accent { color: var(--bc-blue); }
  .bc-ss-hero .hero-sub {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--bc-secondary);
    max-width: 720px;
    margin: 0 auto 22px;
    line-height: 1.45;
    letter-spacing: -0.2px;
  }
  .bc-ss-hero .hero-sub strong { color: var(--bc-blue); font-weight: 700; }
  .bc-ss-hero .lede {
    font-size: 16px;
    color: var(--bc-body);
    max-width: 720px;
    margin: 8px auto 0;
    font-style: italic;
    line-height: 1.55;
  }
  .bc-ss-hero .lede .anchor-tease {
    font-style: normal;
    font-weight: 700;
  }
  .bc-ss-hero .lede .anchor-tease.literacy   { color: var(--bc-green); }
  .bc-ss-hero .lede .anchor-tease.capability { color: var(--bc-amber); }

  /* ─────────────────────────────────────────────────────────
     STATS BAND  (blue full-width) — one big claim, color-keyed
     to the section anchors below. The two highlighted words drop a
     downward chevron in their color, signaling the visual handoff.
     ───────────────────────────────────────────────────────── */
  .bc-ss-stats {
    background: var(--bc-blue);
    padding: 64px 0 80px;
    position: relative;
    overflow: visible;
  }
  .bc-ss-stats .claim {
    font-family: 'Ubuntu', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0;
    line-height: 1.18;
    letter-spacing: -0.6px;
  }
  .bc-ss-stats .claim-key {
    position: relative;
    display: inline-block;
    padding: 0 6px 8px;
    color: white;
  }
  .bc-ss-stats .claim-key::after {
    content: '';
    position: absolute;
    left: 6px; right: 6px;
    bottom: 0;
    height: 5px;
    border-radius: 3px;
  }
  .bc-ss-stats .claim-key.literacy::after  { background: var(--bc-green); }
  .bc-ss-stats .claim-key.capability::after { background: var(--bc-amber); }
  /* Downward chevron beneath each highlighted word — protrudes into
     the next section to mark the visual link to that section's anchor. */
  .bc-ss-stats .claim-key::before {
    content: '';
    position: absolute;
    left: 50%; bottom: -36px;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
  }
  .bc-ss-stats .claim-key.literacy::before  { border-top: 14px solid var(--bc-green); }
  .bc-ss-stats .claim-key.capability::before { border-top: 14px solid var(--bc-amber); }
  @media (max-width: 760px) {
    .bc-ss-stats .claim { font-size: 30px; }
  }

  /* ─────────────────────────────────────────────────────────
     PART 1 — LITERACY  (white, contained)
     Section opens with a giant colored anchor word that visually
     repeats the highlighted "literacy" from the blue band above.
     ───────────────────────────────────────────────────────── */
  .bc-ss-knowledge { background: white; padding: 72px 0 64px; }
  .section-anchor {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 84px;
    line-height: 0.95;
    letter-spacing: -2.4px;
    margin: 0 0 6px;
    text-align: center;
  }
  .section-anchor.literacy   { color: var(--bc-green); }
  .section-anchor.capability { color: var(--bc-amber); }
  .section-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--bc-text);
    margin: 0 0 30px;
    letter-spacing: -0.2px;
    text-align: center;
  }
  .section-subtitle .part-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--bc-body);
    margin-right: 10px;
    vertical-align: middle;
  }
  .bc-ss-knowledge .sub {
    font-size: 17px;
    color: var(--bc-secondary);
    max-width: 760px;
    margin: 0 0 28px;
  }
  @media (max-width: 760px) {
    .section-anchor { font-size: 56px; letter-spacing: -1.5px; }
    .section-subtitle { font-size: 18px; }
  }
  .bc-ss-knowledge .setup {
    font-size: 16px;
    color: var(--bc-text);
    max-width: 820px;
    margin: 0 0 12px;
    line-height: 1.6;
  }
  .bc-ss-knowledge .setup strong { color: var(--bc-blue-dark); }

  /* ── The vertical bar chart (Jump$tart comparison) ── */
  /* Chart wrap escapes the body's 1140px container so the column headings
     + outcome tags get more breathing room across the full chart band. */
  .knowledge-chart-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .knowledge-chart {
    margin: 36px 0 24px;
    background: var(--bc-light-bg);
    border-radius: 8px;
    padding: 28px 32px 20px;
  }
  /* Y-axis is truncated 40-100% to compress the comparison band — declared in the
     axis label and the methodology line. The 60% pass/fail threshold is drawn
     across as a dashed line so the truncation doesn't hide what's failing.    */
  .vchart {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    /* Bottom row fits column heading + source line + outcome tag (e.g.,
       "Literacy + Capability"). Generous so the colored outcome tag
       reads as a visible part of the label, not a footnote. */
    grid-template-rows: 1fr 96px;
    column-gap: 14px;
    height: 380px;
  }
  .vchart .y-axis {
    position: relative;
    grid-column: 1; grid-row: 1;
  }
  .vchart .y-axis .tick {
    position: absolute;
    right: 8px;
    transform: translateY(50%);
    font-size: 11px;
    color: var(--bc-body);
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  .vchart .plot {
    position: relative;
    grid-column: 2; grid-row: 1;
    border-left: 1px solid var(--bc-border);
    border-bottom: 1px solid var(--bc-border);
  }
  .vchart .gridline {
    position: absolute;
    left: 0; right: 0;
    border-top: 1px dashed rgba(0,0,0,0.06);
    pointer-events: none;
  }
  .vchart .pass-line {
    position: absolute;
    left: 0; right: 0;
    border-top: 2px dashed var(--bc-amber);
    pointer-events: none;
  }
  .vchart .pass-line .pass-label {
    position: absolute;
    left: 8px; top: -22px;
    background: white;
    border: 1px solid var(--bc-amber);
    color: var(--bc-amber);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 3px 9px;
    border-radius: 10px;
    white-space: nowrap;
  }
  .vchart .bars {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    padding: 0 8%;
    gap: 6%;
  }
  .vchart .vbar {
    position: relative;
    border-radius: 8px 8px 0 0;
    transition: height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  /* "No financial education" — the BASELINE bar. White interior with a
     thick gray outline + larger, bolder value label. Treats this column
     as the floor everything else is measured against. */
  .vchart .vbar.no-edu {
    background: white;
    box-shadow: inset 0 0 0 3px #6f6f6f;
  }
  /* "Traditional PF course" — medium-saturation red. Anchors to the same
     #8a3636 used in the "Failing" verdict pill so the failing story is
     consistent. Lighter brick at the top gives visual weight like the
     BC blue bar, in a different palette. Deliberately NOT in BC's
     colors (no blue, green, amber). */
  .vchart .vbar.traditional {
    background: linear-gradient(180deg, #A85454 0%, #8a3636 100%);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.10);
  }
  .vchart .vbar.bc-post {
    background: linear-gradient(180deg, var(--bc-blue) 0%, var(--bc-blue-dark) 100%);
    box-shadow: 0 -2px 0 rgba(255,255,255,0.4) inset, 0 6px 14px rgba(26, 78, 138, 0.18);
  }
  .vchart .vbar .value {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--bc-text);
    white-space: nowrap;
  }
  /* Bigger, bolder label on the baseline bar to underline its weight. */
  .vchart .vbar.no-edu .value { font-size: 28px; font-weight: 800; color: #3a3a3a; }
  /* Traditional matches the other two at 28px — even though that lets the
     value sit on the 60% pass-line, the consistency across columns wins. */
  .vchart .vbar.traditional .value { font-size: 28px; }
  .vchart .vbar.bc-post .value { color: var(--bc-blue-dark); font-size: 28px; }
  .vchart .vbar.no-edu .verdict,
  .vchart .vbar.traditional .verdict,
  .vchart .vbar.bc-post .verdict {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
  }
  /* No-edu has a white interior — verdict pill needs solid red for contrast. */
  .vchart .vbar.no-edu .verdict {
    color: white;
    background: #8a3636;
    border: 1px solid #8a3636;
  }
  .vchart .vbar.traditional .verdict {
    color: #8a3636;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(138, 54, 54, 0.4);
  }
  .vchart .vbar.bc-post .verdict {
    color: var(--bc-green);
    background: white;
    border: 1px solid var(--bc-green);
  }
  .vchart .x-axis {
    grid-column: 2; grid-row: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 8%;
    gap: 6%;
  }
  .vchart .x-axis .x-tick {
    text-align: center;
    font-size: 20px;
    color: var(--bc-text);
    font-weight: 700;
    line-height: 1.2;
    padding-top: 10px;
    letter-spacing: -0.2px;
  }
  .vchart .x-axis .x-tick .src {
    display: block;
    font-size: 11px;
    color: var(--bc-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 4px;
  }
  /* Outcome tag — what each program produces, colored to match the
     section anchors (Literacy = green, Capability = amber). Sits below
     the source line in each column. */
  .vchart .x-axis .x-tick .outcome {
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: -0.2px;
  }
  .vchart .x-axis .x-tick .outcome .lit  { color: var(--bc-green); }
  .vchart .x-axis .x-tick .outcome .cap  { color: var(--bc-amber); }
  .vchart .x-axis .x-tick .outcome .plus { color: var(--bc-secondary); margin: 0 6px; font-weight: 500; }
  .vchart .y-min-note {
    position: absolute;
    bottom: -20px;
    left: 70px;
    font-size: 10px;
    color: var(--bc-body);
    font-style: italic;
  }
  @media (max-width: 700px) {
    .vchart { height: 320px; }
    .vchart .vbar .value { font-size: 18px; }
    .vchart .vbar.no-edu      .value { font-size: 22px; }
    .vchart .vbar.traditional .value { font-size: 22px; }
    .vchart .vbar.bc-post     .value { font-size: 22px; }
    .vchart .x-axis .x-tick { font-size: 14px; padding-top: 6px; }
    .vchart .x-axis .x-tick .src { font-size: 10px; }
  }

  .lift-callout {
    background: white;
    border: 2px solid var(--bc-green);
    border-radius: 8px;
    padding: 18px 22px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  .lift-callout .big {
    font-family: 'Ubuntu', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--bc-green);
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 230px;
  }
  /* Sub-line under the big +24 pts — the multiple framing, in smaller
     muted type so the headline stays the headline. */
  .lift-callout .big-aside {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--bc-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.35;
    max-width: 240px;
  }
  .lift-callout .text {
    flex: 1;
    min-width: 240px;
    font-size: 15px;
    color: var(--bc-text);
    line-height: 1.5;
  }
  .lift-callout .text strong { color: var(--bc-text); }

  .knowledge-meta {
    margin-top: 14px;
    font-size: 12px;
    color: var(--bc-body);
    text-align: right;
    font-style: italic;
  }

  /* ─────────────────────────────────────────────────────────
     RESEARCH STRIP  (light gray full-width)
     ───────────────────────────────────────────────────────── */
  .bc-ss-research { background: var(--bc-light-bg); padding: 56px 0; }
  .bc-ss-research h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
    text-align: center;
  }
  .bc-ss-research .preface {
    font-size: 15px;
    color: var(--bc-body);
    text-align: center;
    margin: 0 0 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }
  .research-card {
    background: white;
    border-left: 3px solid var(--bc-blue);
    padding: 18px 20px;
    border-radius: 4px;
    box-shadow: var(--bc-card-shadow);
  }
  .research-card .citation {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--bc-blue-dark);
    margin: 0 0 6px;
  }
  .research-card .takeaway {
    font-size: 14px;
    color: var(--bc-text);
    line-height: 1.5;
    margin: 0;
  }

  /* ─────────────────────────────────────────────────────────
     PART 2 — BEHAVIOR INTRO  (white, contained)
     ───────────────────────────────────────────────────────── */
  .bc-ss-behavior-intro { background: white; padding: 72px 0 32px; }
  .bc-ss-behavior-intro .part-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--bc-amber);
    background: rgba(236, 151, 31, 0.10);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  .bc-ss-behavior-intro .body p {
    font-size: 17px;
    color: var(--bc-text);
    max-width: 820px;
    margin: 0 0 14px;
    line-height: 1.6;
  }
  .bc-ss-behavior-intro .body p:last-child { margin-bottom: 0; }

  /* ─────────────────────────────────────────────────────────
     TROPHY GALLERY  (white, contained)
     ───────────────────────────────────────────────────────── */
  .bc-ss-trophies { background: white; padding: 36px 0 64px; }
  .trophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  /* Card is just a positioning anchor now — bg/border/padding live on
     each .card-face (default + hover) so the hovered face can grow taller
     AND wider than the default without reflowing the grid. */
  .trophy-card {
    position: relative;
    text-align: center;
  }
  .trophy-card .card-face {
    background: white;
    border: 1px solid var(--bc-border);
    border-radius: 8px;
    padding: 22px;
    text-align: center;
  }
  /* Trophy icon — wrapped so we can paint a soft brand-color halo behind
     the image on hover without breaking the PNG's transparency. */
  .trophy-card .trophy-img-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px;
  }
  .trophy-card .trophy-img-wrap::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(
      circle at center,
      rgba(64, 112, 184, 0.22) 0%,
      rgba(112, 184, 64, 0.10) 45%,
      rgba(64, 112, 184, 0) 72%
    );
    opacity: 0;
    transition: opacity 0.34s ease;
    pointer-events: none;
    z-index: 0;
  }
  .trophy-card:hover .trophy-img-wrap::before { opacity: 1; }
  .trophy-card .trophy-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.34s ease;
  }
  .trophy-card:hover .trophy-img {
    transform: scale(1.10);
    filter: drop-shadow(0 4px 10px rgba(64, 112, 184, 0.22));
  }
  .trophy-card .trophy-name {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--bc-text);
    margin: 0 0 10px;
  }
  /* The default + hover content share a single grid cell so they morph into
     each other (no jumpy layout). Default fades out, hover fades in.        */
  /* Default face — normal flow, sizes to its own (compact) content. */
  .trophy-card .card-face.card-default {
    transition: opacity 0.18s ease;
  }
  /* Hover face — absolutely positioned, sizes to its own (taller) content,
     can extend below the card AND wider than the card via column-aware
     left/right offsets. Other cards stay put; the hovered card floats
     above via z-index. Per Dave: it's fine if the hover face overlaps
     neighbors — they remain hoverable to bring themselves forward. */
  .trophy-card .card-face.card-hover {
    position: absolute;
    top: 0; left: 0; right: 0;
    border-color: var(--bc-blue);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08),
                0 14px 32px rgba(64, 112, 184, 0.20);
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.22s ease, transform 0.22s ease,
                left 0.22s ease, right 0.22s ease;
  }
  .trophy-card:hover { z-index: 50; }
  .trophy-card:hover .card-face.card-default {
    opacity: 0;
    pointer-events: none;
  }
  .trophy-card:hover .card-face.card-hover {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-4px);  /* slight lift, parallel to old card-hover lift */
  }
  /* 3x3 inward expansion — each card grows in all directions that have a
     grid neighbor. Grid edges block expansion in that direction. The
     center card (position 5 = Credit Health) expands all four ways.
     Position-based via :nth-child — order in BC_EFFECTIVENESS_DATA.trophies
     determines which trophy lands where in the grid. Reordering the data
     means re-checking these rules.
     Top/bottom may switch from "0" (anchored) to "auto" (released) on
     :hover; that change happens while opacity is still 0, so the position
     jump is invisible to the user. */
  /* Row 1 — top edge blocks upward growth */
  .trophy-grid > .trophy-card:nth-child(1):hover > .card-face.card-hover { top: 0; bottom: auto; left: 0;     right: -22%; }
  .trophy-grid > .trophy-card:nth-child(2):hover > .card-face.card-hover { top: 0; bottom: auto; left: -11%; right: -11%; }
  .trophy-grid > .trophy-card:nth-child(3):hover > .card-face.card-hover { top: 0; bottom: auto; left: -22%; right: 0;     }
  /* Row 2 — center row, can grow up AND down */
  .trophy-grid > .trophy-card:nth-child(4):hover > .card-face.card-hover { top: -15%; bottom: auto; left: 0;     right: -22%; }
  .trophy-grid > .trophy-card:nth-child(5):hover > .card-face.card-hover { top: -15%; bottom: auto; left: -11%; right: -11%; }
  .trophy-grid > .trophy-card:nth-child(6):hover > .card-face.card-hover { top: -15%; bottom: auto; left: -22%; right: 0;     }
  /* Row 3 — bottom edge blocks downward growth (anchor to bottom, grow up) */
  .trophy-grid > .trophy-card:nth-child(7):hover > .card-face.card-hover { top: auto; bottom: 0; left: 0;     right: -22%; }
  .trophy-grid > .trophy-card:nth-child(8):hover > .card-face.card-hover { top: auto; bottom: 0; left: -11%; right: -11%; }
  .trophy-grid > .trophy-card:nth-child(9):hover > .card-face.card-hover { top: auto; bottom: 0; left: -22%; right: 0;     }
  /* Two contrasting state tags — amber "real world" vs blue "simulation" */
  .trophy-card .state-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 12px;
  }
  .trophy-card .state-tag.real-world {
    color: var(--bc-amber);
    background: rgba(236, 151, 31, 0.10);
  }
  .trophy-card .state-tag.in-sim {
    color: var(--bc-blue);
    background: rgba(64, 112, 184, 0.10);
  }
  /* DEFAULT face — the adult-world failure stat */
  .trophy-card .adult-stat {
    font-size: 15px;
    font-weight: 600;
    color: var(--bc-text);
    line-height: 1.45;
    margin: 0 0 12px;
    text-align: center;
    min-height: 86px;
  }
  .trophy-card .adult-source {
    font-size: 11px;
    color: var(--bc-body);
    font-style: italic;
    margin: 0;
    text-align: center;
  }
  /* HOVER face — sim mechanic + completion stat + engagement ladder */
  .trophy-card .trophy-why {
    font-size: 13px;
    color: var(--bc-text);
    line-height: 1.55;
    text-align: left;
    margin: 0 0 14px;
  }
  .trophy-card .trophy-stat {
    background: var(--bc-light-bg);
    border-radius: 6px;
    padding: 10px 12px;
    text-align: center;
    margin-bottom: 12px;
  }
  .trophy-card .trophy-stat .pct {
    font-family: 'Ubuntu', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--bc-blue);
    line-height: 1;
    display: block;
  }
  .trophy-card .trophy-stat .pct-label {
    font-size: 11px;
    color: var(--bc-body);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 4px;
    display: block;
  }
  .engagement-ladder {
    text-align: left;
    border-top: 1px solid var(--bc-border);
    padding-top: 10px;
  }
  .engagement-ladder .ladder-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--bc-body);
    margin-bottom: 8px;
  }
  .engagement-ladder .rung {
    display: grid;
    grid-template-columns: 78px 1fr 44px;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 12px;
  }
  .engagement-ladder .rung:last-child { margin-bottom: 0; }
  .engagement-ladder .rung-label {
    color: var(--bc-secondary);
    font-weight: 600;
    text-align: left;
  }
  .engagement-ladder .rung-bar {
    background: rgba(0,0,0,0.06);
    border-radius: 3px;
    height: 10px;
    overflow: hidden;
  }
  .engagement-ladder .rung-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--bc-blue) 0%, var(--bc-blue-dark) 100%);
    border-radius: 3px;
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
  }
  /* Width animates from 0 to the per-rung target on hover. */
  .trophy-card:hover .engagement-ladder .rung-fill {
    width: var(--fill);
  }
  .engagement-ladder .rung-pct {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: var(--bc-blue-dark);
    text-align: right;
    font-size: 12px;
  }
  .trophy-card.investing .card-face { border-style: dashed; }
  .trophy-card.investing .investing-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--bc-green);
    background: rgba(112, 184, 64, 0.10);
    padding: 2px 8px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  @media (max-width: 900px) {
    .trophy-grid { grid-template-columns: repeat(2, 1fr); }
    /* Reset 3x3 desktop position offsets — at 2-col the positions don't
       correspond to a corner/edge/center pattern anymore. Just grow down
       and use simple left/right column expansion. */
    .trophy-grid > .trophy-card:hover > .card-face.card-hover {
      top: 0; bottom: auto; left: 0; right: 0;
    }
    .trophy-grid > .trophy-card:nth-child(2n+1):hover > .card-face.card-hover {
      left: 0; right: -16%;
    }
    .trophy-grid > .trophy-card:nth-child(2n):hover > .card-face.card-hover {
      left: -16%; right: 0;
    }
  }
  @media (max-width: 600px) {
    .trophy-grid { grid-template-columns: 1fr; }
    /* Single column — pure vertical growth, no horizontal expansion. */
    .trophy-grid > .trophy-card:hover > .card-face.card-hover {
      top: 0; bottom: auto; left: 0; right: 0;
    }
  }

  /* ─────────────────────────────────────────────────────────
     ENGAGEMENT LIFT  (blue full-width)
     ───────────────────────────────────────────────────────── */
  .bc-ss-engagement { background: var(--bc-blue); padding: 64px 0; color: white; }
  .bc-ss-engagement h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
  }
  .bc-ss-engagement .sub {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    max-width: 760px;
    margin: 0 0 36px;
  }
  .lift-chart {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 24px 28px;
  }
  .lift-row {
    display: grid;
    grid-template-columns: 200px 1fr 80px;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }
  .lift-row:last-child { border-bottom: none; }
  .lift-row .lift-name {
    font-size: 14px;
    color: white;
    font-weight: 600;
  }
  .lift-row .lift-bars {
    position: relative;
    height: 28px;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 4px;
    overflow: hidden;
  }
  .lift-row .lift-bars .bar-base {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 4px;
  }
  .lift-row .lift-bars .bar-engaged {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: var(--bc-green);
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.10);
  }
  .lift-row .lift-bars .bar-base.over { background: rgba(255,255,255,0.45); }
  .lift-row .lift-delta {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--bc-green);
    text-align: right;
  }
  .lift-row .lift-delta.negative { color: rgba(255,255,255,0.55); }
  .lift-legend {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
  }
  .lift-legend .swatch {
    display: inline-block;
    width: 14px; height: 14px;
    border-radius: 3px;
    vertical-align: -2px;
    margin-right: 8px;
  }
  .lift-legend .swatch.base { background: rgba(255, 255, 255, 0.45); }
  .lift-legend .swatch.engaged { background: var(--bc-green); }
  .lift-footnote {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 18px;
    font-style: italic;
    line-height: 1.5;
  }
  .lift-anchor {
    margin-top: 28px;
    font-size: 17px;
    font-weight: 600;
    color: white;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
  }

  /* ─────────────────────────────────────────────────────────
     AWARDS STRIP  (light gray full-width)
     ───────────────────────────────────────────────────────── */
  .bc-ss-awards { background: var(--bc-light-bg); padding: 48px 0; }
  .bc-ss-awards h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--bc-body);
    text-align: center;
    margin: 0 0 28px;
  }
  .awards-row {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
  }
  .award {
    text-align: center;
    max-width: 240px;
  }
  .award .year {
    font-family: 'Ubuntu', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--bc-amber);
    line-height: 1;
    margin-bottom: 6px;
  }
  .award .award-name {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--bc-text);
    margin-bottom: 4px;
  }
  .award .award-detail {
    font-size: 12px;
    color: var(--bc-body);
    line-height: 1.4;
  }
  .awards-foot {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
    color: var(--bc-body);
    font-style: italic;
  }

  /* ─────────────────────────────────────────────────────────
     THE WHOLE PITCH — the conclusion (white, contained)
     Visual: chapter-head anchor "Together." with a green→amber
     gradient underline that visually fuses Literacy + Capability.
     ───────────────────────────────────────────────────────── */
  .bc-ss-pitch { background: white; padding: 88px 0 96px; }
  /* Wrap escapes the body's 1140px container — gets its own (wider)
     max-width so the heading visually expands beyond the prose below. */
  .pitch-anchor-wrap {
    text-align: center;
    margin: 0 auto 8px;
    max-width: 1400px;
    padding: 0 32px;
  }
  .pitch-anchor {
    display: inline-flex;
    align-items: baseline;
    gap: 56px;
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 84px;
    line-height: 0.95;
    letter-spacing: -2.4px;
    color: var(--bc-text);
    margin: 0;
    padding-bottom: 14px;
  }
  .pitch-anchor-main { /* inherits 84px from parent */ }
  /* "Literacy + Capability" tag — color-echoes the section anchors above
     (green / amber). Baseline-aligned with "Together." so the tag sits
     naturally at the bottom of the big word. */
  .pitch-anchor-tag {
    font-size: 58px;
    letter-spacing: -0.8px;
    font-weight: 700;
    line-height: 1;
  }
  .pitch-anchor-tag .lit  { color: var(--bc-green); }
  .pitch-anchor-tag .cap  { color: var(--bc-amber); }
  /* Wider margin around the + so the heading reads with the cadence of a
     formula — pause, plus, pause — rather than a tight phrase. */
  .pitch-anchor-tag .plus { color: var(--bc-secondary); margin: 0 18px; font-weight: 500; }
  .pitch-anchor::after {
    content: '';
    position: absolute;
    left: 4px; right: 4px;
    bottom: 0;
    height: 7px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--bc-green) 0%, var(--bc-amber) 100%);
  }
  .pitch-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--bc-text);
    text-align: center;
    margin: 0 0 40px;
    letter-spacing: -0.2px;
  }
  .pitch-body {
    max-width: 720px;
    margin: 0 auto;
  }
  .pitch-body p {
    font-size: 17px;
    color: var(--bc-text);
    line-height: 1.7;
    margin: 0 0 20px;
  }
  .pitch-body p:last-of-type { margin-bottom: 0; }
  .pitch-body p strong { color: var(--bc-blue-dark); }
  .pitch-body .pitch-emphasis {
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--bc-text);
    text-align: center;
    margin: 24px 0;
    line-height: 1.45;
    letter-spacing: -0.2px;
  }
  .pitch-citation {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid var(--bc-border);
    font-size: 12px;
    color: var(--bc-body);
    font-style: italic;
    line-height: 1.5;
    text-align: center;
  }
  .pitch-citation a { color: var(--bc-body); }

  @media (max-width: 760px) {
    .pitch-anchor { font-size: 56px; letter-spacing: -1.5px; padding-bottom: 10px; }
    .pitch-anchor::after { height: 5px; }
    .pitch-subtitle { font-size: 19px; }
    .pitch-body p { font-size: 15px; }
    .pitch-body .pitch-emphasis { font-size: 18px; }
    .bc-ss-hero h1 { font-size: 34px; }
  }

