:root {
  --csps-blue: #064579;
  --csps-deep: #073861;
  --csps-navy: #052d50;
  --csps-mid: #176b9f;
  --csps-bright: #2d86b8;
  --csps-light: #edf5fa;
  --csps-pale: #f6fafc;
  --csps-line: #d4e2ec;
  --csps-grey: #e5e5e5;
  --ink: #16364d;
  --muted: #60778a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.csps-header {
  position: relative;
  z-index: 30;
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  padding: 0 34px 0 0;
  border-bottom: 1px solid #d2d2d2;
  background: var(--csps-grey);
}

.csps-logo {
  display: block;
  flex: 0 0 auto;
  width: 370px;
  height: 72px;
}

.csps-logo img {
  display: block;
  width: 370px;
  height: 72px;
  object-fit: contain;
}

.csps-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.1vw, 36px);
  white-space: nowrap;
}

.csps-nav a {
  position: relative;
  color: #003f73;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .18s ease;
}

.csps-nav a::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: var(--csps-mid);
  content: "";
  transform: scaleX(0);
  transition: transform .18s ease;
}

.csps-nav a:hover,
.csps-nav a:focus-visible,
.csps-nav a.active {
  color: #001f3d;
}

.csps-nav a:hover::after,
.csps-nav a:focus-visible::after,
.csps-nav a.active::after {
  transform: scaleX(1);
}

.home-page,
.archive-page {
  min-height: 100dvh;
  background: var(--white);
}

.home-page {
  height: 100dvh;
  overflow: hidden;
}

.landing {
  display: grid;
  width: min(100%, 1600px);
  height: calc(100dvh - 72px);
  grid-template-rows: minmax(0, 1.55fr) minmax(0, .72fr) 78px;
  gap: 12px;
  margin: 0 auto;
  padding: 16px clamp(20px, 3.1vw, 50px) 18px;
}

.editorial-hero {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-columns: minmax(0, 1.42fr) minmax(330px, .58fr);
  overflow: hidden;
  border: 1px solid rgba(6, 69, 121, .22);
  border-radius: 2px;
  background: var(--csps-blue);
  box-shadow: 0 12px 34px rgba(7, 56, 97, .11);
}

.hero-content {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vh, 52px) clamp(36px, 5vw, 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(66, 145, 190, .25) 0 1px, transparent 1.5px) 0 0 / 24px 24px,
    linear-gradient(118deg, #073861 0%, #064579 61%, #07558e 100%);
  color: var(--white);
}

.hero-content::before {
  position: absolute;
  left: -15px;
  bottom: -64px;
  color: rgba(255, 255, 255, .035);
  content: "BEO";
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(150px, 17vw, 270px);
  letter-spacing: -.09em;
  line-height: 1;
  pointer-events: none;
}

.hero-kicker,
.explore-heading > p,
.archive-page-heading > div > p {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-kicker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: clamp(12px, 1.7vh, 20px);
  color: #c4dfef;
}

.hero-kicker span + span {
  padding-left: 13px;
  border-left: 1px solid rgba(255,255,255,.34);
}

.hero-content h1 {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 0 clamp(12px, 1.8vh, 20px);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4.75vw, 76px);
  font-weight: 400;
  letter-spacing: -.052em;
  line-height: .92;
}

.hero-content h1 > span {
  display: block;
}

.hero-content h1 strong {
  color: var(--white);
  font-weight: 400;
}

.hero-deck {
  position: relative;
  z-index: 2;
  max-width: 690px;
  margin: 0 0 clamp(18px, 2.5vh, 27px);
  color: #d5e7f1;
  font-size: clamp(13px, 1.16vw, 17px);
  line-height: 1.5;
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.primary-action {
  display: inline-flex;
  min-height: 41px;
  align-items: center;
  gap: 11px;
  padding: 0 15px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.primary-action {
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--csps-deep);
}

.primary-action:hover,
.primary-action:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.primary-action:hover,
.primary-action:focus-visible {
  border-color: #d7ebf6;
  background: #d7ebf6;
}

.hero-visual {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 24px 28px 22px 48px;
  overflow: hidden;
  background: linear-gradient(145deg, #f7fbfd 0%, #e4f1f8 54%, #cfe5f2 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.visual-year {
  position: absolute;
  right: -15px;
  bottom: -18px;
  color: rgba(6, 69, 121, .065);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(100px, 10vw, 170px);
  letter-spacing: -.08em;
  line-height: 1;
  pointer-events: none;
}

.visual-ring {
  position: absolute;
  top: -22%;
  right: -13%;
  width: min(31vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(6, 69, 121, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(23, 107, 159, .035), 0 0 0 96px rgba(23, 107, 159, .025);
}

.cover-card {
  position: relative;
  z-index: 2;
  display: flex;
  width: auto;
  height: min(43dvh, 405px);
  max-width: calc(100% - 30px);
  max-height: calc(100% - 28px);
  align-items: center;
  justify-content: center;
  transform: rotate(-1.2deg);
  transition: transform .22s ease;
}

.cover-backdrop {
  position: absolute;
  inset: -13px -13px 15px 16px;
  border: 1px solid rgba(6, 69, 121, .28);
  background: rgba(255,255,255,.45);
  transform: rotate(4deg);
}

.cover-card img {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 0 22px 48px rgba(7, 56, 97, .3);
  transition: box-shadow .22s ease;
}

.cover-action {
  position: absolute;
  z-index: 3;
  right: -17px;
  bottom: 14px;
  display: inline-flex;
  min-height: 33px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  background: var(--csps-deep);
  box-shadow: 0 8px 18px rgba(7, 56, 97, .25);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cover-card:hover,
.cover-card:focus-visible {
  outline: none;
  transform: rotate(0deg) translateY(-4px);
}

.cover-card:hover img,
.cover-card:focus-visible img {
  box-shadow: 0 28px 58px rgba(7, 56, 97, .38);
}

.explore-section {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-columns: minmax(220px, .31fr) minmax(0, 1fr);
  gap: 12px;
}

.explore-heading {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 18px clamp(20px, 2.5vw, 34px);
  border: 1px solid var(--csps-line);
  border-left: 4px solid var(--csps-blue);
  background: var(--csps-light);
}

.explore-heading > p {
  margin: 0 0 8px;
  color: var(--csps-mid);
}

.explore-heading h2 {
  max-width: 285px;
  margin: 0;
  color: var(--csps-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.access-cards {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.access-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 9px;
  padding: clamp(14px, 2vh, 21px) clamp(18px, 2vw, 27px);
  overflow: hidden;
  border: 1px solid var(--csps-line);
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.access-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--csps-blue);
  content: "";
}

.access-card-interactive {
  background: var(--white);
}

.access-card-dashboard {
  background: var(--csps-pale);
}

.access-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-number {
  color: var(--csps-mid);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.arrow-button {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--csps-blue);
  color: var(--white);
  font-size: 17px;
  transition: background .18s ease, transform .18s ease;
}

.access-card h3 {
  margin: 0 0 5px;
  color: var(--csps-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.65vw, 25px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.06;
}

.access-card p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(10px, .9vw, 12px);
  line-height: 1.4;
}

.access-link {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid var(--csps-blue);
  background: var(--csps-blue);
  box-shadow: 0 5px 12px rgba(7, 56, 97, .16);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.access-link > span {
  font-size: 15px;
  transition: transform .18s ease;
}

.access-card:hover,
.access-card:focus-visible {
  border-color: #91b7cf;
  box-shadow: 0 13px 26px rgba(7, 56, 97, .13);
  outline: none;
  transform: translateY(-3px);
}

.access-card:hover .arrow-button,
.access-card:focus-visible .arrow-button {
  background: var(--csps-mid);
  transform: rotate(8deg);
}

.access-card:hover .access-link,
.access-card:focus-visible .access-link {
  border-color: var(--csps-mid);
  background: var(--csps-mid);
  box-shadow: 0 7px 15px rgba(7, 56, 97, .22);
  transform: translateY(-1px);
}

.access-card:hover .access-link > span,
.access-card:focus-visible .access-link > span {
  transform: translate(2px, -2px);
}

.archive-bar {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(210px, .31fr) minmax(0, 1fr);
  border: 1px solid var(--csps-line);
  background: var(--csps-light);
  scroll-margin-top: 86px;
}

.archive-title {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 8px clamp(20px, 2.5vw, 34px);
  background: var(--csps-deep);
  color: var(--white);
}

.archive-title h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1;
}

.archive-years {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.archive-years a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-left: 1px solid var(--csps-line);
  background: rgba(255,255,255,.56);
  color: var(--csps-deep);
  transition: background .18s ease, color .18s ease;
}

.archive-years a > span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.5vw, 22px);
}

.archive-years small {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--csps-mid);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.archive-years small span {
  font-size: 11px;
}

.archive-years a:hover,
.archive-years a:focus-visible {
  background: var(--csps-blue);
  color: var(--white);
  outline: none;
}

.archive-years a:hover small,
.archive-years a:focus-visible small {
  color: #cce4f1;
}

.archive-content {
  width: min(1380px, calc(100% - 80px));
  margin: 0 auto;
  padding: clamp(36px, 5vh, 60px) 0;
}

.archive-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(24px, 3.5vh, 38px);
}

.archive-page-heading > div > p {
  margin: 0 0 9px;
  color: var(--csps-mid);
}

.archive-page-heading h1 {
  margin: 0;
  color: var(--csps-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}

.archive-page-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--csps-mid);
  color: var(--csps-blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.archive-rows {
  border: 1px solid var(--csps-line);
}

.archive-row {
  display: grid;
  grid-template-columns: 120px minmax(260px, 1fr) 170px 125px;
  gap: 28px;
  min-height: 80px;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid var(--csps-line);
  background: var(--white);
  transition: background .18s ease, padding .18s ease;
}

.archive-row:last-child {
  border-bottom: 0;
}

.archive-row-tint {
  background: var(--csps-light);
}

.archive-row:hover,
.archive-row:focus-visible {
  padding-right: 36px;
  padding-left: 36px;
  background: #dfeef7;
  outline: none;
}

.archive-row-year {
  color: var(--csps-mid);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
}

.archive-row-title {
  color: var(--csps-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.8vw, 28px);
}

.archive-row-meta,
.archive-row-open {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.archive-row-open {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  color: var(--csps-blue);
}

.archive-row-open span {
  font-size: 16px;
}

@media (max-width: 1220px) {
  .csps-header {
    gap: 16px;
    padding-right: 24px;
  }

  .csps-logo,
  .csps-logo img {
    width: 345px;
  }

  .csps-nav {
    gap: 22px;
  }

  .optional-nav {
    display: none;
  }

  .editorial-hero {
    grid-template-columns: minmax(0, 1.28fr) minmax(315px, .72fr);
  }

  .hero-content {
    padding-right: 42px;
    padding-left: 46px;
  }

  .hero-content h1 {
    font-size: clamp(46px, 5.1vw, 64px);
  }

  .hero-visual {
    padding-right: 24px;
    padding-left: 42px;
  }

  .explore-section,
  .archive-bar {
    grid-template-columns: minmax(205px, .28fr) minmax(0, 1fr);
  }
}

@media (max-height: 720px) and (min-width: 821px) {
  .landing {
    grid-template-rows: minmax(0, 1.55fr) minmax(0, .74fr) 68px;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .hero-content {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .hero-kicker {
    margin-bottom: 9px;
  }

  .hero-content h1 {
    margin-bottom: 9px;
    font-size: clamp(42px, 4.25vw, 56px);
  }

  .hero-deck {
    margin-bottom: 13px;
    font-size: 13px;
    line-height: 1.35;
  }

  .primary-action {
    min-height: 35px;
  }

  .cover-card {
    height: min(40dvh, 320px);
    max-height: calc(100% - 20px);
  }

  .explore-heading,
  .access-card {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .explore-heading h2 {
    font-size: 21px;
  }

  .access-card h3 {
    font-size: 19px;
  }

  .access-card p {
    font-size: 10px;
    line-height: 1.3;
  }

  .arrow-button {
    width: 27px;
    height: 27px;
  }
}

@media (max-width: 820px) {
  .home-page {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  .csps-header {
    height: 64px;
  }

  .csps-logo,
  .csps-logo img {
    width: 328px;
    height: 64px;
  }

  .csps-nav a:not(:first-child):not(:nth-child(4)) {
    display: none;
  }

  .landing {
    display: block;
    height: auto;
    padding: 12px;
  }

  .editorial-hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: 440px;
    padding: 52px 32px 44px;
  }

  .hero-content h1 {
    max-width: 680px;
    font-size: clamp(48px, 11vw, 70px);
  }

  .hero-visual {
    min-height: 500px;
    padding: 42px 36px;
    border-top: 1px solid var(--csps-line);
    clip-path: none;
  }

  .cover-card {
    height: 410px;
    max-width: min(74vw, 390px);
    max-height: none;
  }

  .explore-section {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .explore-heading {
    min-height: 130px;
  }

  .explore-heading h2 {
    max-width: 500px;
  }

  .access-card {
    min-height: 190px;
  }

  .archive-bar {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .archive-title {
    min-height: 78px;
  }

  .archive-years a {
    min-height: 78px;
  }

  .archive-content {
    width: min(100% - 36px, 720px);
    padding: 54px 0;
  }

  .archive-page-heading {
    align-items: start;
    flex-direction: column;
  }

  .archive-row {
    grid-template-columns: 70px 1fr auto;
    gap: 14px;
    min-height: 88px;
    padding: 0 18px;
  }

  .archive-row:hover,
  .archive-row:focus-visible {
    padding-right: 18px;
    padding-left: 18px;
  }

  .archive-row-meta {
    display: none;
  }

  .archive-row-open {
    font-size: 0;
  }
}

@media (max-width: 620px) {
  .csps-header {
    display: grid;
    min-height: 104px;
    height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: start;
    padding: 0 18px 12px 0;
  }

  .csps-logo,
  .csps-logo img {
    width: 310px;
    height: 64px;
  }

  .csps-nav {
    justify-self: end;
    gap: 24px;
  }

  .hero-content {
    min-height: 420px;
    padding: 46px 22px 38px;
  }

  .hero-content h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero-deck {
    font-size: 14px;
  }

  .hero-visual {
    min-height: 440px;
    padding: 36px 26px;
  }

  .cover-card {
    height: 350px;
    max-width: min(77vw, 330px);
  }

  .cover-action {
    right: -8px;
  }

  .access-cards {
    grid-template-columns: 1fr;
  }

  .access-card {
    min-height: 180px;
  }

  .archive-years {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .archive-years a {
    border-top: 1px solid var(--csps-line);
  }

  .archive-page-heading h1 {
    font-size: 40px;
  }

  .archive-row {
    grid-template-columns: 58px 1fr 20px;
  }

  .archive-row-year {
    font-size: 25px;
  }

  .archive-row-title {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
