:root {
  --deep-blue: #0f2f4a;
  --navy: #163b5c;
  --gold: #c89a3c;
  --sand: #f3e6c6;
  --charcoal: #2b2b2b;
  --ivory: #f8f6f0;
  --grey: #6b7280;
  --black-navy: #071a2d;
  --white: #ffffff;
  --light-line: rgba(15, 47, 74, 0.18);
  --dark-line: rgba(248, 246, 240, 0.18);
  --page-max: 1200px;
  --radius-panel: 8px;
  --radius-pill: 1000px;
  --font-main: Inter, "Helvetica Neue", Arial, sans-serif;
  --font-display: Cambria, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.61;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

h1,
h2,
h3 {
  color: var(--deep-blue);
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
}

h3 {
  font-family: var(--font-main);
  font-weight: 700;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: 3.35rem;
  line-height: 1.06;
}

h2 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: 2.6rem;
  line-height: 1.1;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 8px max(20px, calc((100vw - var(--page-max)) / 2));
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.has-shadow {
  background: rgba(7, 26, 45, 0.96);
  border-color: var(--dark-line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img.brand-wordmark {
  width: clamp(210px, 19vw, 240px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 1px 0 rgba(248, 246, 240, 0.08));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--deep-blue);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1;
}

.site-nav a {
  padding: 13px 16px;
  border-radius: var(--radius-pill);
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(15, 47, 74, 0.08);
}

.site-header.has-shadow .site-nav {
  color: var(--ivory);
}

.site-header.has-shadow .site-nav a:hover,
.site-header.has-shadow .site-nav a:focus-visible {
  background: rgba(248, 246, 240, 0.1);
}

.site-nav .nav-cta {
  margin-left: 7px;
  color: var(--white);
  background: var(--black-navy);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--navy);
}

.site-header.has-shadow .site-nav .nav-cta {
  color: var(--black-navy);
  background: var(--gold);
}

.site-header.has-shadow .site-nav .nav-cta:hover,
.site-header.has-shadow .site-nav .nav-cta:focus-visible {
  background: var(--sand);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  color: var(--white);
  background: var(--black-navy);
  border: 0;
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 51% 49%;
  align-items: stretch;
  min-height: clamp(580px, calc(100svh - 54px), 780px);
  padding: 0;
  background: var(--ivory);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
}

.hero::before {
  inset: 0 auto 0 0;
  z-index: -2;
  width: 54%;
  background: var(--black-navy);
}

.hero::after {
  inset: 0 0 0 45%;
  z-index: -1;
  background-image: url("assets/hero-dawn-v3.png");
  background-position: center;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 16% 100%);
}

.hero-copy {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 154px 56px 62px max(20px, calc((100vw - var(--page-max)) / 2));
  color: var(--ivory);
}

.hero h1 {
  max-width: 430px;
  margin-bottom: 22px;
  color: var(--ivory);
  font-size: 3.05rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--black-navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy);
}

.button-secondary {
  color: var(--ivory);
  background: transparent;
  border-color: rgba(248, 246, 240, 0.72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--black-navy);
  background: var(--ivory);
  border-color: var(--ivory);
}

.hero-location {
  max-width: 420px;
  margin: 0 0 28px;
  color: rgba(248, 246, 240, 0.74);
  font-size: 0.86rem;
  line-height: 1.5;
}

.section {
  padding: 96px max(20px, calc((100vw - var(--page-max)) / 2));
}

.section-heading {
  width: min(68%, 800px);
  margin: 0 0 54px auto;
}

.section-heading > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.61;
}

.capabilities-section {
  background: var(--ivory);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.capability-grid article {
  min-height: 350px;
  padding: 34px;
  color: var(--ivory);
  background: var(--deep-blue);
  border-radius: var(--radius-panel);
}

.capability-number {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
}

.capability-grid h3 {
  margin-bottom: 15px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
}

.capability-grid article > p {
  color: rgba(248, 246, 240, 0.7);
  font-size: 0.96rem;
}

.capability-grid li {
  position: relative;
  padding: 10px 0 10px 18px;
  color: rgba(248, 246, 240, 0.9);
  border-top: 1px solid var(--dark-line);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
}

.capability-grid li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.markets-section {
  background: var(--sand);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(15, 47, 74, 0.16);
  border: 1px solid rgba(15, 47, 74, 0.16);
  gap: 1px;
}

.market-grid article {
  min-height: 280px;
  padding: 30px 24px;
  background: var(--ivory);
}

.market-grid h3 {
  min-height: 62px;
  margin-bottom: 18px;
  font-size: 1.32rem;
}

.market-grid p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 0.9rem;
}

.approach-section {
  color: var(--white);
  background: var(--black-navy);
}

.approach-section h2,
.approach-section h3 {
  color: var(--white);
}

.approach-section .section-heading > p:not(.eyebrow) {
  color: rgba(248, 246, 240, 0.72);
}

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

.approach-grid article {
  min-height: 410px;
  padding: 34px 30px;
  background: var(--navy);
  border-radius: var(--radius-panel);
}

.approach-grid article:last-child {
  border-right: 0;
}

.approach-grid article > span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
}

.approach-grid .package-label {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.approach-grid h3 {
  min-height: 64px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
}

.approach-grid article > p:not(.package-label) {
  color: rgba(248, 246, 240, 0.72);
  font-size: 0.92rem;
}

.approach-grid strong {
  display: block;
  margin: 28px 0 7px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.publications-section {
  background: var(--white);
}

.publication-filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 42px;
  padding: 5px;
  background: var(--ivory);
  border: 1px solid var(--light-line);
  border-radius: var(--radius-pill);
}

.publication-filters button {
  min-height: 40px;
  padding: 9px 15px;
  color: var(--grey);
  background: transparent;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.publication-filters button:hover,
.publication-filters button:focus-visible {
  color: var(--deep-blue);
  background: rgba(15, 47, 74, 0.07);
}

.publication-filters button.is-active {
  color: var(--white);
  background: var(--black-navy);
}

.publication-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 72px;
  row-gap: 24px;
}

.publication-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--light-line);
}

.publication-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--grey);
  font-size: 0.72rem;
  line-height: 1;
}

.publication-year {
  color: var(--gold);
  font-weight: 700;
}

.publication-card h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
  line-height: 1.28;
}

.publication-card p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 0.84rem;
  line-height: 1.5;
}

.publication-card a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 26px;
  padding: 10px 15px;
  color: var(--deep-blue);
  border: 1px solid var(--deep-blue);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.publication-card a:hover,
.publication-card a:focus-visible {
  color: var(--white);
  background: var(--deep-blue);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 80px;
  color: var(--white);
  background: var(--black-navy);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section > div:first-child > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(248, 246, 240, 0.72);
  font-size: 1rem;
}

.contact-panel {
  align-self: start;
  padding: 44px 38px;
  color: var(--black-navy);
  background: var(--gold);
}

.contact-panel h3 {
  margin-bottom: 28px;
  color: var(--black-navy);
  font-size: 1.7rem;
}

.contact-panel .button {
  width: 100%;
}

.contact-email {
  display: block;
  margin-top: 20px;
  color: var(--black-navy);
  font-size: 0.84rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: center;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 52px max(20px, calc((100vw - var(--page-max)) / 2));
  color: rgba(248, 246, 240, 0.62);
  background: var(--black-navy);
  border-top: 1px solid var(--dark-line);
}

.footer-brand {
  max-width: 330px;
}

.footer-brand img.brand-wordmark {
  width: 300px;
  height: auto;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  font-size: 0.86rem;
  line-height: 1;
}

.site-footer nav a {
  padding: 10px 13px;
  border-radius: var(--radius-pill);
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--white);
  background: rgba(248, 246, 240, 0.08);
}

@media (max-width: 1060px) {
  .site-nav {
    font-size: 0.84rem;
  }

  .site-nav a {
    padding-inline: 11px;
  }

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

  .market-grid h3 {
    min-height: 0;
  }
}

@media (max-width: 920px) {
  body {
    font-size: 17px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 92px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 18px 20px 24px;
    color: var(--ivory);
    background: rgba(7, 26, 45, 0.98);
    border-bottom: 1px solid var(--dark-line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 15px;
  }

  .site-nav .nav-cta {
    margin: 5px 0 0;
    color: var(--black-navy);
    background: var(--gold);
    text-align: center;
  }

  .hero-copy {
    padding-right: 64px;
  }

  .publication-list {
    column-gap: 40px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

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

  h1 {
    font-size: 2.75rem;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero {
    display: block;
    min-height: max(760px, calc(100svh - 42px));
    padding: 0;
  }

  .hero::before {
    inset: 0 0 auto;
    width: 100%;
    height: 64%;
  }

  .hero::after {
    inset: auto 0 0;
    width: 100%;
    height: 42%;
    clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%);
    background-position: center;
  }

  .hero-copy {
    min-height: max(480px, 60svh);
    padding: 126px 32px 34px 24px;
  }

  .section-heading {
    width: 100%;
  }

  .section {
    padding-block: 78px;
  }

  .capability-grid,
  .approach-grid,
  .publication-list {
    grid-template-columns: 1fr;
  }

  .approach-grid article {
    min-height: auto;
  }

  .approach-grid h3 {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 78px;
  }

  .site-nav {
    inset: 78px 0 auto;
  }

  .brand img.brand-wordmark {
    width: min(54vw, 198px);
  }

  h1 {
    font-size: 2.32rem;
  }

  .hero h1 {
    font-size: 2.32rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .publication-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    border-radius: 0;
  }

  .publication-filters button:last-child {
    grid-column: 1 / -1;
  }

  .publication-card a {
    align-self: stretch;
    width: 100%;
  }

  .contact-panel {
    padding: 34px 26px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
