:root {
  --navy-950: #10101d;
  --navy-900: #1a1a2e;
  --navy-800: #252540;
  --navy-700: #32324a;
  --ink: #272936;
  --muted: #676a74;
  --white: #ffffff;
  --cream-50: #fafaf8;
  --cream-100: #f4f2ed;
  --line: #e3e1db;
  --amber: #c2884f;
  --amber-dark: #8d5d2d;
  --display: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --content: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--navy-900);
  text-decoration-color: var(--amber);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--amber) 72%, white);
  outline-offset: 4px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-900);
  font-family: var(--display);
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 7vw, 5.35rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.3;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-160%);
  transition: transform 0.15s ease;
}

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

.wrap {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-inline: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--white) 96%, transparent);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  flex: none;
  flex-direction: column;
  gap: 2px;
  color: var(--navy-900);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand:hover {
  text-decoration: none;
}

.brand-name {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.brand-name sup {
  position: relative;
  top: -0.35em;
  margin-left: 2px;
  font-size: 7px;
}

.brand-unit {
  color: var(--muted);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  flex: 1;
  align-self: stretch;
  align-items: stretch;
  gap: 1px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding-inline: 12px;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  border-bottom-color: var(--navy-900);
  color: var(--navy-900);
  text-decoration: none;
}

.header-note {
  flex: none;
  padding: 5px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--cream-50);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
  white-space: nowrap;
}

.announcement {
  border-bottom: 1px solid color-mix(in srgb, var(--amber) 40%, var(--line));
  color: var(--navy-900);
  background: color-mix(in srgb, var(--amber) 10%, var(--cream-50));
  font-size: 14px;
}

.announcement .wrap {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement a {
  font-weight: 700;
}

.section {
  padding-block: clamp(68px, 9vw, 108px);
  border-top: 1px solid var(--line);
}

.section:first-child {
  border-top: 0;
}

.section-alt {
  background: var(--cream-50);
}

.section-dark {
  color: #d9dbe4;
  background:
    radial-gradient(circle at 76% 20%, rgba(194, 136, 79, 0.18), transparent 24%),
    linear-gradient(145deg, var(--navy-800), var(--navy-950) 70%);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark a {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--amber-dark);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #d9a570;
}

.lead {
  max-width: 680px;
  margin-bottom: 0;
  color: #444751;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.68;
}

.section-dark .lead {
  color: #d9dbe4;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
  gap: clamp(44px, 7vw, 86px);
  align-items: start;
}

.hero-copy {
  padding-block: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid var(--navy-900);
  color: var(--white);
  background: var(--navy-900);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.button:hover {
  color: var(--white);
  background: var(--navy-700);
  text-decoration: none;
}

.button-secondary {
  color: var(--navy-900);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
}

.hero-logo-panel {
  align-self: start;
  padding-top: 18px;
}

.hero-logo {
  width: min(100%, 440px);
  height: auto;
  margin-inline: auto;
  transform: translateY(-8%);
}

.statement {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.statement-copy {
  max-width: 760px;
  font-size: 1.12rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

a.card {
  display: block;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

a.card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  text-decoration: none;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 750;
}

.page-hero {
  padding-block: clamp(70px, 10vw, 118px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 24%, rgba(194, 136, 79, 0.13), transparent 25%),
    var(--cream-50);
}

.page-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.page-hero .lead {
  max-width: 760px;
}

.content-narrow {
  max-width: 800px;
}

.prose {
  font-size: 1.08rem;
}

.prose h2 {
  margin-top: 50px;
}

.prose h3 {
  margin-top: 32px;
}

.prose p,
.prose ul {
  max-width: 72ch;
}

.prose li + li {
  margin-top: 10px;
}

.fact-list,
.plain-list {
  padding: 0;
  list-style: none;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-block: 34px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.fact-list li {
  padding: 22px;
  background: var(--white);
}

.fact-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.release-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.release-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
}

.release-card:hover {
  border-color: var(--amber);
  text-decoration: none;
}

.release-date,
.article-meta {
  color: var(--muted);
  font-size: 14px;
}

.release-card h2 {
  margin: 0;
  font-size: 1.35rem;
}

.release-arrow {
  color: var(--amber-dark);
  font-size: 24px;
}

.article-header {
  max-width: 900px;
}

.article-header h1 {
  max-width: 18ch;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.article-body {
  max-width: 760px;
  margin-top: 48px;
  font-size: 1.08rem;
}

.article-body p + p {
  margin-top: 24px;
}

.article-body .boilerplate {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.notice {
  max-width: 760px;
  margin-top: 30px;
  padding: 19px 22px;
  border-left: 3px solid var(--amber);
  color: var(--ink);
  background: var(--cream-100);
}

.status-placeholder {
  display: grid;
  min-height: calc(100vh - 75px);
  place-items: center;
  padding-block: 70px;
  background:
    radial-gradient(circle at 75% 18%, rgba(194, 136, 79, 0.16), transparent 24%),
    linear-gradient(150deg, var(--navy-800), var(--navy-950) 75%);
}

.status-card {
  width: min(100%, 760px);
  padding: clamp(34px, 7vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #d9dbe4;
  background: rgba(255, 255, 255, 0.055);
}

.status-card h1 {
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(2.7rem, 8vw, 5.5rem);
}

.status-card .lead {
  color: #d9dbe4;
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  color: #f0d7bc;
  font-size: 14px;
  font-weight: 700;
}

.status-label::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px 24px;
    padding-block: 16px;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .nav-link {
    min-height: 38px;
  }

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

  .hero-logo {
    width: min(100%, 400px);
    transform: none;
  }

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

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .wrap {
    padding-inline: 20px;
  }

  .header-note {
    display: none;
  }

  .primary-nav {
    margin-inline: -8px;
  }

  .nav-link {
    padding-inline: 9px;
    font-size: 13px;
  }

  .announcement .wrap,
  .statement,
  .footer-inner {
    display: block;
  }

  .announcement .wrap {
    padding-block: 10px;
  }

  .announcement a {
    display: inline-block;
    margin-top: 4px;
  }

  .statement-copy {
    margin-top: 18px;
  }

  .fact-list,
  .release-card {
    grid-template-columns: 1fr;
  }

  .release-card {
    gap: 8px;
  }

  .release-arrow {
    display: none;
  }

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

  .footer-links {
    margin-top: 12px;
  }
}

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

  .skip-link,
  a.card {
    transition: none;
  }
}
