@font-face {
  font-family: Inter;
  src: url("/assets/editorial/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --paper: #f3f3f3;
  --ink: #212121;
  --quiet: #656565;
  --rule: #d6d6d6;
  --accent: #606060;
  --dark: #1f1f1f;
  --sage: #bfbfbf;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img,
svg {
  max-width: 100%;
}
[hidden] {
  display: none !important;
}
::selection {
  background: #d2d2d2;
  color: #212121;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
button {
  touch-action: manipulation;
}
.wrap {
  width: calc(100% - 112px);
  max-width: 1440px;
  margin-inline: auto;
}
.micro {
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.13em;
  line-height: 1.6;
  text-transform: uppercase;
}
.signal-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
.global-skip {
  position: fixed;
  z-index: 1000;
  left: 20px;
  top: 12px;
  padding: 16px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-180%);
}
.global-skip:focus {
  transform: none;
}
.global-header {
  height: 100px;
  position: relative;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.global-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}
.global-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
}
.global-brand img {
  width: 28px;
  height: 46px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.65);
  clip-path: inset(0 18%);
}
.global-brand > span {
  font-size: 21px;
  font-weight: 610;
  letter-spacing: -1px;
  line-height: 1;
}
.global-brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.3em;
  margin-top: 5px;
  font-weight: 500;
}
.site-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 12px;
}
.site-links a,
.explore-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.site-links a:after {
  content: "";
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.site-links a:hover:after,
.site-links a[aria-current]:after {
  transform: scaleX(1);
}
.explore-trigger {
  border: 0;
  background: none;
  font-size: 12px;
  padding: 0;
  gap: 9px;
}
.explore-trigger span {
  font-size: 18px;
  font-weight: 300;
}
.global-apply {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 11px;
  min-height: 42px;
  border: 1px solid var(--ink);
  padding: 0 18px;
  transition:
    background 0.2s,
    color 0.2s;
}
.global-apply:hover {
  background: var(--ink);
  color: var(--paper);
}
.compact-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  padding: 12px 8px;
}
.compact-menu span {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
}
.opening-ink .global-header {
  background: var(--dark);
  color: var(--paper);
  border-color: #414141;
}
.opening-ink .global-brand img {
  filter: invert(1);
}
.opening-ink .global-apply {
  border-color: #aaaaaa;
}
.opening-ink .global-apply:hover {
  background: var(--paper);
  color: var(--ink);
}
#site-explore {
  background: var(--paper);
  color: var(--ink);
  border: 0;
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
#site-explore::backdrop {
  background: #212121aa;
}
#site-explore[open] > .wrap {
  animation: menu-in 0.45s var(--ease);
}
@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.explore-top {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
}
.explore-top button {
  border: 0;
  background: none;
  min-height: 44px;
  padding: 0;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.explore-top button span {
  font-size: 28px;
  font-weight: 300;
}
#site-explore .global-brand img {
  filter: none;
}
#explore-title {
  font-size: clamp(52px, 6.7vw, 98px);
  line-height: 1.02;
  letter-spacing: -0.065em;
  font-weight: 440;
  margin: 58px 0 60px;
}
#explore-title span {
  color: #979797;
}
.explore-groups {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
}
.explore-groups .micro {
  color: var(--quiet);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px;
  margin: 0 0 12px;
}
.explore-groups a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  font-size: 15px;
  line-height: 1.4;
  gap: 15px;
}
.explore-groups a span {
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s;
}
.explore-groups a:hover span {
  opacity: 1;
}
.explore-foot {
  margin-top: 60px;
  border-top: 1px solid var(--rule);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.global-footer {
  background: var(--dark);
  color: #eaeaea;
  padding: 68px 0 25px;
}
.global-footer .global-brand img {
  filter: invert(1);
}
.global-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}
.global-footer-top > div > p {
  font-size: 13px;
  line-height: 1.6;
  color: #a8a8a8;
  margin-top: 28px;
}
.global-footer .micro {
  margin: 0 0 20px;
  color: #a8a8a8;
}
.global-footer nav a {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  padding: 7px 0;
}
.global-footer nav a:hover {
  color: #c5c5c5;
}
.global-wordmark {
  font-size: clamp(42px, 12.55vw, 181px);
  font-weight: 540;
  letter-spacing: -0.073em;
  white-space: nowrap;
  line-height: 1.2;
  margin: 70px 0 36px;
  border-bottom: 1px solid #474747;
  padding-bottom: 30px;
}
.global-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #b7b7b7;
  font-size: 10px;
}
.global-footer-bottom > div {
  display: flex;
  gap: 24px;
}
.global-footer-bottom a:hover {
  color: white;
}
.solid-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 52px;
  padding: 16px 22px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.3s var(--ease);
}
.solid-link:hover {
  background: #4a4a4a;
  transform: translateY(-2px);
}
.text-link {
  font-size: 12px;
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-block: 10px;
}
.btn,
.btn-secondary,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
}
.reading-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  z-index: 90;
  pointer-events: none;
}
@media (min-width: 1600px) {
  .global-wordmark {
    font-size: 180px;
  }
}
@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-links {
    gap: 18px;
  }
  .global-header-inner {
    gap: 22px;
  }
  .global-footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
  }
  .global-footer-top > div {
    grid-column: 1/-1;
  }
  .explore-groups {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 24px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .global-header,
  .explore-top {
    height: 80px;
  }
  .global-header-inner {
    gap: 18px;
  }
  .global-brand > span {
    font-size: 18px;
  }
  .global-brand small {
    font-size: 7px;
  }
  .global-brand img {
    width: 23px;
    height: 38px;
  }
  .site-links {
    display: none;
  }
  .global-apply {
    margin-left: auto;
    font-size: 10px;
    gap: 12px;
    padding: 0 12px;
    min-height: 38px;
  }
  .compact-menu {
    display: block;
    margin-right: -8px;
  }
  .global-footer {
    padding-top: 48px;
  }
  .global-footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }
  .global-footer-top > div {
    grid-column: 1/-1;
  }
  .global-footer nav a {
    font-size: 12px;
    padding: 8px 0;
  }
  .global-wordmark {
    font-size: 12.1vw;
    margin: 40px 0 24px;
    padding-bottom: 20px;
  }
  .global-footer-bottom {
    flex-wrap: wrap;
    font-size: 10px;
    row-gap: 24px;
  }
  .global-footer-bottom > div {
    width: 100%;
    justify-content: space-between;
  }
  .explore-top button {
    font-size: 11px;
    gap: 20px;
  }
  #explore-title {
    margin: 42px 0;
    font-size: 55px;
  }
  .explore-groups {
    gap: 30px 22px;
  }
  .explore-groups a {
    font-size: 13px;
    min-height: 43px;
  }
  .explore-groups a span {
    opacity: 0.55;
  }
  .explore-foot {
    margin-top: 36px;
    display: block;
    line-height: 1.6;
  }
  .explore-foot a {
    display: block;
    margin-top: 12px;
  }
}
@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;
  }
}
