:root {
  --navy-950: #07182f;
  --navy-900: #0d2444;
  --navy-800: #16345d;
  --blue-100: #e9f1fa;
  --orange-500: #f07b2d;
  --orange-100: #fff1e8;
  --green-100: #eaf7ef;
  --green-700: #226b3d;
  --yellow-100: #fff7db;
  --yellow-800: #8b6114;
  --neutral-50: #f7f8fa;
  --neutral-100: #eef1f4;
  --neutral-200: #dbe1e8;
  --neutral-500: #637083;
  --neutral-700: #354154;
  --white: #ffffff;
  --line: #cfd6df;
  --radius: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--neutral-700);
  background: var(--neutral-50);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

button,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(219, 225, 232, 0.84);
  background: var(--white);
}

.site-header::before {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--orange-500);
  content: "";
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  padding-block: 22px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.agency-logo {
  display: block;
  width: 292px;
  max-width: 54vw;
  height: auto;
}

.report-cover {
  border-bottom: 1px solid var(--neutral-200);
  background: var(--white);
  color: var(--navy-900);
}

.cover-inner {
  padding-block: 34px 38px;
}

.cover-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid var(--navy-900);
  padding-bottom: 14px;
  color: var(--neutral-500);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  padding-top: 28px;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--orange-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.report-cover h1,
.statement-box h2,
.section-heading h2 {
  margin: 0;
  color: inherit;
  font-weight: 800;
  line-height: 1.08;
}

.report-cover h1 {
  max-width: 720px;
  font-size: 3rem;
}

.cover-title p:last-child {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--neutral-500);
  font-size: 1rem;
}

.cover-info {
  align-self: start;
  border-top: 3px solid var(--orange-500);
  background: var(--white);
}

.cover-info dl {
  margin: 0;
}

.cover-info div {
  border: 1px solid var(--line);
  border-top: 0;
  padding: 13px 16px;
}

.cover-info dt {
  margin-bottom: 4px;
  color: var(--neutral-500);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cover-info dd {
  margin: 0;
  color: var(--navy-900);
  font-weight: 800;
  line-height: 1.35;
}

.cover-info dd span {
  display: block;
  margin-top: 3px;
  color: var(--neutral-500);
  font-size: 0.9rem;
  font-weight: 700;
}

.cover-info dd strong {
  color: inherit;
  font: inherit;
}

.cover-info a {
  color: var(--navy-900);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(240, 123, 45, 0.55);
  text-underline-offset: 3px;
}

.section-band {
  background: var(--white);
}

.statement-section {
  border-bottom: 1px solid var(--neutral-200);
}

.statement-box {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px;
  padding-block: 34px;
}

.statement-box h2,
.section-heading h2 {
  color: var(--navy-900);
  font-size: 1.72rem;
}

.statement-box p:last-child {
  margin: 0;
  border-left: 3px solid var(--neutral-200);
  padding-left: 18px;
  color: var(--neutral-700);
  font-size: 1rem;
}

.reports-section {
  padding-block: 44px 68px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.report-actions {
  display: flex;
  gap: 10px;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
  font-size: 1.15rem;
}

.icon-button:hover {
  border-color: rgba(240, 123, 45, 0.4);
  background: var(--orange-100);
}

.filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--white);
}

.filter-label {
  color: var(--navy-900);
  font-weight: 800;
}

.month-filter {
  min-width: 240px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: var(--white);
  color: var(--neutral-700);
  cursor: pointer;
}

.reports-list {
  display: grid;
  gap: 14px;
}

.report-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.report-card.is-latest {
  border-color: var(--navy-800);
}

.report-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  background: var(--neutral-50);
}

.report-toggle {
  width: 100%;
  border: 0;
  padding: 18px 20px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.report-toggle:hover {
  background: var(--neutral-100);
}

.month-print-button {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  gap: 8px;
  border: 0;
  border-left: 1px solid var(--line);
  padding: 0 18px;
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.month-print-button:hover {
  background: var(--neutral-100);
}

.report-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--neutral-500);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.report-kicker strong {
  color: var(--navy-900);
  font-size: 0.84rem;
}

.report-kicker em {
  border-left: 2px solid var(--orange-500);
  padding-left: 10px;
  color: var(--orange-500);
  font-size: 0.74rem;
  font-style: normal;
}

.report-title-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
}

.report-title-wrap strong,
.report-title-wrap small {
  display: block;
}

.report-title-wrap strong {
  color: var(--navy-900);
  font-size: 1.18rem;
  line-height: 1.28;
}

.report-title-wrap small {
  margin-top: 5px;
  color: var(--neutral-500);
  font-size: 0.95rem;
  font-weight: 600;
}

.toggle-icon {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}

.toggle-icon::before,
.toggle-icon::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-900);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.report-toggle[aria-expanded="true"] .toggle-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.report-content {
  border-top: 1px solid var(--line);
  padding: 22px 20px 24px;
  animation: reveal 220ms ease;
}

.print-month-heading {
  display: none;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.report-meta {
  margin-bottom: 22px;
}

.report-meta dl {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0;
  border: 1px solid var(--line);
}

.report-meta div {
  padding: 11px 12px;
}

.report-meta div + div {
  border-left: 1px solid var(--line);
}

.report-meta dt {
  margin-bottom: 3px;
  color: var(--neutral-500);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.report-meta dd {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.report-meta dd span {
  display: block;
  margin-top: 3px;
  color: var(--neutral-500);
  font-size: 0.8rem;
  font-weight: 700;
}

.report-block + .report-block {
  margin-top: 24px;
}

.report-block h3 {
  margin: 0 0 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  color: var(--navy-900);
  font-size: 1rem;
  text-transform: uppercase;
}

.report-block p {
  margin: 0;
  color: var(--neutral-700);
}

.activity-group {
  margin-top: 16px;
}

.activity-group h4 {
  margin: 0 0 8px;
  color: var(--navy-800);
  font-size: 1rem;
}

.activity-group ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}

.activity-group li::marker {
  color: var(--orange-500);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0;
}

.deliverables-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.deliverables-table th,
.deliverables-table td {
  border-bottom: 1px solid var(--line);
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
}

.deliverables-table th {
  background: var(--neutral-100);
  color: var(--navy-900);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.deliverables-table th:first-child,
.deliverables-table td:first-child {
  width: 70px;
  text-align: center;
}

.deliverables-table tr:last-child td {
  border-bottom: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 3px 8px;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill.is-done {
  color: var(--green-700);
}

.status-pill.is-progress {
  color: var(--yellow-800);
}

.status-pill.is-pending,
.status-pill.is-neutral {
  color: var(--neutral-700);
}

.site-footer {
  border-top: 1px solid rgba(240, 123, 45, 0.34);
  background: var(--orange-500);
  color: var(--white);
}

.footer-note {
  padding-block: 26px;
}

.footer-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-note p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-note .copyright {
  margin-top: 12px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .header-inner,
  .statement-box,
  .section-heading,
  .filters,
  .footer-note {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 78px;
    padding-block: 14px;
  }

  .agency-logo {
    width: 224px;
  }

  .cover-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .report-cover h1 {
    font-size: 2.55rem;
  }

  .cover-inner {
    padding-block: 34px 40px;
  }

  .statement-box,
  .reports-section {
    padding-block: 52px;
  }

  .statement-box p:last-child {
    border-left: 0;
    border-top: 3px solid var(--neutral-200);
    padding: 14px 0 0;
  }

  .report-meta dl {
    grid-template-columns: 1fr;
  }

  .report-meta div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .month-filter {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .cover-topline {
    display: grid;
    gap: 4px;
  }

  .report-cover h1 {
    font-size: 2.2rem;
  }

  .report-toggle {
    padding: 20px;
  }

  .report-card-header {
    grid-template-columns: 1fr;
  }

  .month-print-button {
    justify-content: center;
    min-height: 44px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .report-title-wrap strong {
    font-size: 1.08rem;
  }

  .report-content {
    padding: 22px 18px 24px;
  }

  .deliverables-table,
  .deliverables-table thead,
  .deliverables-table tbody,
  .deliverables-table th,
  .deliverables-table td,
  .deliverables-table tr {
    display: block;
    min-width: 0;
  }

  .deliverables-table thead {
    display: none;
  }

  .deliverables-table tr {
    border-bottom: 1px solid var(--line);
    padding: 12px 14px;
  }

  .deliverables-table tr:last-child {
    border-bottom: 0;
  }

  .deliverables-table td {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    border: 0;
    padding: 7px 0;
    text-align: left;
  }

  .deliverables-table td::before {
    color: var(--neutral-500);
    content: attr(data-label);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }
}

@media print {
  .filters,
  .report-actions,
  .toggle-icon,
  .month-print-button,
  #document-updated {
    display: none;
  }

  .site-header {
    position: static;
  }

  .site-header::before {
    height: 0;
  }

  .header-inner {
    min-height: auto;
    padding-block: 0 14px;
  }

  .agency-logo {
    width: 160px;
  }

  body {
    background: var(--white);
    color: #000;
  }

  .cover-inner,
  .statement-box,
  .reports-section {
    padding-block: 24px;
  }

  .report-content {
    display: block !important;
  }

  .report-content[hidden] {
    display: block;
  }

  .report-card {
    break-inside: avoid;
    box-shadow: none;
  }

  .report-toggle {
    background: var(--white);
  }

  .print-month-heading {
    display: block;
    margin-bottom: 18px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
  }

  .print-month-heading span,
  .print-month-heading strong,
  .print-month-heading small {
    display: block;
  }

  .print-month-heading span {
    color: #444;
    font-size: 10pt;
    font-weight: 800;
    text-transform: uppercase;
  }

  .print-month-heading strong {
    margin-top: 3px;
    color: #000;
    font-size: 18pt;
  }

  .print-month-heading small {
    margin-top: 6px;
    color: #444;
    font-size: 9pt;
    font-weight: 700;
  }

  .print-single-report .report-cover,
  .print-single-report .site-header,
  .print-single-report .statement-section,
  .print-single-report .section-heading,
  .print-single-report .site-footer,
  .print-single-report .report-card:not(.is-print-target) {
    display: none;
  }

  .print-single-report .reports-section {
    padding-block: 0;
  }

  .print-single-report .report-card {
    border: 0;
  }

  .print-single-report .report-toggle {
    display: none;
  }

  .print-single-report .report-content {
    border-top: 0;
    padding: 0;
  }
}
