:root {
  --rc-orange: #f47c20;
  --rc-orange-dark: #c95300;
  --rc-navy: #12263a;
  --rc-ink: #202a33;
  --rc-muted: #5f6b75;
  --rc-line: #d9dee3;
  --rc-bg: #f5f6f7;
  --white: #ffffff;
  --focus: #0b5fff;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--rc-bg);
  color: var(--rc-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-accent {
  height: 8px;
  background: var(--rc-orange);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--rc-line);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand img {
  display: block;
  width: clamp(190px, 26vw, 285px);
  height: auto;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
}

main {
  flex: 1;
}

.hero {
  background: linear-gradient(100deg, rgba(18, 38, 58, 0.98), rgba(18, 38, 58, 0.92)), var(--rc-navy);
  color: var(--white);
}

.hero-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(3.25rem, 8vw, 6.5rem) 0;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: #ffd0ad;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.15rem, 5.2vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.orange-rule {
  width: 72px;
  height: 6px;
  margin-top: 1.6rem;
  border-radius: 999px;
  background: var(--rc-orange);
}

.content-wrap {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}

.section-heading {
  margin: 0 0 0.45rem;
  color: var(--rc-navy);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.section-intro {
  max-width: 720px;
  margin: 0 0 1.8rem;
  color: var(--rc-muted);
  font-size: 1.05rem;
}

.report-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 900px;
}

.report-link {
  position: relative;
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.6rem;
  overflow: hidden;
  border: 1px solid var(--rc-line);
  border-top: 5px solid var(--rc-orange);
  border-radius: 4px;
  background: var(--white);
  color: var(--rc-navy);
  text-decoration: none;
  box-shadow: 0 5px 16px rgba(18, 38, 58, 0.06);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.report-link::after {
  content: "PDF  ↗";
  align-self: flex-start;
  color: var(--rc-orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.report-link span {
  display: block;
  max-width: 28ch;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
}

.report-link:hover {
  transform: translateY(-3px);
  border-color: #bcc4cb;
  box-shadow: 0 11px 24px rgba(18, 38, 58, 0.12);
}

.report-link:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 4px;
}

.site-footer {
  margin-top: auto;
  background: var(--rc-navy);
  color: #d8e0e7;
}

.footer-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .site-accent {
    height: 6px;
  }

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

  .brand img {
    width: min(235px, 70vw);
    max-height: 56px;
  }

  .hero-inner {
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }

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

  .report-link {
    min-height: 130px;
    padding: 1.35rem 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
