  /* ═══════════════════════════════════════════════════════════
     BUDGET CHALLENGE — HOMEPAGE 2026 (v2 redesign)

     Companion to Homepage2026.ascx and Homepage2026.js.

     Visual language matches the sibling Budget layouts:
       - StateStandards2026
       - Sponsor2026
       - Program2026
       - Effectiveness2026

     The .ascx wraps every named pane in <div class="container">, and
     the existing Budget skin sets a max-width on .container. Full-width
     section backgrounds therefore need to live on the OUTER .bc-ss-X
     wrapper (which sits OUTSIDE the container). See the DNN-ONLY block
     at the bottom of this file for those overrides.
     ═══════════════════════════════════════════════════════════ */

  :root {
    /* Brand colors — from Brand Foundation §6 + live site */
    --bc-blue: #4070B8;
    --bc-blue-dark: #2C5A94;
    --bc-green: #70B840;
    --bc-green-bright: #8BD44E;
    --bc-purple: #4C40B8;
    --bc-orange: #EC971F;
    --bc-gold: rgb(211, 175, 55);        /* live badge gold */
    --bc-silver: rgb(192, 192, 192);     /* live badge silver */

    /* Live site neutrals */
    --text-dark: rgb(65, 65, 65);        /* headings */
    --text-body: rgb(114, 113, 113);     /* body / table cells */
    --text-light: #999999;
    --bg-white: #FFFFFF;
    --bg-stripe: #F9F9F9;               /* table-striped alternate */
    --bg-light: #F5F7FA;                /* light section bg */
    --border-light: #E0E0E0;
    --border-card: #CCCCCC;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
  }

  /* ─── SITE HEADER ─── */
  .site-header {
    background: var(--bg-white);
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--bc-green);
  }
  .site-header .logo-area {
    display: flex; align-items: center;
  }
  .site-header .header-logo {
    height: 48px; width: auto;
  }
  .site-header nav a {
    color: var(--text-dark); text-decoration: none; font-size: 14px;
    font-weight: 600; margin-left: 28px;
  }
  .site-header nav a:hover { color: var(--bc-blue); }
  .site-header .cta-nav {
    background: var(--bc-green); color: white !important;
    padding: 8px 20px; border-radius: 4px;
  }
  .site-header .cta-nav:hover { background: var(--bc-green-bright); }

  /* ─── HERO SECTION (light theme) ─── */
  /* Smooth-scroll for in-page anchor jumps (audience pill nav → tiles at bottom) */
  html { scroll-behavior: smooth; }

  /* Hero inner content — background + padding live on the outer .bc-ss-hero
     wrapper now (see the "DNN-ONLY full-width section overrides" block at
     bottom of this file). IT 2026-05-15: the v2.9 white-card-in-gray-section
     treatment was wrong — should be one full-viewport-width band with the
     H1 + accent stripe sitting directly on it, not a 1140px card inside a
     gray strip. The radial gradients live on .bc-ss-hero so they extend
     full viewport width; this inner .bc-hero pane is transparent. */
  .bc-hero {
    background: transparent;
    padding: 0 32px;
    text-align: center;
    /* IT 2026-05-15 (v2.12): border-bottom removed. The line previously sat at
       container max-width (1140px) with the gradient bleeding around it on both
       sides — looked inset. Moved divider to a full-viewport-width border-top
       on .bc-section.bc-ss-audience-jump below (no contained-width line). */
    position: relative;
  }
  /* Gradient accent stripe retired — the LIVE COMPETITION badge now sits below
     the H1 in the same role (compact accent + visual interest). Kept here
     commented for revert safety; delete during DNN extraction once the new
     hero layout has shipped.
  .bc-hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--bc-blue), var(--bc-green), var(--bc-orange), var(--bc-gold));
    border-radius: 2px;
    opacity: 0.85;
  } */
  /* LIVE COMPETITION badge — used flanking the Premier Sponsor logo (CU1).
     Two animations layered on every badge:
       - Pulse (the green dot) on a 2s cycle — the "live" heartbeat.
       - Shimmer (white streak across the pill) on a 5.5s cycle, matching
         every other shimmer on this site (Standards/Outcomes/Program CTAs,
         Literacy/Capability text, comparison-block arrow, blue banner is
         11s = 2× this cycle).
     The two animations have different periods on purpose (pulse stays
     fast enough to read as "live"); they aren't locked together. */
  .live-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(112, 184, 64, 0.1); border: 1px solid rgba(112, 184, 64, 0.3);
    padding: 6px 18px; border-radius: 20px; font-size: 12px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    color: var(--bc-green);
    position: relative;
    overflow: hidden;
    isolation: isolate;       /* contains the ::before z-index: -1 */
  }
  .live-badge .pulse {
    width: 8px; height: 8px; background: var(--bc-green);
    border-radius: 50%; animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(112,184,64,0.6); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(112,184,64,0); }
  }
  /* Shimmer streak — 5.5s cycle to match the standard shimmer pattern used
     elsewhere on the page. Sweep occupies 9%–48% of the cycle (~2.15s of
     motion), then parks off-right for the remainder. Sits behind the pulse
     dot + text (z-index: -1 inside the .live-badge's isolated stacking
     context). */
  .live-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
    animation: liveCompShimmer 5.5s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
  }
  @keyframes liveCompShimmer {
    0%, 9%    { left: -100%; }
    48%, 100% { left: 100%;  }
  }
  @media (prefers-reduced-motion: reduce) {
    .live-badge .pulse { animation: none; }
    .live-badge::before { animation: none; }
  }
  .bc-hero h1 {
    font-size: 48px; font-weight: 800; line-height: 1.15;
    margin-bottom: 0; color: var(--text-dark);
    letter-spacing: -0.5px;
  }
  .bc-hero h1 .accent { color: var(--bc-blue); }
  .bc-hero .subtitle {
    font-size: 18px; color: var(--text-body); max-width: 740px;
    margin: 0 auto 36px; font-weight: 400; line-height: 1.6;
  }
  @media (max-width: 700px) {
    .bc-hero h1 { font-size: 34px; }
    .bc-hero .subtitle { font-size: 16px; }
  }

  /* ── Audience jump nav — colored pills route visitors to their audience tile at the bottom ── */
  .audience-jump {
    background: var(--bg-stripe);
    padding: 16px 40px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
  }
  .audience-jump .jump-prefix {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-right: 14px;
    display: inline-block;
    vertical-align: middle;
  }
  .audience-jump .jump-pill {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 999px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin: 4px 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    vertical-align: middle;
  }
  .audience-jump .jump-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    filter: brightness(1.08);
    text-decoration: none;
    color: white;
  }
  .audience-jump .jump-pill.is-students       { background: var(--bc-orange); }
  .audience-jump .jump-pill.is-sponsors       { background: var(--bc-gold); }
  .audience-jump .jump-pill.is-teachers       { background: var(--bc-blue); }
  .audience-jump .jump-pill.is-parents        { background: var(--bc-green); }
  .audience-jump .jump-pill.is-administrators { background: var(--bc-purple); }
  /* :visited override — Bootstrap (and browser defaults) apply
     `a:visited { color: <purple-ish> }` at specificity 0,1,1 which beats
     the bare `.jump-pill { color: white }` rule (0,1,0). Once a user has
     clicked a pill, the text on subsequent loads renders in the visited
     color. Force white at every state. IT flag 2026-05-15. */
  .audience-jump .jump-pill:visited,
  .audience-jump .jump-pill:active,
  .audience-jump .jump-pill:focus {
    color: white;
  }
  @media (max-width: 700px) {
    .audience-jump .jump-prefix { display: block; margin: 0 0 10px; }
  }

  /* Anchored scroll targets back off by the fixed-header height so each
     audience section lands fully visible below the nav, not behind it.
     --bc-header-height is set at runtime by Homepage2026.js — its watcher
     reads .fixed.offsetHeight on load + resize + ResizeObserver. The 120px
     fallback covers anonymous/teacher views; admin (~255px on Dev) gets
     the correct value once the JS runs (before any click is possible). */
  [id^="audience-"] {
    scroll-margin-top: var(--bc-header-height, 120px);
  }

  /* ─── PREMIER SPONSOR ───
     Two-row band: label up top, [LIVE COMPETITION badge] LOGO [LIVE COMPETITION badge]
     horizontal row below. The flanking badges (live-competition pills with the
     pulse + shimmer combo) frame the CU1 logo and tighten total vertical space
     by collapsing what used to be a 3-row band (label / logo / note) into 2 rows. */
  .premier-sponsor {
    text-align: center; padding: 22px 40px 24px;
    background: var(--bg-white);
  }
  .premier-sponsor .label {
    /* display: block is REQUIRED here. Bootstrap defines bare .label as
       `display: inline` (for its pill-style label component). Without the
       explicit display declaration, Bootstrap's value cascades through
       and the gold-star eyebrow renders inline with the badge+logo row
       below it instead of stacking on its own line. Proper fix during a
       future retrofit: rename .label → .premier-eyebrow to drop the
       Bootstrap-collision class name entirely. */
    display: block;
    font-size: 11px; text-transform: uppercase; letter-spacing: 3px;
    color: var(--bc-gold); font-weight: 600; margin-bottom: 6px;
  }
  .premier-sponsor .premier-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    /* Modest spread (60px gap each side, ~2x the original 28px) gives the
       CU1 logo more breathing room from the flanking LIVE COMPETITION badges
       without anchoring them to the viewport edges. */
  }
  .premier-sponsor .sponsor-logo {
    display: inline-block;
  }
  .premier-sponsor .sponsor-logo img {
    height: 44px; width: auto;
    display: block;
  }
  /* Slightly tighter badge inside the Premier Sponsor band — keeps the flanking
     badges from visually overwhelming the CU1 logo at the center. */
  .premier-sponsor .live-badge {
    font-size: 11px;
    padding: 5px 14px;
    letter-spacing: 1.6px;
  }
  @media (max-width: 740px) {
    .premier-sponsor .premier-row { flex-wrap: wrap; gap: 12px; }
  }

  /* ─── LEADERBOARD SECTION ─── */
  .leaderboard-section {
    padding: 22px 40px 36px;
    max-width: 1140px; margin: 0 auto;
  }
  /* Leaderboard header now wraps the H2 + the carousel only.  Premier
     Sponsor lives in its OWN band above the leaderboard section (see
     .premier-sponsor above) — it's wired to a separate IT module on
     production and must not be split from / stacked beside the carousel
     controls (prev/next + sim-info + dots). */
  .leaderboard-header {
    margin-bottom: 14px;
  }
  /* Big centered H2 — sits directly above the carousel + sim-sponsor pill */
  .leaderboard-title-prominent {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin: 6px 0 14px;
  }
  @media (max-width: 900px) {
    .leaderboard-title-prominent { font-size: 26px; }
  }
  /* Sim-nav carousel — single cohesive unit: prev arrow + sim-info
     (counter / dates / classes / dots, all stacked vertically) + next arrow.
     The 10 dots live INSIDE .sim-info so the carousel reads as one
     control — matches the production module that wires sim navigation
     and dot indicators together. */
  .sim-nav {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-bottom: 14px;
  }
  .sim-nav button {
    background: var(--bg-white); border: 1px solid var(--border-light);
    color: var(--text-dark); width: 38px; height: 38px; border-radius: 50%;
    cursor: pointer; font-size: 18px; display: flex; align-items: center;
    justify-content: center; transition: all 0.2s; flex-shrink: 0;
  }
  .sim-nav button:hover { background: var(--bg-stripe); border-color: var(--bc-blue); color: var(--bc-blue); }
  .sim-nav button:active { background: rgba(64,112,184,0.1); }
  .sim-info { text-align: center; min-width: 220px; }
  .sim-counter {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--bc-blue); font-weight: 700; margin-bottom: 2px;
  }
  .sim-info .sim-dates {
    font-size: 13px; color: var(--text-body); font-weight: 400;
  }
  .sim-info .sim-classes {
    font-size: 15px; font-weight: 700; color: var(--text-dark);
  }

  /* Simulation sponsor bar */
  .sim-sponsor {
    display: flex; align-items: center; justify-content: center;
    gap: 24px; margin-bottom: 16px; padding: 14px 24px;
    background: var(--bg-stripe); border-radius: 6px;
    border: 1px solid var(--border-light);
  }
  .sim-sponsor .sponsor-label {
    font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-light); font-weight: 600;
  }
  .sim-sponsor .sponsor-name {
    font-size: 18px; font-weight: 700; color: var(--text-dark);
  }
  .sim-prizes {
    display: flex; gap: 16px;
  }
  .sim-prizes .prize {
    display: flex; align-items: center; gap: 8px;
    background: var(--bg-white); border: 1px solid var(--border-light);
    padding: 6px 14px; border-radius: 6px; font-size: 12px;
  }
  .sim-prizes .prize .prize-icon { font-size: 16px; }
  .sim-prizes .prize .prize-label { color: var(--text-light); }
  .sim-prizes .prize .prize-value { color: var(--bc-green); font-weight: 700; }

  /* Simulation dot indicators — embedded inside .sim-info, tucked under the
     "X Classes Competing" line so the whole sim-nav cluster reads as one. */
  .sim-dots {
    display: flex; justify-content: center; gap: 6px;
    margin-top: 6px;
  }
  .sim-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border-light); cursor: pointer; transition: all 0.2s;
  }
  .sim-dot:hover { background: rgba(64,112,184,0.4); }
  .sim-dot.active {
    background: var(--bc-blue);
    box-shadow: 0 0 0 2px rgba(64,112,184,0.2);
  }

  /* Leaderboard table — matches live site Bootstrap table-striped */
  .leaderboard-table {
    width: 100%; border-collapse: collapse;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
  }
  .leaderboard-table thead {
    background: var(--bc-blue);
  }
  .leaderboard-table thead th {
    padding: 8px 16px; text-align: left;
    font-size: 16px; font-weight: 700;
    color: #FFFFFF;
    border: none;
  }
  .leaderboard-table thead th.center-col { text-align: center; }
  .leaderboard-table tbody tr {
    border-bottom: 1px solid var(--border-light);
  }
  .leaderboard-table tbody tr:nth-child(odd) {
    background: var(--bg-stripe);
  }
  .leaderboard-table tbody tr:nth-child(even) {
    background: var(--bg-white);
  }
  .leaderboard-table tbody tr:hover {
    background: rgba(64,112,184,0.06);
  }
  .leaderboard-table tbody td {
    padding: 8px 16px; font-size: 16px;
    color: var(--text-body);
    vertical-align: top;
  }
  .leaderboard-table tbody td.center-col { text-align: center; }
  .team-name { color: var(--text-body); }
  .score { font-variant-numeric: tabular-nums; }
  .engagement { font-variant-numeric: tabular-nums; }
  .location a {
    color: var(--bc-blue); text-decoration: none;
  }
  .location a:hover { text-decoration: underline; }

  /* Teacher tier display — driven by the production
     BC_TeacherEngagementStatus.EngagementStatus column:
       Gold   → .teacher-badge.gold   (yellow pill + ★)
       Silver → .teacher-badge.silver (silver pill)
       Green  → .teacher-plain        (plain text, NO pill — per IT)
     The pill stays on one line via white-space: nowrap so e.g.
     "Teacher Level · 8 ★" doesn't break mid-pill when the table is tight. */
  .teacher-badge {
    display: inline-block; padding: 3px 7px; border-radius: 10px;
    font-size: 14px; font-weight: 700; color: white;
    white-space: nowrap;
  }
  .teacher-badge.gold   { background: var(--bc-gold); }
  .teacher-badge.silver { background: var(--bc-silver); }
  .teacher-plain {
    /* Green-tier engagement: plain text, no pill, no badge background.
       white-space: nowrap so "Teacher Level · 5" stays on one line. */
    white-space: nowrap;
  }

  /* Constrain Location + Team Name columns so long school + team names
     don't wrap rows or force the Teacher cell onto two lines. Anything
     longer than max-width is truncated with an ellipsis. */
  .leaderboard-table td.location {
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .leaderboard-table td.team-name {
    max-width: 240px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .leaderboard-footer {
    text-align: center; padding: 16px;
    color: var(--text-light); font-size: 13px;
  }
  .leaderboard-footer a {
    color: var(--bc-blue); text-decoration: none; font-weight: 600;
  }
  .leaderboard-footer a:hover { text-decoration: underline; }

  /* ─── LEADERBOARD CAROUSEL ───
     Bootstrap 3 carousel skinned to match the page's visual language. The
     outer .bc-leaderboard-carousel class scopes our overrides so we don't
     touch BS3's bare .carousel / .carousel-control / .carousel-indicators
     rules at top level (those are loaded by bootstrap.css for the whole
     site). The carousel itself uses native BS3 markup + JS auto-init
     (data-ride="carousel"); we only override visuals here. */
  .bc-leaderboard-carousel {
    position: relative;
    margin: 0 auto;
    padding: 0;  /* buttons no longer flank the table — they sit beside the
                    sim-info row at the top of each slide, so no edge padding
                    is needed. The slides can use the full carousel width. */
  }
  .bc-leaderboard-carousel .carousel-inner > .item > .sim-info {
    text-align: center;
    min-width: 0;
    margin: 4px auto 12px;
  }
  /* Slide transition — keep BS3's default 600ms slide but smooth the easing */
  .bc-leaderboard-carousel .carousel-inner > .item {
    transition: transform 0.6s ease-in-out;
  }
  /* Prev / Next — small round buttons (match .sim-nav button from earlier
     versions). Default BS3 control is a tall gradient overlay; we replace it.
     Buttons sit at the VERTICAL HEIGHT OF THE SIM-INFO ROW (not the mid-table
     middle) so they read as paired with the "Simulation N of 10 / dates /
     classes" header — same look as the v2.5 sim-nav cluster. The sim-info
     block starts at ~10px from the top of .bc-leaderboard-carousel
     (item padding 6px + sim-info margin-top 4px), so its vertical center
     is ~37px down. Button center at top:18px + 19px (half height) = 37px. */
  .bc-leaderboard-carousel .carousel-control {
    width: 38px;
    height: 38px;
    background: var(--bg-white);
    background-image: none;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-dark);
    text-shadow: none;
    opacity: 1;
    top: 18px;
    margin-top: 0;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    line-height: 1;
  }
  /* Pull the buttons in closer to the sim-info text since they now sit
     on the same horizontal axis as it, not flanking the wide table below. */
  .bc-leaderboard-carousel .carousel-control.left  { left: calc(50% - 200px); right: auto; }
  .bc-leaderboard-carousel .carousel-control.right { right: calc(50% - 200px); left: auto; }
  .bc-leaderboard-carousel .carousel-control:hover {
    background: var(--bg-stripe);
    border-color: var(--bc-blue);
    color: var(--bc-blue);
  }
  .bc-leaderboard-carousel .bc-chev {
    display: inline-block;
    line-height: 1;
  }
  /* Indicator dots — sit BELOW the slides (override BS3's absolute bottom).
     Sized + colored to match the .sim-dot pattern used elsewhere. */
  .bc-leaderboard-carousel .carousel-indicators {
    position: static;
    width: auto;
    margin: 14px auto 0;
    padding: 0;
    bottom: auto;
    left: auto;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
    text-indent: 0;  /* override BS3's -999em on indicators */
  }
  .bc-leaderboard-carousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    margin: 0;
    background: var(--border-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    text-indent: 0;
    transition: background 0.2s, box-shadow 0.2s;
  }
  .bc-leaderboard-carousel .carousel-indicators li:hover {
    background: rgba(64,112,184,0.4);
  }
  .bc-leaderboard-carousel .carousel-indicators li.active {
    width: 10px;
    height: 10px;
    margin: 0;
    background: var(--bc-blue);
    box-shadow: 0 0 0 3px rgba(64,112,184,0.2);
  }
  /* On narrow screens, shrink the buttons slightly and pull them closer to
     the sim-info text so they fit on a 360-720px viewport without colliding
     with the text or running off-screen. */
  @media (max-width: 760px) {
    .bc-leaderboard-carousel .carousel-control { width: 32px; height: 32px; top: 16px; }
    .bc-leaderboard-carousel .carousel-control.left  { left: calc(50% - 140px); right: auto; }
    .bc-leaderboard-carousel .carousel-control.right { left: auto; right: calc(50% - 140px); }
  }
  @media (max-width: 460px) {
    .bc-leaderboard-carousel .carousel-control.left  { left: calc(50% - 110px); }
    .bc-leaderboard-carousel .carousel-control.right { right: calc(50% - 110px); }
  }

  /* ─── BLUE BANNER (matches live site full-width blue band) ─── */
  .blue-banner {
    background: var(--bc-blue);
    color: #FFFFFF;
    text-align: center;
    padding: 28px 40px;
    position: relative;
    overflow: hidden;
  }
  /* Slow shimmer sweep — 11s cycle = half the rate of every other shimmer on
     the page (5.5s standards/outbound/literacy/capability shimmers). Kept
     subtle (0.18 alpha) since the banner spans the full viewport width. */
  .blue-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.18) 50%, transparent 62%);
    animation: blueBannerShimmerSweep 11s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes blueBannerShimmerSweep {
    0%   { left: -100%; }
    9%   { left: -100%; }
    48%  { left: 100%; }
    100% { left: 100%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .blue-banner::before { animation: none; }
  }
  .blue-banner h3 {
    font-size: 26px; font-weight: 700; line-height: 1.3;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
  }
  .blue-banner .reg { font-size: 14px; vertical-align: super; }

  /* ─── STATS BAR ─── */
  .stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--border-light);
    max-width: 1140px; margin: 0 auto;
  }
  .stat-item {
    background: var(--bg-white);
    padding: 28px 20px; text-align: center;
  }
  .stat-item .stat-number {
    font-size: 34px; font-weight: 800; line-height: 1;
    margin-bottom: 4px;
  }
  .stat-item .stat-number.blue { color: var(--bc-blue); }
  .stat-item .stat-number.green { color: var(--bc-green); }
  .stat-item .stat-number.gold { color: var(--bc-gold); }
  .stat-item .stat-number.purple { color: var(--bc-purple); }
  .stat-item .stat-label {
    font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--text-light); font-weight: 600;
  }

  /* ─── REINVENTING EDUCATION SECTION ─── */
  .reinventing {
    max-width: 1140px; margin: 0 auto;
    padding: 26px 40px 32px;
    text-align: center;
  }
  .reinventing h2 {
    font-size: 32px; font-weight: 700; line-height: 1.25;
    margin-bottom: 12px; color: var(--text-dark);
    max-width: 800px; margin-left: auto; margin-right: auto;
  }
  .reinventing h2 .highlight { color: var(--bc-blue); }
  .reinventing .lead {
    font-size: 17px; color: var(--text-body); max-width: 720px;
    margin: 0 auto 32px; line-height: 1.65;
  }

  /* Capability vs Literacy comparison */
  .capability-block {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; max-width: 900px; margin: 0 auto 40px;
    border: 1px solid var(--border-light); border-radius: 8px;
    overflow: hidden;
    position: relative;
  }
  .capability-side {
    padding: 32px 28px; text-align: left;
  }
  .capability-side.old-way {
    background: var(--bg-stripe);
    border-right: 1px solid var(--border-light);
  }
  .capability-side.new-way {
    background: var(--bg-white);
  }
  .capability-side .side-label {
    font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
    font-weight: 700; margin-bottom: 10px;
  }
  .capability-side.old-way .side-label { color: var(--text-light); }
  .capability-side.new-way .side-label { color: var(--text-light); }
  .capability-side h3 {
    font-size: 22px; font-weight: 700; margin-bottom: 10px;
  }
  .capability-side.old-way h3 { color: var(--text-light); }
  .capability-side.new-way h3 { color: var(--bc-blue); }
  .capability-side p {
    font-size: 14px; line-height: 1.7; margin-bottom: 16px;
  }
  .capability-side.old-way p { color: var(--text-light); }
  .capability-side.new-way p { color: var(--text-body); }

  /* Animated transition arrow — bridges Traditional Approach → Budget Challenge Model.
     12 vertical blocks growing in height (thin base → tall) + arrowhead tip.
     All blocks centered on a common horizontal axis. Tip anchored 12px LEFT of
     the median between the two tiles so the tip point clearly stops short of
     the dividing line.
     Animation cycle: progressive fade-in left → right (each segment hits peak
     in its 5% slice of the cycle), all segments hold peak together briefly,
     then ALL fade out together, then rest gray, then repeat.
     This is achieved by giving every segment its own @keyframes with its
     own fade-in window — no animation-delays — so the shared fade-out at
     65-75% lands on all segments simultaneously. */
  .capability-arrow {
    position: absolute;
    right: calc(50% + 12px);
    /* Anchor the arrow ABOVE the H3 text so the chevron blocks sit between
       the "Traditional Approach"/"Budget Challenge Model" eyebrow row and
       the H3 ("Financial Literacy" / "Financial Capability"). Earlier v2.1
       anchored at the H3 visual centerline (top: 81px) — IT reported the
       arrow was both visually too low AND showing behind text. Two fixes:
       (1) raise to top: 50px so the arrow's vertical band lands above the
       H3 instead of through it; (2) z-index: 10 so the arrow paints in
       front of any sibling text that may share the stacking context.
       v2.13 IT tuning: top 50px → 72px. 50px overshot — arrow sat above
       the eyebrow row. 72px lands the visual midline between eyebrow and
       H3 — between the rows of text, not above both. */
    top: 72px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    pointer-events: none;
  }
  .capability-arrow .block {
    width: 7px;
    background: rgba(64,112,184,0.18);
    border-radius: 1px;
    flex-shrink: 0;
    animation-duration: 5.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
  /* Equal-width shaft, increasing in height from a substantial base (10px)
     up to 32px — capped well below the arrowhead's 56px height so the head
     reads clearly as the head, not as a continuation of the shaft. */
  .capability-arrow .b1  { height: 10px; --peak: rgba(64,112,184,0.22); animation-name: b1Fill;  }
  .capability-arrow .b2  { height: 12px; --peak: rgba(64,112,184,0.30); animation-name: b2Fill;  }
  .capability-arrow .b3  { height: 14px; --peak: rgba(64,112,184,0.38); animation-name: b3Fill;  }
  .capability-arrow .b4  { height: 16px; --peak: rgba(64,112,184,0.45); animation-name: b4Fill;  }
  .capability-arrow .b5  { height: 18px; --peak: rgba(64,112,184,0.52); animation-name: b5Fill;  }
  .capability-arrow .b6  { height: 20px; --peak: rgba(64,112,184,0.60); animation-name: b6Fill;  }
  .capability-arrow .b7  { height: 22px; --peak: rgba(64,112,184,0.68); animation-name: b7Fill;  }
  .capability-arrow .b8  { height: 24px; --peak: rgba(64,112,184,0.76); animation-name: b8Fill;  }
  .capability-arrow .b9  { height: 26px; --peak: rgba(64,112,184,0.84); animation-name: b9Fill;  }
  .capability-arrow .b10 { height: 28px; --peak: rgba(64,112,184,0.91); animation-name: b10Fill; }
  .capability-arrow .b11 { height: 30px; --peak: rgba(64,112,184,0.96); animation-name: b11Fill; }
  .capability-arrow .b12 { height: 32px; --peak: rgba(64,112,184,1.00); animation-name: b12Fill; }
  /* Arrowhead — much taller than the tallest shaft block so it reads as a
     distinct head, not as the tip of a uniform shaft. */
  .capability-arrow .tip {
    width: 0;
    height: 0;
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-left: 28px solid rgba(64,112,184,0.18);
    margin-left: 2px;
    flex-shrink: 0;
    --peak: rgba(64,112,184,1.00);
    animation: tipFill 5.5s ease-in-out infinite;
  }
  /* Each segment's fade-in occupies a unique 5% slice of the cycle;
     all segments fade out together at 65% → 75%, then rest gray to 100%. */
  @keyframes b1Fill  { 0%       { background: rgba(64,112,184,0.18); }  5%, 65% { background: var(--peak); } 75%, 100% { background: rgba(64,112,184,0.18); } }
  @keyframes b2Fill  { 0%,  5%  { background: rgba(64,112,184,0.18); } 10%, 65% { background: var(--peak); } 75%, 100% { background: rgba(64,112,184,0.18); } }
  @keyframes b3Fill  { 0%, 10%  { background: rgba(64,112,184,0.18); } 15%, 65% { background: var(--peak); } 75%, 100% { background: rgba(64,112,184,0.18); } }
  @keyframes b4Fill  { 0%, 15%  { background: rgba(64,112,184,0.18); } 20%, 65% { background: var(--peak); } 75%, 100% { background: rgba(64,112,184,0.18); } }
  @keyframes b5Fill  { 0%, 20%  { background: rgba(64,112,184,0.18); } 25%, 65% { background: var(--peak); } 75%, 100% { background: rgba(64,112,184,0.18); } }
  @keyframes b6Fill  { 0%, 25%  { background: rgba(64,112,184,0.18); } 30%, 65% { background: var(--peak); } 75%, 100% { background: rgba(64,112,184,0.18); } }
  @keyframes b7Fill  { 0%, 30%  { background: rgba(64,112,184,0.18); } 35%, 65% { background: var(--peak); } 75%, 100% { background: rgba(64,112,184,0.18); } }
  @keyframes b8Fill  { 0%, 35%  { background: rgba(64,112,184,0.18); } 40%, 65% { background: var(--peak); } 75%, 100% { background: rgba(64,112,184,0.18); } }
  @keyframes b9Fill  { 0%, 40%  { background: rgba(64,112,184,0.18); } 45%, 65% { background: var(--peak); } 75%, 100% { background: rgba(64,112,184,0.18); } }
  @keyframes b10Fill { 0%, 45%  { background: rgba(64,112,184,0.18); } 50%, 65% { background: var(--peak); } 75%, 100% { background: rgba(64,112,184,0.18); } }
  @keyframes b11Fill { 0%, 50%  { background: rgba(64,112,184,0.18); } 55%, 65% { background: var(--peak); } 75%, 100% { background: rgba(64,112,184,0.18); } }
  @keyframes b12Fill { 0%, 55%  { background: rgba(64,112,184,0.18); } 60%, 65% { background: var(--peak); } 75%, 100% { background: rgba(64,112,184,0.18); } }
  @keyframes tipFill { 0%, 60%  { border-left-color: rgba(64,112,184,0.18); } 65% { border-left-color: var(--peak); } 75%, 100% { border-left-color: rgba(64,112,184,0.18); } }

  /* Shimmer on "Financial Capability" — same 5.5s cycle as the arrow, so the
     sweep ALWAYS fires when the arrow is fully blue (arrow's all-blue moment
     is at 65% of cycle; cap shimmer sweep runs 60%→95% of cycle).
     Sweep duration: 35% of cycle ≈ 1.9s — matches the page's other shimmers. */
  @supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .capability-side.new-way h3 {
      background: linear-gradient(
        100deg,
        var(--bc-blue) 30%,
        rgba(255, 255, 255, 0.85) 50%,
        var(--bc-blue) 70%
      );
      background-size: 300% 100%;
      background-position: 100% 0;
      -webkit-background-clip: text;
              background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      animation: capabilityShimmer 5.5s ease-in-out infinite;
    }
  }
  @keyframes capabilityShimmer {
    0%, 60%   { background-position: 100% 0; }  /* streak parked off-screen left */
    95%, 100% { background-position: 0% 0;   }  /* streak parked off-screen right */
  }
  @media (prefers-reduced-motion: reduce) {
    .capability-side.new-way h3 {
      animation: none;
      background: none;
      color: var(--bc-blue);
      -webkit-text-fill-color: var(--bc-blue);
    }
  }

  /* Shimmer on "Financial Literacy" — fires at the START of the arrow's cycle.
     Same 5.5s master cycle as the arrow + cap shimmer so all three animations
     stay locked together forever. Sweep runs 5%→40% of cycle (~1.9s, matching
     the page's shimmer duration). Highlight is white over the gray base color
     of the dimmed old-way text. */
  @supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .capability-side.old-way h3 {
      background: linear-gradient(
        100deg,
        var(--text-light) 30%,
        rgba(255, 255, 255, 0.95) 50%,
        var(--text-light) 70%
      );
      background-size: 300% 100%;
      background-position: 100% 0;
      -webkit-background-clip: text;
              background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      animation: literacyShimmer 5.5s ease-in-out infinite;
    }
  }
  @keyframes literacyShimmer {
    0%,  5%   { background-position: 100% 0; }  /* streak parked off-screen left, brief intro pause */
    40%, 100% { background-position: 0% 0;   }  /* sweep done, parked off-screen right */
  }
  @media (prefers-reduced-motion: reduce) {
    .capability-side.old-way h3 {
      animation: none;
      background: none;
      color: var(--text-light);
      -webkit-text-fill-color: var(--text-light);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .capability-arrow .block { animation: none; background: rgba(64,112,184,0.6); }
    .capability-arrow .tip   { animation: none; border-left-color: rgba(64,112,184,0.6); }
  }
  @media (max-width: 700px) {
    .capability-arrow { display: none; }
  }
  .capability-side .side-stat {
    font-size: 13px; font-weight: 600; padding-top: 12px;
    border-top: 1px solid var(--border-light);
  }
  .capability-side.old-way .side-stat { color: var(--text-light); }
  .capability-side.new-way .side-stat { color: var(--bc-green); }

  /* Curriculum callout */
  .curriculum-callout {
    display: flex; align-items: center; justify-content: center;
    gap: 32px; max-width: 900px; margin: 0 auto;
    padding: 24px 32px;
    background: var(--bg-stripe);
    border: 1px solid var(--border-light);
    border-radius: 8px;
  }
  .curriculum-callout .curriculum-number {
    font-size: 52px; font-weight: 800; color: var(--bc-blue);
    line-height: 1; min-width: 72px; text-align: center;
  }
  .curriculum-callout .curriculum-text { text-align: left; }
  .curriculum-callout .curriculum-text h4 {
    font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px;
  }
  .curriculum-callout .curriculum-text p {
    font-size: 14px; color: var(--text-body); line-height: 1.6;
  }
  .curriculum-callout .standards-badges {
    display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap;
  }
  .standards-badges .badge-tag {
    display: inline-block; padding: 4px 10px; border-radius: 4px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .standards-badges .badge-tag.national {
    background: rgba(64,112,184,0.1); color: var(--bc-blue);
    border: 1px solid rgba(64,112,184,0.2);
  }
  .standards-badges .badge-tag.state {
    background: rgba(112,184,64,0.08); color: var(--bc-green);
    border: 1px solid rgba(112,184,64,0.2);
  }
  .standards-badges .badge-tag.methods {
    background: rgba(236,151,31,0.08); color: var(--bc-orange);
    border: 1px solid rgba(236,151,31,0.2);
  }
  /* Badges are anchors — give them link affordance without changing color identity */
  a.badge-tag {
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  }
  a.badge-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    text-decoration: none;
  }
  a.badge-tag.national:hover  { background: rgba(64,112,184,0.20);  border-color: rgba(64,112,184,0.45); }
  a.badge-tag.state:hover     { background: rgba(112,184,64,0.16);  border-color: rgba(112,184,64,0.45); }
  a.badge-tag.methods:hover   { background: rgba(236,151,31,0.16);  border-color: rgba(236,151,31,0.45); }

  /* Standards primary CTA — blue shimmer button below the 17-chapter callout */
  .standards-cta-wrap {
    text-align: center;
    margin: 28px auto 0;
  }
  .standards-cta-wrap .preface {
    font-size: 14px;
    color: var(--text-body);
    margin: 0 0 10px;
  }
  .standards-shimmer-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--bc-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.4px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 2px 6px rgba(64,112,184,0.25);
  }
  .standards-shimmer-btn:hover {
    background: var(--bc-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(64,112,184,0.35);
    text-decoration: none;
    color: white;
  }
  .standards-shimmer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.45) 50%, transparent 62%);
    animation: standardsShimmerSweep 5.5s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes standardsShimmerSweep {
    0%   { left: -100%; }
    9%   { left: -100%; }
    48%  { left: 100%; }
    100% { left: 100%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .standards-shimmer-btn::before { animation: none; }
  }
  .standards-shimmer-btn .arrow {
    transition: transform 0.18s ease;
  }
  .standards-shimmer-btn:hover .arrow {
    transform: translateX(3px);
  }

  /* Blue banner inline link — subtle underline that brightens on hover */
  .blue-banner .banner-link {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.45);
    padding-bottom: 1px;
    transition: border-color 0.18s ease;
  }
  .blue-banner .banner-link:hover {
    border-bottom-color: rgba(255,255,255,1);
    text-decoration: none;
    color: white;
  }

  /* ── Outbound callouts cluster ──
     Top cluster (white bg, 900px): capability-block → Program tile (connected).
     Bottom cluster (gray band, full-width container, 1140px content):
     Standards + Outcomes 50-50 horizontal tiles. */

  /* Reduce gap below capability-block so the Program tile reads as its conclusion */
  .capability-block { margin: 0 auto 12px; }

  .program-callout-wide {
    background: white;
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding: 22px 40px 22px;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  }
  .program-callout-wide:hover {
    transform: translateY(-2px);
    border-color: var(--bc-blue);
    box-shadow: 0 4px 18px rgba(64,112,184,0.20);
  }
  /* Patent icon now sits next to the CTA button (was at the top) — pairs the
     "patented" claim visually with the "Tour our patented program" CTA */
  .program-callout-wide .cta-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 2px;
  }
  .program-callout-wide .patent-icon-side {
    height: 80px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }
  @media (max-width: 700px) {
    .program-callout-wide .cta-row { flex-wrap: wrap; gap: 12px; }
    .program-callout-wide .patent-icon-side { height: 64px; }
  }
  .program-callout-wide .equation {
    font-family: inherit;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin: 0 0 4px;
    letter-spacing: -0.3px;
  }
  .program-callout-wide .equation .op {
    color: var(--bc-blue);
    font-weight: 800;
    margin: 0 6px;
  }
  .program-callout-wide .equation .destination {
    color: var(--bc-blue);
  }
  .program-callout-wide .punch {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
  }
  .program-callout-wide .body {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.55;
    margin: 0 auto 16px;
    max-width: 720px;
  }
  .program-callout-wide .innovation-note {
    color: var(--bc-blue);
    font-weight: 700;
  }
  @media (max-width: 700px) {
    .program-callout-wide {
      padding: 22px 22px 20px;
    }
    .program-callout-wide .equation { font-size: 21px; }
  }
  /* Gray proof band — full-width, contains the wider Standards + Outcomes row */
  .reinventing-proof-band {
    background: var(--bg-stripe);
    padding: 48px 32px 56px;
    margin-top: 50px;
  }
  .reinventing-proof-band .outbound-callouts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
  }
  @media (max-width: 900px) {
    .reinventing-proof-band .outbound-callouts { grid-template-columns: 1fr; gap: 18px; }
  }

  .outbound-callout {
    background: white;
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    padding: 30px 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 26px;
    align-items: stretch;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  }
  .outbound-callout .visual {
    align-self: center;
  }
  .outbound-callout .content .outbound-shimmer-btn {
    margin-top: auto;
  }
  .outbound-callout:hover {
    transform: translateY(-3px);
  }
  .outbound-callout.is-blue:hover  { border-color: var(--bc-blue);   box-shadow: 0 4px 18px rgba(64,112,184,0.20); }
  .outbound-callout.is-green:hover { border-color: var(--bc-green);  box-shadow: 0 4px 18px rgba(112,184,64,0.22); }
  .outbound-callout.is-amber:hover { border-color: var(--bc-orange); box-shadow: 0 4px 18px rgba(236,151,31,0.22); }

  .outbound-callout .visual {
    align-self: center;
    justify-self: center;
  }
  .outbound-callout .visual.is-map img {
    width: 200px;
    max-width: 100%;
    display: block;
    transition: transform 0.18s ease;
  }
  .outbound-callout.is-green:hover .visual.is-map img { transform: scale(1.04); }
  .outbound-callout .visual.is-number {
    font-family: inherit;
    font-size: 68px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    min-width: 170px;
    text-align: center;
  }
  .outbound-callout.is-amber .visual.is-number { color: var(--bc-orange); }
  .outbound-callout.is-green .visual.is-number { color: var(--bc-green); }
  .outbound-callout.is-blue  .visual.is-number { color: var(--bc-blue); }

  .outbound-callout .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .outbound-callout .stat-mini {
    font-family: inherit;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 6px;
  }
  .outbound-callout.is-green .stat-mini { color: var(--bc-green); }
  .outbound-callout.is-amber .stat-mini { color: var(--bc-orange); }
  .outbound-callout .tagline {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.25;
  }

  /* Full-width tile title — spans the visual+content grid via grid-column.
     Used by both the Standards (green) and Outcomes (amber) tiles so they
     share the same structural pattern. */
  .outbound-callout .outbound-claim-full {
    grid-column: 1 / -1;
    font-family: inherit;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 4px;
  }
  .outbound-callout.is-green .outbound-claim-full { color: var(--bc-green); }
  .outbound-callout.is-amber .outbound-claim-full { color: var(--bc-orange); }
  @media (max-width: 700px) {
    .outbound-callout .outbound-claim-full { font-size: 24px; }
  }

  /* EIFLE icon visual — same relative slot as the US map. Sized so its visual
     weight roughly matches the map (which renders at ~200×131 after the
     Mercator correction). Icon is square; 126px keeps both visuals balanced. */
  .outbound-callout .visual.is-icon img {
    width: 126px;
    max-width: 100%;
    display: block;
    transition: transform 0.18s ease;
  }
  .outbound-callout.is-amber:hover .visual.is-icon img { transform: scale(1.04); }
  .outbound-callout .body {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.55;
    margin: 0 0 18px;
  }

  @media (max-width: 700px) {
    .outbound-callout {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 14px;
      padding: 26px 22px;
    }
    .outbound-callout .visual,
    .outbound-callout .content { justify-self: center; align-items: center; }
    .outbound-callout .visual.is-map img { width: 220px; }
  }

  /* Generic outbound shimmer button — color modifiers for the three threads */
  .outbound-shimmer-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    text-decoration: none;
    cursor: pointer;
    /* v2.13 IT: prevent the button label from wrapping when the parent
       tile is narrow. "See your state's coverage →" was breaking onto
       two lines on narrow viewports / inside the proof-band tiles. */
    white-space: nowrap;
    align-self: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  }
  .outbound-shimmer-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
  }
  /* :visited override — see jump-pill above; same fix applies here. */
  .outbound-shimmer-btn:visited,
  .outbound-shimmer-btn:active,
  .outbound-shimmer-btn:focus { color: white; }
  .outbound-shimmer-btn.is-blue  { background: var(--bc-blue);   box-shadow: 0 2px 6px rgba(64,112,184,0.25);  }
  .outbound-shimmer-btn.is-blue:hover  { background: var(--bc-blue-dark);  box-shadow: 0 4px 12px rgba(64,112,184,0.35);  }
  .outbound-shimmer-btn.is-green { background: var(--bc-green);  box-shadow: 0 2px 6px rgba(112,184,64,0.25);  }
  .outbound-shimmer-btn.is-green:hover { background: #5da033;            box-shadow: 0 4px 12px rgba(112,184,64,0.35);  }
  .outbound-shimmer-btn.is-amber { background: var(--bc-orange); box-shadow: 0 2px 6px rgba(236,151,31,0.25); }
  .outbound-shimmer-btn.is-amber:hover { background: #d4810e;             box-shadow: 0 4px 12px rgba(236,151,31,0.35); }
  .outbound-shimmer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.45) 50%, transparent 62%);
    animation: outboundShimmerSweep 5.5s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes outboundShimmerSweep {
    0%   { left: -100%; }
    9%   { left: -100%; }
    48%  { left: 100%; }
    100% { left: 100%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .outbound-shimmer-btn::before { animation: none; }
  }
  .outbound-shimmer-btn .arrow { transition: transform 0.18s ease; }
  .outbound-shimmer-btn:hover .arrow { transform: translateX(3px); }

  /* Teacher Spotlight band — quieter single-line bridge before the Teacher CTA */
  .teacher-spotlight-band {
    background: var(--bg-stripe);
    text-align: center;
    padding: 22px 32px;
    font-size: 15px;
    color: var(--text-body);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  .teacher-spotlight-band a {
    color: var(--bc-blue);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(64,112,184,0.40);
    padding-bottom: 1px;
    transition: border-color 0.18s ease, color 0.18s ease;
  }
  .teacher-spotlight-band a:hover {
    color: var(--bc-blue-dark);
    border-bottom-color: var(--bc-blue-dark);
    text-decoration: none;
  }

  /* ─── THREE PILLARS ─── */
  .pillars {
    max-width: 1140px; margin: 0 auto;
    padding: 50px 40px;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pillar {
    background: var(--bg-white);
    border-radius: 8px; padding: 32px 24px;
    border: 1px solid var(--border-card);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .pillar:hover {
    border-color: var(--bc-blue);
    box-shadow: 0 2px 12px rgba(64,112,184,0.1);
  }
  .pillar .pillar-icon {
    width: 44px; height: 44px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px;
  }
  .pillar .pillar-icon.competition { background: rgba(112,184,64,0.1); }
  .pillar .pillar-icon.outcomes { background: rgba(64,112,184,0.1); }
  .pillar .pillar-icon.teachers { background: rgba(236,151,31,0.1); }
  .pillar h3 {
    font-size: 18px; font-weight: 700; margin-bottom: 8px;
    color: var(--text-dark);
  }
  .pillar p {
    font-size: 14px; color: var(--text-body); line-height: 1.7;
  }
  .pillar .pillar-stat {
    margin-top: 18px; padding-top: 14px;
    border-top: 1px solid var(--border-light);
    font-size: 13px; color: var(--bc-blue); font-weight: 600;
  }

  /* ─── CTA SECTIONS ─── */
  .cta-section {
    text-align: center; padding: 50px 40px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  .cta-section h2 {
    font-size: 28px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;
  }
  .cta-section p {
    font-size: 16px; color: var(--text-body); margin-bottom: 28px;
    max-width: 600px; margin-left: auto; margin-right: auto;
  }
  .cta-buttons {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--bc-green); color: white; padding: 12px 32px;
    border: none; border-radius: 4px; font-size: 16px; font-weight: 700;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--bc-green-bright); }
  .btn-secondary {
    background: var(--bg-white); color: var(--text-dark); padding: 12px 32px;
    border: 1px solid var(--border-card); border-radius: 4px;
    font-size: 16px; font-weight: 600; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: all 0.2s;
  }
  .btn-secondary:hover { border-color: var(--bc-blue); color: var(--bc-blue); }

  /* ─── SPONSOR CTA ─── */
  /* ── Privacy statement tile — sits below the audience stack.
     Differently formatted: no colored eyebrow, no button, centered text,
     subtle cool-tinted background. Reads as an institutional trust statement
     rather than a marketing CTA. */
  .privacy-statement {
    padding: 0 32px 60px;
  }
  .privacy-inner {
    max-width: 1140px;
    margin: 0 auto;
    background: #F0F4FA;
    border: 1px solid #DBE3F0;
    border-radius: 8px;
    padding: 30px 44px 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 36px;
    align-items: center;
    text-align: left;
  }
  .privacy-logo {
    width: 150px;
    height: auto;
    display: block;
    flex-shrink: 0;
  }
  .privacy-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 10px;
    letter-spacing: 0.3px;
  }
  .privacy-body {
    font-size: 14.5px;
    color: var(--text-body);
    margin: 0;
    line-height: 1.7;
  }
  .privacy-body strong { color: var(--text-dark); }
  @media (max-width: 760px) {
    .privacy-inner {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 26px 24px 28px;
      text-align: center;
      justify-items: center;
    }
    .privacy-logo { width: 120px; }
    .privacy-title { font-size: 19px; }
  }

  /* ── Audience CTA stack — 4 tiles routing each audience to its destination.
     Teachers (blue) · Parents (green) · Administrators (purple) · Sponsors (gold).
     Shared structure; color modifiers swap eyebrow/border/button accents. */
  .audience-stack {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 40px 60px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .audience-tile {
    background: var(--bg-stripe);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .audience-tile.is-teachers       { border-left: 4px solid var(--bc-blue); }
  .audience-tile.is-parents        { border-left: 4px solid var(--bc-green); }
  .audience-tile.is-administrators { border-left: 4px solid var(--bc-purple); }
  .audience-tile.is-sponsors       { border-left: 4px solid var(--bc-gold); }

  .audience-tile .section-eyebrow {
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .audience-tile.is-teachers       .section-eyebrow { color: var(--bc-blue); }
  .audience-tile.is-parents        .section-eyebrow { color: var(--bc-green); }
  .audience-tile.is-administrators .section-eyebrow { color: var(--bc-purple); }
  .audience-tile.is-sponsors       .section-eyebrow { color: var(--bc-gold); }

  .audience-tile h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
  }
  .audience-tile h3 .blue   { color: var(--bc-blue); }
  .audience-tile h3 .green  { color: var(--bc-green); }
  .audience-tile h3 .purple { color: var(--bc-purple); }
  .audience-tile h3 .gold   { color: var(--bc-gold); }

  .audience-tile p {
    font-size: 14px;
    color: var(--text-body);
    max-width: 600px;
    line-height: 1.7;
    margin: 0;
  }

  /* CTA stack — tiles with both a primary button and a small secondary link.
     Currently used by the Teachers tile (Register + Read Teacher Spotlight). */
  .audience-cta-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .audience-tile .audience-small-link {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid;
    padding-bottom: 1px;
    transition: border-color 0.18s ease, color 0.18s ease;
    white-space: nowrap;
  }
  .audience-tile.is-teachers .audience-small-link {
    color: var(--bc-blue);
    border-bottom-color: rgba(64,112,184,0.4);
  }
  .audience-tile.is-teachers .audience-small-link:hover {
    color: var(--bc-blue-dark);
    border-bottom-color: var(--bc-blue-dark);
    text-decoration: none;
  }
  .audience-tile.is-parents .audience-small-link {
    color: var(--bc-green);
    border-bottom-color: rgba(112,184,64,0.4);
    white-space: normal;
    text-align: center;
  }
  .audience-tile.is-parents .audience-small-link:hover {
    color: #5da033;
    border-bottom-color: #5da033;
    text-decoration: none;
  }

  .audience-btn {
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s ease, transform 0.18s ease;
    cursor: pointer;
    display: inline-block;
  }
  .audience-btn:hover { transform: translateY(-1px); text-decoration: none; color: white; }
  /* :visited override — see jump-pill above; same fix applies here. */
  .audience-btn:visited,
  .audience-btn:active,
  .audience-btn:focus { color: white; }
  /* Outline variant is text-blue not text-white; preserve that on :visited. */
  .audience-tile.is-teachers .audience-btn.is-outline:visited { color: var(--bc-blue); }
  .audience-tile.is-teachers       .audience-btn { background: var(--bc-blue); }
  .audience-tile.is-teachers       .audience-btn:hover { background: var(--bc-blue-dark); }
  /* Outline (ghost) variant — pairs with the primary button as a softer secondary CTA */
  .audience-tile.is-teachers .audience-btn.is-outline {
    background: white;
    color: var(--bc-blue);
    border: 2px solid var(--bc-blue);
    padding: 10px 26px;
  }
  .audience-tile.is-teachers .audience-btn.is-outline:hover {
    background: var(--bc-blue);
    color: white;
  }
  .audience-tile.is-parents        .audience-btn { background: var(--bc-green); }
  .audience-tile.is-parents        .audience-btn:hover { background: #5da033; }
  .audience-tile.is-administrators .audience-btn { background: var(--bc-purple); }
  .audience-tile.is-administrators .audience-btn:hover { background: #3a309a; }
  .audience-tile.is-sponsors       .audience-btn { background: var(--bc-gold); }
  .audience-tile.is-sponsors       .audience-btn:hover { background: #b89530; }

  @media (max-width: 760px) {
    .audience-tile { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px; }
    .audience-tile .section-eyebrow { font-size: 28px; }
  }

  /* Legacy sponsor-cta styles kept for any leftover references; new tiles use .audience-tile */
  .sponsor-cta {
    max-width: 1140px; margin: 0 auto;
    padding: 40px;
  }
  .sponsor-cta-inner {
    background: var(--bg-stripe);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--bc-gold);
    border-radius: 8px; padding: 36px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px;
  }
  .sponsor-cta-inner .section-eyebrow {
    font-size: 35px;
    font-weight: 800;
    color: var(--bc-gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .sponsor-cta-inner h3 {
    font-size: 21px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px;
  }
  .sponsor-cta-inner h3 .gold { color: var(--bc-gold); }
  .sponsor-cta-inner p {
    font-size: 14px; color: var(--text-body); max-width: 600px; line-height: 1.7;
  }
  .btn-sponsor {
    background: var(--bc-gold); color: #FFFFFF; padding: 12px 28px;
    border: none; border-radius: 4px; font-size: 15px; font-weight: 700;
    cursor: pointer; text-decoration: none; white-space: nowrap;
    transition: opacity 0.2s;
  }
  .btn-sponsor:hover { opacity: 0.9; }

  /* ─── FOOTER ─── */
  .site-footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    padding: 36px 40px;
    text-align: center;
    font-size: 12px; color: var(--text-light);
  }
  .site-footer .footer-links { margin-bottom: 14px; }
  .site-footer .footer-links a {
    color: var(--text-body); text-decoration: none; margin: 0 12px;
    font-size: 12px;
  }
  .site-footer .footer-links a:hover { color: var(--bc-blue); }
  .site-footer .patent { color: var(--text-light); margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════
     DNN-ONLY full-width section overrides
     ─────────────────────────────────────────────────────────
     In DNN, the .ascx wraps every named pane in <div class="container">,
     and the existing Budget skin sets a max-width on .container. So a
     full-width background painted on the inner pane content would clip
     at the container edge. Fix: paint the full-width background +
     padding on the OUTER .bc-ss-X section wrapper (which sits OUTSIDE
     the container), and zero out the inner pane's redundant
     background+padding when nested inside the wrapper. These selectors
     don't match in the standalone preview HTML — they only fire under
     DNN where the extra .container is present. Safe to ship in both
     contexts.
     ═══════════════════════════════════════════════════════════ */

  /* AUDIENCE JUMP — full-width gray stripe band (padding reduced ~25%
     in v2.2 to tighten the section vertically). */
  .bc-section.bc-ss-audience-jump {
    background: var(--bg-stripe);
    padding: 16px 0;
    /* IT 2026-05-15 (v2.12): border-top added as the divider line between
       the gradient hero and the gray audience-jump strip. Previously the
       divider was a 1140px-wide border-bottom on .bc-hero (contained) —
       moved here for full viewport width. */
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  .bc-section.bc-ss-audience-jump > .container > #AudienceJumpPane > .audience-jump,
  .bc-section.bc-ss-audience-jump .audience-jump {
    background: transparent;
    padding: 0 32px;
    border-bottom: none;
  }
  /* v2.14 IT: DNN injects .module-container around every HTML/Text module
     with a default ~20px margin-bottom ("DNN module spacing"). On the
     AudienceJumpPane that 20px stacks below the section's intended
     16px padding-bottom and visibly expands the gray strip. Zero it out
     so the section's own padding controls the spacing exactly. */
  .bc-section.bc-ss-audience-jump .module-container {
    margin-bottom: 0;
  }

  /* BLUE BANNER — full-width brand-blue band, with slow 11s shimmer
     overlaid on the OUTER wrapper so the sweep spans the full viewport
     (rather than clipping at the inner .container's 1140px max-width). */
  .bc-section.bc-ss-banner {
    background: var(--bc-blue);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
  }
  /* v2.14 IT: same module-container margin-bottom: 0 override as the
     audience-jump section above. The DNN default 20px below was
     adding blue-band vertical space below the H3 text. */
  .bc-section.bc-ss-banner .module-container {
    margin-bottom: 0;
  }
  .bc-section.bc-ss-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.18) 50%, transparent 62%);
    animation: blueBannerShimmerSweep 11s ease-in-out infinite;
    pointer-events: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .bc-section.bc-ss-banner::before { animation: none; }
  }
  .bc-section.bc-ss-banner > .container > .container,
  .bc-section.bc-ss-banner > .container,
  .bc-section.bc-ss-banner #BannerPane,
  .bc-section.bc-ss-banner .blue-banner {
    position: relative;
    z-index: 1;
  }
  .bc-section.bc-ss-banner > .container > #BannerPane > .blue-banner,
  .bc-section.bc-ss-banner .blue-banner {
    background: transparent;
    padding: 0 32px;
    overflow: visible;
  }
  /* Disable the inner .blue-banner::before in DNN — the outer
     .bc-ss-banner::before above handles the shimmer at viewport width. */
  .bc-section.bc-ss-banner .blue-banner::before { display: none; }

  /* PROOF BAND — full-width gray stripe band */
  .bc-section.bc-ss-proof-band {
    background: var(--bg-stripe);
    padding: 48px 0 56px;
    margin-top: 0;
  }
  .bc-section.bc-ss-proof-band > .container > #ProofBandPane > .reinventing-proof-band,
  .bc-section.bc-ss-proof-band .reinventing-proof-band {
    background: transparent;
    padding: 0 32px;
    margin-top: 0;
  }

  /* SITE FOOTER — full-width light-gray band */
  .bc-site-footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    padding: 36px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
  }

  /* ─── HERO — full-width band (DNN-ONLY section background override) ───
     IT 2026-05-15: the previous hero treatment put the white card + radial
     gradients on the inner .bc-hero pane, capped at the container max-width
     (1140px), with the surrounding .bc-section showing through as a gray
     strip. IT correctly flagged "background confined to module width" —
     should be full viewport. Following the same outer-wrapper pattern as
     .bc-ss-banner and .bc-ss-proof-band: the background + outer padding
     live on .bc-section.bc-ss-hero (full-viewport-width), the inner pane
     is transparent + horizontally-padded. Also reduced vertical padding
     (was 48/40/18 inner + DNN-default outer ≈ 64/0/48 = excess vertical
     space) — now 24/0/16 outer + 0/32/0 inner. */
  .bc-section.bc-ss-hero {
    background:
      radial-gradient(ellipse at top, rgba(64,112,184,0.05) 0%, transparent 65%),
      radial-gradient(ellipse at bottom right, rgba(112,184,64,0.04) 0%, transparent 55%),
      var(--bg-white);
    /* IT 2026-05-15 (v2.12): padding-bottom 16px → 0 so the gradient hero
       ends directly at the audience-jump section's top border. The 16px
       was producing visible white space below the H1 before the gray
       audience-jump section began. */
    padding: 24px 0 0;
  }
  .bc-section.bc-ss-hero > .container > #HeroPane > .bc-hero,
  .bc-section.bc-ss-hero .bc-hero {
    background: transparent;
    padding: 0 32px;
  }
