@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");
  :root{
    --navy-900:#0A1B3D;
    --navy-800:#0F2352;
    --navy-700:#152C63;
    --blue-accent:#1E4FBF;
    --gold:#E8A33D;
    --gold-dark:#C4841F;
    --bg-page:#F5F7FB;
    --bg-card:#FFFFFF;
    --border:#E4E9F2;
    --text-dark:#131B34;
    --text-body:#4A5573;
    --text-muted:#8891A6;
    --green:#1D9C5C;
    --radius-lg:20px;
    --radius-md:14px;
    --radius-pill:999px;
    --shadow-card:0 4px 18px rgba(16,32,79,0.06);
    --shadow-card-hover:0 10px 28px rgba(16,32,79,0.10);
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Inter',sans-serif;
    color:var(--text-dark);
    background:var(--bg-page);
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{font-family:'Poppins',sans-serif;margin:0;color:var(--navy-900);}
  p{margin:0;}
  a{text-decoration:none;color:inherit;}
  img,svg{display:block;max-width:100%;}
  button{font-family:inherit;cursor:pointer;}
  .wrap{max-width:1240px;margin:0 auto;padding:0 32px;}

  :focus-visible{outline:2px solid var(--gold);outline-offset:3px;}

  /* ===== Header ===== */
  .site-header{
    background:#fff;
    border-bottom:1px solid var(--border);
    position:sticky;top:0;z-index:100;
  }
  .header-inner{
    display:flex;align-items:center;justify-content:space-between;
    padding:14px 32px;max-width:1240px;margin:0 auto;gap:24px;
  }
  .logo{display:flex;align-items:center;gap:10px;}
  .logo-mark{
    font-family:'Poppins',sans-serif;font-weight:800;font-size:26px;
    color:#E23744;letter-spacing:0.5px;
  }
  .logo-text{
    font-size:10.5px;line-height:1.25;font-weight:700;color:var(--navy-900);
    letter-spacing:0.3px;
  }
  .nav-desktop{display:flex;align-items:center;gap:30px;}
  .nav-desktop a{
    font-size:14px;font-weight:600;color:var(--navy-900);
    padding:6px 2px;position:relative;white-space:nowrap;
  }
  .nav-desktop a.active{color:var(--blue-accent);}
  .nav-desktop a.active::after{
    content:'';position:absolute;left:0;right:0;bottom:-19px;height:2px;background:var(--blue-accent);
  }
  .nav-desktop .caret{font-size:10px;margin-left:4px;color:var(--text-muted);}
  .header-actions{display:flex;align-items:center;gap:18px;}
  .btn-pill{
    display:inline-flex;align-items:center;gap:8px;
    background:var(--gold);color:var(--navy-900);
    font-weight:700;font-size:13px;letter-spacing:0.2px;
    padding:11px 22px;border-radius:var(--radius-pill);border:none;
    transition:background .2s ease, transform .2s ease;
  }
  .btn-pill:hover{background:var(--gold-dark);transform:translateY(-1px);}
  .icon-btn{
    width:38px;height:38px;border-radius:50%;border:1px solid var(--border);
    display:flex;align-items:center;justify-content:center;background:#fff;
    color:var(--navy-900);flex-shrink:0;
  }
  .hamburger{display:none;background:none;border:none;padding:6px;}
  .hamburger span{display:block;width:22px;height:2px;background:var(--navy-900);margin:5px 0;border-radius:2px;}

  .mobile-nav{
    display:none;flex-direction:column;background:#fff;border-top:1px solid var(--border);
    padding:8px 32px 18px;
  }
  .mobile-nav a{padding:12px 0;font-weight:600;font-size:15px;border-bottom:1px solid var(--border);color:var(--navy-900);}
  .mobile-nav a.active{color:var(--blue-accent);}
  .mobile-nav .btn-pill{justify-content:center;margin-top:14px;}

  /* ===== Breadcrumb ===== */
  .breadcrumb{background:#fff;}
  .breadcrumb .wrap{padding:14px 32px;font-size:13px;color:var(--text-muted);display:flex;gap:8px;align-items:center;flex-wrap:wrap;}
  .breadcrumb a{color:var(--text-muted);font-weight:500;}
  .breadcrumb a:hover{color:var(--blue-accent);}
  .breadcrumb .current{color:var(--navy-900);font-weight:600;}

  /* ===== Hero ===== */
  .hero{
    background:linear-gradient(120deg,var(--navy-900) 0%,var(--navy-700) 55%,#1B3D82 100%);
    position:relative;overflow:hidden;
  }
  .hero .wrap{
    display:grid;grid-template-columns:1.05fr 0.95fr;align-items:center;gap:40px;
    padding:64px 32px;
  }
  .hero-eyebrow{
    color:var(--gold);font-weight:700;font-size:13px;letter-spacing:1.6px;
    margin-bottom:14px;
  }
  .hero h1{color:#fff;font-size:42px;line-height:1.15;font-weight:700;margin-bottom:18px;}
  .hero p{color:#C7D1EA;font-size:16px;line-height:1.7;max-width:520px;}
  .hero-art{width:100%;height:auto;}

  /* ===== Section shells ===== */
  section{padding:64px 0;}
  .section-eyebrow{
    display:flex;flex-direction:column;gap:10px;margin-bottom:32px;
  }
  .section-eyebrow h2{font-size:24px;font-weight:700;letter-spacing:0.3px;}
  .eyebrow-bar{width:46px;height:4px;background:var(--gold);border-radius:2px;}
  .sub-note{font-weight:400;font-size:12.5px;color:var(--text-muted);text-transform:none;letter-spacing:0;margin-left:8px;}

  /* ===== Highlights ===== */
  .highlights-grid{
    display:grid;grid-template-columns:repeat(5,1fr);gap:20px;
  }
  .highlight-card{
    background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);
    padding:28px 20px;text-align:center;box-shadow:var(--shadow-card);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .highlight-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-card-hover);}
  .highlight-icon{
    width:56px;height:56px;border-radius:50%;background:var(--navy-900);
    display:flex;align-items:center;justify-content:center;margin:0 auto 16px;
  }
  .highlight-icon svg{width:26px;height:26px;}
  .highlight-label{font-size:13px;font-weight:600;color:var(--text-body);margin-bottom:10px;}
  .highlight-value{font-family:'Poppins',sans-serif;font-size:24px;font-weight:700;color:var(--navy-900);margin-bottom:6px;}
  .highlight-period{font-size:12px;color:var(--text-muted);margin-bottom:8px;}
  .highlight-delta{font-size:12.5px;font-weight:700;color:var(--green);display:inline-flex;align-items:center;gap:4px;}
  .highlights-footnote{margin-top:18px;font-size:12px;color:var(--text-muted);}

  /* ===== Quarterly table ===== */
  .qr-head{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;margin-bottom:0;}
  .fy-select{
    appearance:none;-webkit-appearance:none;
    background:#fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path d="M1 1l5 5 5-5" stroke="%23131B34" stroke-width="1.6" fill="none" fill-rule="evenodd"/></svg>') no-repeat right 16px center;
    border:1px solid var(--border);border-radius:var(--radius-pill);
    padding:11px 40px 11px 20px;font-size:13.5px;font-weight:600;color:var(--navy-900);
    min-width:150px;
  }
  .table-scroll{
    margin-top:26px;overflow-x:auto;border-radius:var(--radius-lg);
    box-shadow:var(--shadow-card);border:1px solid var(--border);
  }
  table{width:100%;border-collapse:collapse;min-width:720px;background:#fff;}
  thead th{
    background:var(--navy-900);color:#fff;text-align:left;
    font-family:'Poppins',sans-serif;font-weight:600;font-size:14px;
    padding:18px 22px;white-space:nowrap;
  }
  thead th:first-child{position:sticky;left:0;z-index:10;background:var(--navy-900);}
  thead th span{display:block;font-family:'Inter',sans-serif;font-weight:400;font-size:11.5px;color:#B7C2E2;margin-top:3px;}
  tbody td{
    padding:16px 22px;font-size:14px;color:var(--text-dark);border-bottom:1px solid var(--border);white-space:nowrap;
  }
  tbody td:first-child{
    font-weight:600;color:var(--navy-900);white-space:normal;
    position:sticky;left:0;background:inherit;z-index:9;
    min-width:280px;max-width:280px;
  }
  tbody td a{
    display:inline-flex;align-items:center;gap:6px;
    color:var(--blue-accent);font-weight:700;font-size:13px;
    transition:color 0.2s ease;
    text-decoration:none;
  }
  tbody td a:hover{color:var(--blue-accent);opacity:0.8;}
  tbody td a i{font-size:12px;}
  tbody tr:last-child td{border-bottom:none;}
  tbody tr:nth-child(even) td{background:#FAFBFE;}
  tbody tr:nth-child(even) td:first-child{background:#FAFBFE;}

  .btn-outline{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    border:1.5px solid var(--blue-accent);color:var(--blue-accent);
    font-weight:700;font-size:13px;letter-spacing:0.3px;
    padding:13px 26px;border-radius:var(--radius-pill);background:#fff;
    font-family:inherit;cursor:pointer;outline:none;
    transition:background .2s ease,color .2s ease,border-color .2s ease;
  }
  .btn-outline:hover{background:var(--blue-accent);color:#fff;}
  .btn-outline svg{transition:transform .2s ease;}
  .btn-outline:hover svg{transform:translateX(3px);}
  .view-all-wrap{display:flex;justify-content:center;margin-top:30px;}

  /* ===== Downloads ===== */
  .downloads-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;}
  .doc-card{
    background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);
    padding:22px 18px;text-align:center;box-shadow:var(--shadow-card);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .doc-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-card-hover);}
  .doc-icon{
    width:50px;height:50px;border-radius:50%;background:var(--navy-900);
    display:flex;align-items:center;justify-content:center;margin:0 auto 14px;
  }
  .doc-icon svg{width:22px;height:22px;}
  .doc-title{font-size:14px;font-weight:700;color:var(--navy-900);margin-bottom:4px;}
  .doc-period{font-size:12px;color:var(--text-muted);margin-bottom:14px;}
  .doc-meta{display:flex;align-items:center;justify-content:center;gap:10px;font-size:12px;color:var(--text-muted);font-weight:600;}
  .doc-meta a{color:var(--blue-accent);display:flex;}

  /* ===== Note banner ===== */
  .note-banner{
    display:flex;gap:14px;align-items:flex-start;
    background:#EDF1FB;border:1px solid #DCE4F7;border-radius:var(--radius-md);
    padding:20px 24px;margin-top:8px;
  }
  .note-banner .icon{
    width:26px;height:26px;border-radius:50%;background:var(--navy-900);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px;
  }
  .note-banner .icon svg{width:13px;height:13px;}
  .note-banner p{font-size:13.5px;line-height:1.65;color:var(--text-body);}
  .note-banner strong{color:var(--navy-900);}

  /* ===== Support banner ===== */
  .support-banner{
    background:linear-gradient(120deg,var(--navy-900),var(--navy-700));
    border-radius:var(--radius-lg);
    display:grid;grid-template-columns:200px 1fr auto;align-items:center;gap:32px;
    padding:40px 44px;
  }
  .support-art{
    width:150px;height:110px;
  }
  .support-text h3{color:#fff;font-size:20px;margin-bottom:8px;}
  .support-text p{color:#C7D1EA;font-size:14px;line-height:1.6;max-width:460px;}
  .support-banner .btn-outline{background:#fff;color:var(--navy-900);border-color:#fff;white-space:nowrap;}
  .support-banner .btn-outline:hover{background:transparent;color:#fff;}

  /* ===== Footer ===== */
  footer{background:var(--navy-900);color:#C7D1EA;padding:56px 0 0;}
  .footer-grid{
    display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .footer-brand .logo-mark{color:#fff;}
  .footer-brand .logo-text{color:#C7D1EA;}
  .footer-brand p{margin-top:16px;font-size:13.5px;line-height:1.7;color:#9FADD1;max-width:280px;}
  .social-row{display:flex;gap:10px;margin-top:20px;}
  .social-row a{
    width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,0.08);
    display:flex;align-items:center;justify-content:center;
  }
  .social-row a svg{width:15px;height:15px;fill:#fff;}
  .footer-col h4{color:#fff;font-size:13.5px;letter-spacing:0.5px;margin-bottom:18px;}
  .footer-col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px;}
  .footer-col a{font-size:13.5px;color:#B7C2E2;}
  .footer-col a:hover{color:var(--gold);}
  .footer-contact li{display:flex;align-items:flex-start;gap:10px;font-size:13.5px;color:#B7C2E2;}
  .footer-contact svg{width:15px;height:15px;flex-shrink:0;margin-top:2px;}
  .footer-bottom{
    display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;
    padding:22px 0;font-size:12.5px;color:#8791B5;
  }
  .footer-legal{display:flex;gap:18px;flex-wrap:wrap;}
  .footer-legal a{color:#8791B5;}
  .footer-legal a:hover{color:#fff;}

  /* ===================== RESPONSIVE ===================== */
  @media (max-width:1080px){
    .highlights-grid{grid-template-columns:repeat(3,1fr);}
    .downloads-grid{grid-template-columns:repeat(3,1fr);}
    .footer-grid{grid-template-columns:1.2fr 1fr 1fr;}
    .footer-contact{grid-column:span 1;}
  }

  @media (max-width:900px){
    .hero .wrap{grid-template-columns:1fr;padding:48px 24px;}
    .hero-art{order:-1;max-width:320px;margin:0 auto;}
    .hero h1{font-size:32px;}
    .support-banner{grid-template-columns:1fr;text-align:center;padding:36px 28px;}
    .support-art{margin:0 auto;}
    .support-text p{margin:0 auto;}
  }

  @media (max-width:768px){
    .wrap{padding:0 20px;}
    .nav-desktop{display:none;}
    .header-actions .btn-pill span.btn-label{display:none;}
    .hamburger{display:block;}
    .mobile-nav.open{display:flex;}
    .breadcrumb .wrap{padding:12px 20px;}
    section{padding:44px 0;}
    .highlights-grid{grid-template-columns:repeat(2,1fr);}
    .downloads-grid{grid-template-columns:repeat(2,1fr);}
    .footer-grid{grid-template-columns:1fr 1fr;padding-bottom:28px;}
    .footer-brand{grid-column:span 2;}
    .qr-head{align-items:flex-start;}
  }

  @media (max-width:520px){
    .header-inner{padding:12px 20px;}
    .logo-text{display:none;}
    .hero h1{font-size:26px;}
    .hero p{font-size:14.5px;}
    .section-eyebrow h2{font-size:20px;}
    .highlights-grid{grid-template-columns:1fr 1fr;gap:14px;}
    .highlight-card{padding:20px 14px;}
    .highlight-value{font-size:20px;}
    .downloads-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;}
    .footer-brand{grid-column:span 1;}
    .footer-bottom{flex-direction:column;align-items:flex-start;}
    .btn-pill{padding:10px 16px;}
  }