:root {
  --ink: #d5deec;
  --forest: #050a16;
  --forest-soft: #091327;
  --cream: #0b1527;
  --paper: #0e1a30;
  --lime: #7fa7d8;
  --text-strong: #e2e8f2;
  --line: rgba(158, 181, 215, 0.16);
  --muted: #8d9bb0;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img, video {
  max-width: 100%;
}

a {
  color: inherit;
}

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

::selection {
  background: var(--lime);
  color: #07101f;
}

.container {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.screen-reader-text, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: var(--paper);
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 218px;
  padding: 15px 18px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s, background 0.25s;
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  background: var(--text-strong);
  color: var(--forest);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--text-strong);
  padding: 24px 0;
}
.site-header__inner {
  width: min(100% - 48px, 1240px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.site-header__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
}
.site-header__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.site-header__nav > a {
  position: relative;
  color: rgba(201, 213, 231, 0.68);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}
.site-header__nav > a:hover, .site-header__nav > a:focus-visible {
  color: var(--text-strong);
}
.site-header__cta {
  padding: 10px 18px;
  border: 1px solid rgba(188, 204, 228, 0.3);
  border-radius: 99px;
  color: var(--text-strong) !important;
}
.site-header__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(188, 204, 228, 0.28);
  border-radius: 50%;
  background: transparent;
}
.site-header__toggle span:not(.screen-reader-text) {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--text-strong);
  transition: transform 0.25s;
}

.site-footer {
  background: var(--forest);
  color: rgba(191, 204, 225, 0.52);
  border-top: 1px solid rgba(158, 181, 215, 0.14);
}
.site-footer__inner {
  width: min(100% - 48px, 1240px);
  min-height: 100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.78rem;
}
.site-footer p {
  margin: 0;
}
.site-footer a {
  color: var(--text-strong);
  text-decoration: none;
}

.default-page {
  min-height: 70vh;
  padding-top: 150px;
  padding-bottom: 90px;
}

.entry {
  max-width: 760px;
  margin: 0 auto 64px;
}

.entry__title {
  margin: 0 0 30px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.entry__title a {
  text-decoration: none;
}

.entry__content {
  color: var(--muted);
}

.entry__content a {
  color: var(--lime);
}

.entry__content img {
  height: auto;
}

@media (max-width: 760px) {
  .container, .site-header__inner, .site-footer__inner {
    width: min(100% - 32px, 1240px);
  }
  .default-page {
    padding-top: 74px;
    padding-bottom: 50px;
  }
  .site-header__toggle {
    display: block;
    position: relative;
    z-index: 2;
  }
  .site-header__nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 88px 28px;
    background: var(--forest);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
  }
  .site-header__nav a {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 2.5rem;
    color: var(--text-strong);
  }
  .site-header__nav .site-header__cta {
    margin-top: 12px;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 1rem;
  }
  .site-header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .site-header__toggle[aria-expanded=true] span:nth-of-type(1) {
    transform: translateY(3px) rotate(45deg);
  }
  .site-header__toggle[aria-expanded=true] span:nth-of-type(2) {
    transform: translateY(-3px) rotate(-45deg);
  }
  .site-footer__inner {
    padding: 28px 0;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
