@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/noto-sans-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --navy: #030037;
  --body: #3e4254;
  --line: #dfe1e8;
  --muted: #f5f6f8;
  font-family: "Noto Sans", Arial, sans-serif;
  color: var(--navy);
  background: #fff;
  font-synthesis: none;
}

* { box-sizing: border-box; }
body { margin: 0; }
a { color: inherit; text-underline-offset: 0.23em; }
img { display: block; max-width: 100%; }

:focus-visible {
  outline: 3px solid #376dcb;
  outline-offset: 6px;
}

.skip-link {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 12px 20px;
  background: #fff;
  transform: translateY(-200%);
}

.skip-link:focus { transform: translateY(0); }

.header-inner,
.footer-inner {
  width: min(100% - 96px, 1280px);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.header-inner { min-height: 104px; }
.site-name { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; }
.brand-link { display: block; flex-shrink: 0; }
.brand-link img { width: 62px; height: 54px; object-fit: contain; }

.hero {
  max-width: 1600px;
  margin-inline: auto;
  background: var(--muted);
}

.hero img {
  width: 100%;
  height: clamp(280px, 38vw, 540px);
  object-fit: cover;
  object-position: 50% 57%;
}

.announcement {
  width: min(100% - 48px, 780px);
  margin-inline: auto;
  padding-block: 64px 76px;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(2.25rem, 4.25vw, 3.5rem);
  line-height: 1.14;
  letter-spacing: -0.045em;
  font-weight: 800;
  text-wrap: balance;
}

.intro {
  margin: 0 0 32px;
  max-width: 680px;
  font-size: clamp(1.25rem, 2.1vw, 1.5rem);
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.body-copy {
  color: var(--body);
  font-size: 1.0625rem;
  line-height: 1.85;
}

.body-copy p { margin: 0 0 22px; }
.body-copy p:last-child { margin-bottom: 0; }
.next-step { margin-top: 36px; }
.next-step p { margin: 0 0 18px; font-size: 1.0625rem; line-height: 1.6; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  min-height: 56px;
  padding: 15px 25px;
  border: 2px solid var(--navy);
  border-radius: 100px;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.button svg { flex-shrink: 0; }
.button:hover { background: #252157; border-color: #252157; }

.further-reading {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.further-reading p { margin: 0 0 10px; color: var(--body); }
.further-reading a { font-weight: 600; }
.further-reading a:hover, .site-footer a:hover { text-decoration-thickness: 2px; }
.site-footer { background: var(--muted); }
.footer-inner { min-height: 96px; font-size: 0.875rem; line-height: 1.6; }

@media (max-width: 600px) {
  .header-inner, .footer-inner { width: calc(100% - 40px); gap: 20px; }
  .header-inner { min-height: 82px; }
  .site-name { font-size: 0.875rem; }
  .brand-link img { width: 51px; height: 44px; }
  .hero img { height: auto; aspect-ratio: 4 / 3; object-position: 53% 55%; }
  .announcement { width: calc(100% - 40px); padding-block: 40px 48px; }
  h1 { margin-bottom: 20px; }
  .intro { margin-bottom: 26px; }
  .body-copy { font-size: 1rem; line-height: 1.8; }
  .button { width: 100%; gap: 20px; }
  .footer-inner { flex-wrap: wrap; padding-block: 24px; min-height: 88px; }
}

@media print {
  .skip-link, .site-header, .site-footer { display: none; }
  .hero { max-width: 780px; }
  .hero img { height: 240px; }
  .announcement { width: 100%; padding-block: 28px 0; }
  h1 { font-size: 30pt; }
  .body-copy { font-size: 11pt; line-height: 1.6; }
  .button { background: transparent; color: var(--navy); }
  a { overflow-wrap: anywhere; }
}
