/* ── Reset & Base ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Montserrat', sans-serif;
    background: #f7f6f3;
    color: #1a1a1a;
    font-size: 15px;
    line-height: 1.6;
  }

  /* ── CSS Variables ── */
  :root {
    --green:           #23a23a;
    --green-dark:      #1b7d2d;
    --green-light:     #eaf5ec;
    --copper:          #b87333;
    --white:           #ffffff;
    --border:          #e4e2dc;
    --text-primary:    #1a1a1a;
    --text-secondary:  #555551;
    --text-muted:      #888883;
    --radius-md:       10px;
    --radius-lg:       16px;
    --shadow:          0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
    --shadow-hover:    0 2px 8px rgba(0,0,0,0.10), 0 8px 24px rgba(0,0,0,0.06);
    --shadow-card:     0 2px 12px rgba(0,0,0,0.07), 0 8px 32px rgba(0,0,0,0.05);
  }

  /* ── Page Intro ── */
  .page-intro {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 3rem 2rem 2.5rem;
    text-align: center;
  }
  .page-intro-inner { max-width: 640px; margin: 0 auto; }
  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 0.5rem;
    font-family: 'IBM Plex Sans', sans-serif;
  }
  .page-intro h1 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }
  .page-intro p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
  }
  .page-intro p + p { margin-top: 0.85rem; }

  /* ── Main Wrap ── */
  .report-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 2rem 3.5rem;
  }

  /* ── Featured Live Report Card ── */
  .live-card {
    background: var(--white);
    border: 1.5px solid var(--green);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-decoration: none !important;
    color: inherit !important;
  }
  .live-card:hover { color: inherit !important; }
  .live-card-icon {
    width: 200px;
    height: 140px;
    border-radius: var(--radius-md);
    background: var(--green-light);
    color: var(--green-dark);
    overflow: hidden;
    flex-shrink: 0;
  }
  .live-card-icon img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
  }
  .live-card-body h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
  }
  .live-card-body p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
  }
  .live-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(35,162,58,0.25);
    transition: background 0.15s, transform 0.1s;
  }
  .live-card:hover .live-card-cta {
    background: var(--green-dark);
    transform: translateY(-1px);
  }
  .live-card-cta::after { content: '→'; }

  /* ── Section Heading ── */
  .downloads-header {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .downloads-header::before,
  .downloads-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  /* ── PDF Download Cards ── */
  .downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .download-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    text-decoration: none !important;
    color: var(--text-primary) !important;
    text-align: center;
    transition: border-color 0.15s, transform 0.1s, box-shadow 0.15s;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
  }
  .download-card:hover {
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--text-primary) !important;
  }
  .download-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.85rem;
    border-radius: var(--radius-md);
    background: #fdeae0;
    color: var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .download-card h3 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    line-height: 1.3;
  }
  .download-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.9rem;
    flex: 1;
  }
  .download-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--green-dark);
  }
  .download-meta::after { content: '↓'; font-size: 13px; }

  /* ── What's Included Section ── */
  .included-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
  }
  .included-section h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
  }
  .included-section .included-sub {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.65;
  }
  .included-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
  }
  .included-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
  }
  .included-grid li::before {
    content: '✓';
    font-size: 13px;
    color: var(--green);
    font-weight: 700;
    width: 20px;
    height: 20px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* ── Bottom CTA ── */
  .bottom-cta {
    text-align: center;
    padding: 1rem 0 0;
  }
  .bottom-cta p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
  }
  .bottom-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 2px 12px rgba(35,162,58,0.25);
    transition: background 0.15s, transform 0.1s;
  }
  .bottom-cta a:hover {
    background: var(--green-dark);
    color: #fff !important;
    transform: translateY(-1px);
  }
  .bottom-cta a::after { content: '→'; }

  /* ── Responsive ── */
  @media (max-width: 720px) {
    .live-card {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 1rem;
    }
    .live-card-icon { margin: 0 auto; }
    .live-card-cta { justify-content: center; }
    .downloads-grid { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .page-intro h1 { font-size: 26px; }
    .report-wrap { padding: 1.5rem 1rem 2.5rem; }
    .live-card, .included-section { padding: 1.5rem; }
  }
