:root {
  --navy: #00102f;
  --blue: #006cee;
  --darkblue: #0045cc;
  --light: #eef4ff;
  --white: #ffffff;
  --black: #000000;
  --yellow: #ffe501;
  --turquoise: #00ddf4;
  --line: rgba(0, 16, 47, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 221, 244, 0.08), transparent 24%),
    linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
  color: var(--black);
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.52;
}

a {
  color: var(--darkblue);
  text-decoration: none;
}

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 221, 244, 0.16), transparent 18%),
    linear-gradient(135deg, #000000 0%, #011258 52%, #0136a0 100%);
  color: var(--white);
  padding: 58px 48px 48px;
}

.hero-compact {
  padding: 42px 48px 34px;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0;
  color: var(--turquoise);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.hero h1 {
  margin: 14px 0 12px;
  max-width: 820px;
  font-size: 48px;
  line-height: 1.06;
}

.subtitle {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 24px 72px;
}

.report-section + .report-section {
  margin-top: 38px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 16px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 108, 238, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: var(--darkblue);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
}

.section-intro {
  margin: 0;
  max-width: 760px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 15px;
}

.status,
.report-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 16, 47, 0.05);
}

.status {
  padding: 14px 16px;
  color: rgba(0, 0, 0, 0.62);
}

.report-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.report-list-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-list-weekly {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 156px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(0, 221, 244, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.96));
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.report-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 108, 238, 0.25);
  box-shadow: 0 18px 38px rgba(0, 16, 47, 0.08);
}

.report-card-label,
.report-card-date {
  display: block;
}

.report-card-label {
  color: rgba(0, 16, 47, 0.54);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-card-date {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.report-card-arrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 108, 238, 0.1);
  color: var(--darkblue);
  font-size: 12px;
  font-weight: 700;
}

.archive-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 16, 47, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.archive-row:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 108, 238, 0.25);
  box-shadow: 0 18px 38px rgba(0, 16, 47, 0.08);
}

.archive-row-date {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.archive-row-content {
  min-width: 0;
}

.archive-row-title,
.archive-row-meta {
  margin: 0;
}

.archive-row-title {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
}

.archive-row-meta {
  margin-top: 6px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 12px;
}

.archive-row-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.empty-state {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: var(--white);
  color: rgba(0, 0, 0, 0.62);
}

@media (max-width: 1100px) {
  .report-list-featured,
  .report-list-weekly {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .section-head {
    display: block;
  }

  .section-link {
    margin-top: 12px;
  }

  .hero {
    padding: 38px 24px 34px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .archive-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .report-card {
    min-height: 132px;
  }

  .archive-row-action {
    justify-self: start;
  }
}
