    :root {
      --brand: #0056a6;
      --brand-dark: #003f7d;
      --text: #1f2933;
      --muted: #6b7280;
      --line: #e5e7eb;
      --soft: #f7f9fb;
      --white: #fff;
      --max: 1080px;
    }
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: #fff;
    }
    a {
      color: inherit;
    }
    .site-header {
      border-bottom: 1px solid var(--line);
      background: #fff;
    }
    .header-inner {
      width: min(calc(100% - 40px), var(--max));
      margin: auto;
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .brand {
      font-weight: 700;
      font-size: 21px;
      letter-spacing: 0.01em;
    }
    .brand span {
      color: var(--brand);
    }
    .header-nav {
      display: flex;
      gap: 24px;
      color: #525b66;
      font-size: 14px;
    }
    .header-nav a {
      text-decoration: none;
    }
    .header-nav a:hover {
      color: var(--brand);
    }

    .page {
      width: 800px;
      margin: 0 auto;
      padding: 34px 0 40px;
    }
    .breadcrumb {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 42px;
    }
    .breadcrumb a {
      color: var(--muted);
      text-decoration: none;
    }
    .breadcrumb a:hover {
      color: var(--brand);
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 30px;
      align-items: end;
      padding-bottom: 30px;
      border-bottom: 1px solid var(--line);
    }
    .eyebrow {
      margin: 0 0 7px;
      color: var(--brand);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 12px;
      font-weight: 700;
    }
    h1 {
      margin: 0;
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1.05;
      letter-spacing: -0.035em;
    }
    .hero p:last-child {
      max-width: 650px;
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }
    .hero-mark {
      font-size: 13px;
      color: var(--muted);
      padding-bottom: 6px;
    }

    .section {
      margin-top: 42px;
    }
    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      margin-bottom: 18px;
    }
    .section-head h2 {
      margin: 0;
      font-size: 20px;
    }
    .section-head span {
      color: var(--muted);
      font-size: 13px;
    }

    /* Search */
    .report-tools {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      padding: 16px;
      margin-bottom: 14px;
      border: 1px solid var(--line);
      background: var(--soft);
      border-radius: 6px;
    }
    .search-wrap {
      position: relative;
      flex: 1;
      max-width: 440px;
    }
    .search-wrap input {
      width: 100%;
      height: 44px;
      padding: 0 44px 0 15px;
      border: 1px solid #cfd6dc;
      border-radius: 5px;
      background: #fff;
      color: var(--text);
      font: inherit;
      font-size: 14px;
    }
    .search-wrap input:focus {
      outline: 3px solid rgba(0, 86, 166, 0.14);
      border-color: var(--brand);
    }
    .search-icon {
      position: absolute;
      top: 50%;
      right: 14px;
      transform: translateY(-50%);
      color: var(--muted);
      pointer-events: none;
    }
    .clear-btn {
      border: 0;
      padding: 0;
      background: none;
      color: var(--brand);
      font: inherit;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
    }
    .clear-btn:hover {
      text-decoration: underline;
    }
    .results-count {
      color: var(--muted);
      font-size: 13px;
      white-space: nowrap;
    }

    .reports {
      border-top: 1px solid var(--line);
      max-height: 420px;
      overflow-y: auto;
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: var(--brand) var(--soft);
    }
    .reports::-webkit-scrollbar {
      width: 8px;
    }
    .reports::-webkit-scrollbar-track {
      background: var(--soft);
    }
    .reports::-webkit-scrollbar-thumb {
      background-color: var(--brand);
      border-radius: 8px;
      border: 2px solid var(--soft);
    }
    .reports::-webkit-scrollbar-thumb:hover {
      background-color: var(--brand-dark);
    }
    .report-row {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(140px, 0.55fr) 100px;
      gap: 28px;
      align-items: center;
      min-height: 84px;
      padding: 18px 8px;
      border-bottom: 1px solid var(--line);
      text-decoration: none;
      transition:
        background-color 0.18s ease,
        padding-left 0.18s ease;
    }
    .report-row::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--brand);
      transform: scaleY(0);
      transform-origin: center;
      transition: transform 0.18s ease;
    }
    .report-row:hover {
      background: var(--soft);
      padding-left: 16px;
    }
    .report-row:hover::before {
      transform: scaleY(1);
    }
    .report-title-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }
    .report-title {
      font-size: 17px;
      font-weight: 700;
    }
    .latest {
      display: inline-flex;
      align-items: center;
      border: 1px solid #cfe0f0;
      background: #eef6fd;
      color: var(--brand);
      border-radius: 999px;
      padding: 4px 8px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .report-year {
      color: var(--muted);
      font-size: 15px;
      white-space: nowrap;
    }
    .report-view {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 9px;
      color: var(--brand);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      border-radius: 4px;
    }
    .report-view:hover {
      text-decoration: underline;
    }
    .report-view:hover .view-icon,
    .report-view:focus-visible .view-icon {
      color: #fff;
      background: var(--brand);
      transform: translate(2px, -2px);
    }
    .report-view:focus-visible {
      outline: 3px solid rgba(0, 86, 166, 0.24);
      outline-offset: 3px;
    }
    .view-icon {
      display: inline-grid;
      place-items: center;
      width: 32px;
      height: 32px;
      border: 1px solid var(--brand);
      border-radius: 50%;
      transition:
        background-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
    }
    .report-row:hover .view-icon {
      color: #fff;
      background: var(--brand);
      transform: translate(2px, -2px);
    }

    .report-row.is-match {
      background: #eef6fd;
      box-shadow: inset 0 0 0 1px #cfe0f0;
      padding-left: 16px;
    }
    .report-row.is-match::before {
      transform: scaleY(1);
    }
    .report-row.is-match .report-title {
      color: var(--brand-dark);
    }
    .report-row.is-match .report-year {
      color: var(--brand);
      font-weight: 700;
    }
    .report-row.is-match .view-icon {
      background: var(--brand);
      color: #fff;
    }

    .report-row-disabled {
      cursor: default;
    }
    .report-row-disabled:hover {
      background: inherit;
      padding-left: 8px;
    }
    .report-row-disabled:hover::before {
      transform: scaleY(0);
    }
    .report-unavailable {
      color: var(--muted);
      font-weight: 600;
    }

    .report-row:focus-visible {
      outline: 3px solid rgba(0, 86, 166, 0.24);
      outline-offset: 3px;
    }

    .empty-state {
      display: none;
      padding: 36px 18px;
      text-align: center;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      background: #fff;
    }
    .empty-state strong {
      display: block;
      color: var(--text);
      margin-bottom: 6px;
    }

    .note {
      margin-top: 28px;
      padding: 18px 20px;
      background: var(--soft);
      border: 1px solid var(--line);
      border-radius: 6px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    @media (max-width: 720px) {
      .header-inner,
      .page {
        width: min(calc(100% - 28px), var(--max));
      }
      .header-nav {
        display: none;
      }
      .page {
        padding-top: 22px;
      }
      .breadcrumb {
        margin-bottom: 30px;
      }
      .hero {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .hero-mark {
        display: none;
      }
      .section {
        margin-top: 30px;
      }
      .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
      }
      .report-tools {
        align-items: stretch;
        flex-direction: column;
      }
      .search-wrap {
        max-width: none;
      }
      .results-count {
        padding-left: 2px;
      }
      .report-row {
        grid-template-columns: 1fr auto;
        gap: 6px 16px;
        min-height: 92px;
        padding: 16px 4px;
      }
      .report-title-wrap {
        grid-column: 1;
        flex-wrap: wrap;
        gap: 8px 10px;
      }
      .report-year {
        grid-column: 1;
        grid-row: 2;
      }
      .report-view {
        grid-column: 2;
        grid-row: 1 / span 2;
      }
      .report-row:hover {
        padding-left: 10px;
      }
      .reports {
        max-height: 360px;
        -webkit-overflow-scrolling: touch;
      }
    }