:root {
  color: #111111;
  background: #ffffff;
  font-family:
    "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #ffffff;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: #ffffff;
}

a {
  color: inherit;
}

button {
  color: inherit;
  font: inherit;
}

[hidden] {
  display: none !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e9e9e9;
}

.navbar {
  display: flex;
  width: min(100%, 1440px);
  height: 88px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 76px);
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  outline-offset: 7px;
}

.brand__logo {
  display: block;
  width: clamp(132px, 12.5vw, 180px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}

.nav-link {
  position: relative;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #454545;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav-dropdown {
  position: relative;
}

.sports-toggle {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 7px;
}

.sports-toggle__chevron {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.sports-toggle[aria-expanded="true"] .sports-toggle__chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.sports-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  width: 164px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition:
    opacity 150ms ease,
    transform 150ms ease,
    visibility 150ms ease;
  visibility: hidden;
}

.nav-dropdown[data-open="true"] .sports-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.sports-menu__link {
  padding: 11px 13px;
  color: #303030;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 150ms ease,
    background-color 150ms ease;
}

.sports-menu__link:hover,
.sports-menu__link:focus-visible,
.sports-menu__link[aria-current="page"] {
  background: #f3f3f3;
  color: #000000;
  outline: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link--active {
  color: #000000;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link--active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.write-button {
  display: inline-flex;
  min-width: 88px;
  min-height: 40px;
  padding: 0 22px;
  background: #111111;
  border: 1px solid #111111;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    color 160ms ease;
  align-items: center;
  justify-content: center;
}

.write-button:hover,
.write-button:focus-visible,
.write-button[aria-current="page"] {
  background: #ffffff;
  color: #111111;
}

.write-button:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle__line {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: #111111;
  transition:
    transform 180ms ease,
    translate 180ms ease;
}

.menu-toggle__line:first-child {
  translate: 0 -4px;
}

.menu-toggle__line:last-child {
  translate: 0 4px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:first-child {
  translate: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:last-child {
  translate: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  width: 100%;
  padding: 8px 24px 24px;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__link {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu__link:last-child {
  border-bottom: 0;
}

.mobile-menu__link[aria-current="page"] {
  color: #000000;
}

.mobile-sports {
  padding: 16px 0 18px;
  border-bottom: 1px solid #eeeeee;
}

.mobile-sports__title {
  display: inline-block;
  margin: 0 0 14px;
  color: #111111;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-sports__title[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-sports__leagues {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 20px;
}

.mobile-sports__leagues a {
  padding: 8px 0;
  color: #555555;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-sports__leagues a:hover,
.mobile-sports__leagues a:focus-visible,
.mobile-sports__leagues a[aria-current="page"] {
  color: #000000;
}

.mobile-write-button {
  display: flex;
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  background: #111111;
  border: 1px solid #111111;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
}

.mobile-write-button:hover,
.mobile-write-button:focus-visible,
.mobile-write-button[aria-current="page"] {
  background: #ffffff;
  color: #111111;
}

.canvas {
  width: 100%;
  min-height: calc(100vh - 89px);
  background: #ffffff;
}

.wire-page {
  overflow: hidden;
}

.wire-access {
  display: grid;
  min-height: calc(100vh - 89px);
  padding: clamp(48px, 8vw, 96px) 24px;
  background: #f4f4f2;
  place-items: center;
}

.wire-access__card {
  width: min(100%, 540px);
  padding: clamp(30px, 5vw, 52px);
  border-top: 5px solid #ce2029;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.09);
}

.wire-access__card h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.2rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.wire-access__intro {
  margin: 26px 0 0;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.6;
}

.wire-access__form {
  display: grid;
  margin-top: 30px;
  gap: 10px;
}

.wire-access__form label {
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wire-access__form input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #aaaaaa;
  border-radius: 0;
  background: #ffffff;
  color: #111111;
  font: inherit;
}

.wire-access__form input:focus-visible {
  border-color: #111111;
  outline: 2px solid #ce2029;
  outline-offset: 2px;
}

.wire-access__submit {
  min-height: 50px;
  margin-top: 18px;
  padding: 13px 20px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wire-access__submit:hover,
.wire-access__submit:focus-visible {
  background: #ce2029;
  border-color: #ce2029;
}

.wire-access__submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.wire-access__status {
  min-height: 1.4em;
  margin: 18px 0 0;
  color: #555555;
  font-size: 0.85rem;
  line-height: 1.5;
}

.wire-access__status[data-type="error"] {
  color: #a11a1a;
}

.wire-access__status[data-type="success"] {
  color: #176a37;
}

.wire-kicker {
  margin: 0 0 16px;
  color: #6b6b6b;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wire-hero {
  display: grid;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 104px) clamp(24px, 5vw, 76px)
    clamp(70px, 8vw, 118px);
  align-items: end;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 7vw, 112px);
}

.wire-hero h1,
.wire-browser h2 {
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.wire-hero h1 {
  font-size: clamp(3.2rem, 6.5vw, 6.7rem);
}

.wire-hero__intro > p {
  max-width: 680px;
  margin: 0;
  color: #323232;
  font-size: clamp(1.25rem, 2.15vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.wire-hero__actions a {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid currentColor;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.wire-hero__actions a:hover,
.wire-hero__actions a:focus-visible,
.wire-browser__fallback a:hover,
.wire-browser__fallback a:focus-visible {
  color: #ce2029;
}

.wire-hero__actions {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 24px;
}

.wire-hero__actions button {
  padding: 0 0 6px;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: #5d5d5d;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wire-hero__actions button:hover,
.wire-hero__actions button:focus-visible {
  color: #ce2029;
}

.wire-hero__account {
  margin: 16px 0 0;
  color: #6b6b6b;
  font-size: 0.8rem;
}

.wire-browser {
  border-top: 1px solid #dedede;
  background: #f4f4f2;
}

.wire-browser__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) clamp(24px, 5vw, 76px)
    clamp(72px, 9vw, 128px);
}

.wire-browser__heading {
  display: flex;
  margin-bottom: clamp(34px, 4vw, 52px);
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.wire-browser h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
}

.wire-browser__heading > p {
  max-width: 320px;
  margin: 0 0 5px;
  color: #555555;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: right;
}

.wire-browser__frame {
  overflow: hidden;
  border: 1px solid #d5d5d5;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.wire-browser__frame iframe {
  display: block;
  width: 100%;
  height: clamp(620px, 74vh, 880px);
  border: 0;
  background: #ffffff;
}

.wire-browser__fallback {
  margin: 20px 0 0;
  color: #5f5f5f;
  font-size: 0.82rem;
  line-height: 1.5;
}

.wire-browser__fallback a {
  color: #111111;
  font-weight: 700;
  text-underline-offset: 3px;
}

.hosted-document-page {
  background: #f4f4f2;
}

.hosted-document-state {
  width: min(100%, 1440px);
  min-height: calc(100vh - 89px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 150px) clamp(24px, 5vw, 76px);
}

.hosted-document-state h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.hosted-document-state > p:not(.document-kicker) {
  max-width: 620px;
  margin: 32px 0 0;
  color: #555555;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hosted-document-state > a {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.document-kicker {
  margin: 0 0 18px;
  color: #6b6b6b;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hosted-document-shell {
  min-height: calc(100vh - 89px);
}

.hosted-document-hero {
  display: grid;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 104px) clamp(24px, 5vw, 76px)
    clamp(58px, 7vw, 100px);
  background: #f4f4f2;
  align-items: end;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 112px);
}

.hosted-document-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 6.5rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.hosted-document-hero__details > p:first-child {
  max-width: 680px;
  margin: 0;
  color: #323232;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.4;
  white-space: pre-line;
}

.hosted-document-hero__metadata {
  margin: 22px 0 0;
  color: #656565;
  font-size: 0.78rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.hosted-document-hero__actions {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 22px;
}

.hosted-document-hero__actions a {
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.hosted-document-hero__actions a:hover,
.hosted-document-hero__actions a:focus-visible,
.hosted-document-state > a:hover,
.hosted-document-state > a:focus-visible {
  color: #ce2029;
}

.hosted-document-viewer {
  padding: clamp(24px, 4vw, 52px);
  border-top: 1px solid #d5d5d5;
  background: #242424;
}

.hosted-document-viewer iframe {
  display: block;
  width: min(100%, 1440px);
  height: max(720px, calc(100vh - 80px));
  margin: 0 auto;
  border: 0;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100svh - 89px);
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  background: #111111;
}

.hero > picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.16) 48%,
      rgba(0, 0, 0, 0.04) 72%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0) 48%
    );
}

.hero__content {
  position: relative;
  display: flex;
  width: min(100%, 1440px);
  height: 100%;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 84px) clamp(24px, 5vw, 76px);
  align-items: flex-end;
}

.hero__slogan {
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 5.3vw, 5.4rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero__slogan span {
  letter-spacing: -0.08em;
}

.news-section {
  width: 100%;
  background: #ffffff;
}

.news-section + .news-section {
  border-top: 1px solid #ececec;
}

.news-section--featured {
  background: #f4f4f2;
}

.news-section__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) clamp(24px, 5vw, 76px);
}

.news-section__eyebrow {
  margin: 0 0 16px;
  color: #ce2029;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-section__title {
  margin: 0;
  color: #111111;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
}

.news-section__title a {
  color: inherit;
  text-decoration: none;
}

.news-section__title a:hover,
.news-section__title a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 9px;
}

.news-section__line {
  width: clamp(72px, 9vw, 128px);
  height: 2px;
  margin-top: 22px;
  background: #111111;
}

.about-page {
  overflow: hidden;
}

.about-kicker {
  margin: 0 0 16px;
  color: #747474;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 104px) clamp(24px, 5vw, 76px)
    clamp(70px, 8vw, 118px);
}

.about-hero__copy {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  column-gap: clamp(40px, 7vw, 112px);
}

.about-hero__copy .about-kicker {
  grid-column: 1;
  grid-row: 1;
}

.about-hero h1,
.about-reach h2,
.coverage-map h2,
.about-contact h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6.5vw, 6.7rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.about-hero h1 {
  grid-column: 1;
  grid-row: 2;
}

.about-hero__intro {
  max-width: 640px;
  margin: 0;
  color: #323232;
  font-size: clamp(1.25rem, 2.15vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.35;
  grid-column: 2;
  grid-row: 1 / 3;
}

.about-hero__figure {
  margin: clamp(46px, 6vw, 82px) 0 0;
}

.about-hero__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.about-reach,
.about-contact {
  display: grid;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 150px) clamp(24px, 5vw, 76px);
  border-top: 1px solid #dedede;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 7vw, 116px);
}

.about-reach__content > p:first-child {
  max-width: 760px;
  margin: 0;
  color: #333333;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.about-reach__stat {
  margin: clamp(46px, 6vw, 78px) 0 0;
  font-size: clamp(5rem, 11vw, 9.5rem);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.72;
}

.about-service {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 76px) clamp(76px, 10vw, 150px);
}

.about-service__card {
  display: grid;
  padding: clamp(34px, 6vw, 72px);
  border-top: 6px solid #ce2029;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 108px);
}

.about-service .about-kicker {
  color: #aaaaaa;
}

.about-service h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.5rem, 5.6vw, 5.6rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.about-service__content {
  align-self: end;
}

.about-service__content p {
  max-width: 670px;
  margin: 0;
  color: #d5d5d5;
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.about-service__content a {
  display: inline-block;
  margin-top: clamp(30px, 4vw, 48px);
  padding-bottom: 6px;
  border-bottom: 2px solid currentColor;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.about-service__content a:hover,
.about-service__content a:focus-visible {
  color: #ff4c55;
}

.coverage-map {
  background: #ffffff;
  color: #111111;
  border-top: 1px solid #dedede;
}

.coverage-map__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) clamp(24px, 5vw, 76px)
    clamp(56px, 7vw, 104px);
}

.coverage-map .about-kicker {
  color: #747474;
}

.coverage-map__heading {
  position: relative;
  z-index: 1;
}

.coverage-map__figure {
  width: min(100%, 1120px);
  margin: clamp(36px, 5vw, 64px) auto 0;
}

.coverage-map__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.about-contact {
  position: relative;
  border-top: 0;
  color: #ffffff;
}

.about-contact::before {
  position: absolute;
  z-index: 0;
  inset: 0 calc(50% - 50vw);
  background: #000000;
  content: "";
}

.about-contact > * {
  position: relative;
  z-index: 1;
}

.about-contact .about-kicker {
  color: #9d9d9d;
}

.about-contact__content {
  padding-top: 6px;
}

.about-contact__content p {
  max-width: 680px;
  margin: 0;
  color: #d5d5d5;
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.about-contact__content p + p {
  margin-top: 0.6em;
}

.about-contact__content a {
  display: inline-block;
  margin-top: clamp(42px, 6vw, 78px);
  color: #ffffff;
  font-size: clamp(1.6rem, 3.4vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  overflow-wrap: anywhere;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #000000;
  color: #ffffff;
}

.site-footer__inner {
  display: grid;
  width: min(100%, 1440px);
  min-height: 250px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) clamp(24px, 5vw, 76px);
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 32px;
}

.site-footer__brand {
  width: fit-content;
}

.site-footer__brand img {
  display: block;
  width: clamp(120px, 12vw, 180px);
  height: auto;
}

.site-footer p {
  margin: 0;
  color: #a8a8a8;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.site-footer__links {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 24px;
}

.site-footer__links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.not-found-page {
  display: grid;
  min-height: calc(100svh - 89px);
  padding: clamp(72px, 10vw, 150px) clamp(24px, 7vw, 100px);
  background: #ce2029;
  color: #ffffff;
  align-content: center;
}

.not-found-page .section-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.not-found-page h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.6rem, 10vw, 9rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.not-found-page > p:not(.section-kicker) {
  max-width: 520px;
  margin: 34px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.5;
}

.not-found-page > a {
  width: fit-content;
  margin-top: 44px;
  padding-bottom: 6px;
  border-bottom: 2px solid currentColor;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .navbar {
    height: 72px;
    padding-inline: 20px;
  }

  .brand__logo {
    width: 132px;
  }

  .canvas {
    min-height: calc(100vh - 73px);
  }

  .wire-hero {
    padding: 54px 20px 76px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wire-access {
    min-height: calc(100vh - 73px);
    padding: 32px 16px;
  }

  .wire-access__card {
    padding: 32px 22px;
  }

  .wire-hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.7rem);
  }

  .wire-browser__inner {
    padding: 62px 20px 76px;
  }

  .wire-browser__heading {
    display: block;
  }

  .wire-browser__heading > p {
    margin-top: 20px;
    text-align: left;
  }

  .wire-browser__frame iframe {
    height: 640px;
  }

  .hosted-document-state {
    min-height: calc(100vh - 73px);
    padding: 64px 20px;
  }

  .hosted-document-shell {
    min-height: calc(100vh - 73px);
  }

  .hosted-document-hero {
    padding: 54px 20px 70px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hosted-document-hero h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .hosted-document-viewer {
    padding: 14px;
  }

  .hosted-document-viewer iframe {
    height: 76vh;
    min-height: 540px;
  }

  .hero {
    height: calc(100svh - 73px);
    min-height: 520px;
    max-height: 760px;
  }

  .hero__image {
    object-position: 48% center;
  }

  .hero__overlay {
    background:
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.08) 62%
      ),
      linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
  }

  .hero__content {
    padding: 32px 20px;
  }

  .hero__slogan {
    max-width: 12ch;
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .news-section__inner {
    padding: 64px 20px 76px;
  }

  .news-section__line {
    margin-top: 18px;
  }

  .about-hero {
    padding: 54px 20px 76px;
  }

  .about-hero__copy {
    display: block;
  }

  .about-hero h1,
  .about-reach h2,
  .coverage-map h2,
  .about-contact h2 {
    font-size: clamp(3.7rem, 17vw, 5.7rem);
  }

  .about-hero__intro {
    margin-top: 32px;
  }

  .about-hero__figure img {
    aspect-ratio: 16 / 10;
  }

  .about-reach,
  .about-contact {
    padding: 66px 20px 82px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-service {
    padding: 0 20px 82px;
  }

  .about-service__card {
    padding: 34px 24px 40px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-service h2 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .about-reach__stat {
    margin-top: 54px;
  }

  .coverage-map__inner {
    padding: 66px 20px 42px;
  }

  .coverage-map__figure {
    width: 100%;
    margin: 34px auto 0;
  }

  .coverage-map__figure img {
    width: 100%;
  }

  .site-footer__inner {
    min-height: 230px;
    grid-template-columns: 1fr;
    align-content: center;
    align-items: start;
    gap: 28px;
  }

  .site-footer__links {
    justify-self: start;
  }
}

/* Apply page */
.apply-page {
  background: #f3f0e9;
  color: #111111;
}

.apply-hero {
  position: relative;
  display: flex;
  min-height: min(760px, calc(100svh - 88px));
  padding: clamp(44px, 6vw, 88px) clamp(24px, 6.8vw, 98px);
  overflow: hidden;
  background: #111111;
  color: #ffffff;
  flex-direction: column;
  justify-content: space-between;
}

.apply-hero::after {
  position: absolute;
  right: clamp(-170px, -8vw, -60px);
  bottom: clamp(-220px, -15vw, -110px);
  width: clamp(360px, 48vw, 720px);
  aspect-ratio: 1;
  border: clamp(50px, 7vw, 96px) solid #ce2029;
  border-radius: 50%;
  content: "";
  opacity: 0.95;
  pointer-events: none;
}

.apply-hero__eyebrow,
.apply-hero__copy,
.apply-hero__jump {
  position: relative;
  z-index: 1;
}

.apply-hero__eyebrow {
  display: flex;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  justify-content: space-between;
}

.apply-hero__copy {
  width: min(100%, 1140px);
  margin-top: clamp(90px, 13vw, 170px);
}

.apply-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(4rem, 9.2vw, 9rem);
  font-weight: 620;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.apply-hero__copy p {
  max-width: 560px;
  margin: clamp(30px, 4vw, 52px) 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.apply-hero__jump {
  display: inline-flex;
  width: fit-content;
  margin-top: 58px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  font-weight: 750;
  gap: 18px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.apply-openings,
.application-section {
  padding: clamp(76px, 9vw, 132px) clamp(24px, 6.8vw, 98px);
}

.apply-section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 70px;
}

.apply-kicker {
  margin: 0 0 18px;
  color: #ce2029;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.apply-section-heading h2,
.application-section__intro h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.apply-section-heading > p {
  max-width: 480px;
  margin: 0;
  color: #595959;
  font-size: 1rem;
  line-height: 1.65;
}

.position-grid {
  display: grid;
  margin-top: clamp(52px, 7vw, 92px);
  border-top: 1px solid #cfcac0;
  border-left: 1px solid #cfcac0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.position-card {
  display: grid;
  min-height: 260px;
  padding: 28px;
  border: 0;
  border-right: 1px solid #cfcac0;
  border-bottom: 1px solid #cfcac0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition:
    background-color 180ms ease,
    color 180ms ease;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
}

.position-card:hover,
.position-card:focus-visible {
  background: #ce2029;
  color: #ffffff;
  outline: none;
}

.position-card:focus-visible {
  box-shadow: inset 0 0 0 3px #111111;
}

.position-card__count {
  color: #6b6b6b;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.position-card:hover .position-card__count,
.position-card:focus-visible .position-card__count {
  color: #ffffff;
}

.position-card__name {
  max-width: 310px;
  align-self: end;
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1;
  grid-column: 1 / -1;
}

.position-card__action {
  display: inline-flex;
  margin-top: 30px;
  font-size: 0.68rem;
  font-weight: 750;
  gap: 9px;
  grid-column: 2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.application-section {
  display: grid;
  background: #ffffff;
  grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(70px, 9vw, 150px);
}

.application-section__intro {
  align-self: start;
}

.application-section__intro > p:not(.apply-kicker) {
  max-width: 460px;
  margin: 34px 0 0;
  color: #5b5b5b;
  line-height: 1.65;
}

.application-section__note {
  display: grid;
  max-width: 460px;
  margin-top: clamp(60px, 8vw, 110px);
  padding-top: 20px;
  border-top: 1px solid #d8d8d8;
  color: #5b5b5b;
  font-size: 0.86rem;
  grid-template-columns: 38px 1fr;
  line-height: 1.55;
}

.application-section__note span {
  color: #ce2029;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.application-section__note p {
  margin: 0;
}

.application-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

.application-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-field {
  display: flex;
  min-width: 0;
  margin-bottom: 34px;
  flex-direction: column;
}

.form-field--full,
.application-consent,
.application-form__footer {
  grid-column: 1 / -1;
}

.form-field label {
  display: flex;
  margin-bottom: 10px;
  color: #333333;
  font-size: 0.7rem;
  font-weight: 750;
  justify-content: space-between;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field label span:not([aria-hidden="true"]) {
  color: #6b6b6b;
  font-size: 0.62rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #bdbdbd;
  border-radius: 0;
  background: transparent;
  color: #111111;
  font: inherit;
  line-height: 1.45;
  outline: none;
  transition: border-color 160ms ease;
}

.form-field textarea {
  min-height: 128px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: #ce2029;
  box-shadow: 0 1px 0 #ce2029;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6b6b6b;
}

.form-field__prefix {
  display: flex;
  border-bottom: 1px solid #bdbdbd;
  align-items: center;
}

.form-field__prefix:focus-within {
  border-bottom-color: #ce2029;
  box-shadow: 0 1px 0 #ce2029;
}

.form-field__prefix > span {
  padding-right: 5px;
  color: #6b6b6b;
}

.form-field__prefix input,
.form-field__prefix input:focus {
  border: 0;
  box-shadow: none;
}

.application-consent {
  display: grid;
  margin-top: 2px;
  color: #4f4f4f;
  cursor: pointer;
  font-size: 0.86rem;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  line-height: 1.45;
}

.application-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #ce2029;
}

.application-form__footer {
  display: grid;
  margin-top: 40px;
  align-items: center;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 24px;
}

.application-submit {
  display: flex;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 750;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.application-submit:hover,
.application-submit:focus-visible {
  background: #ce2029;
  border-color: #ce2029;
  outline: none;
}

.application-submit:focus-visible {
  box-shadow: 0 0 0 3px rgba(206, 32, 41, 0.25);
}

.application-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.application-status {
  min-height: 42px;
  margin: 0;
  color: #5b5b5b;
  font-size: 0.88rem;
  line-height: 1.45;
}

.application-status[data-state="error"] {
  color: #a0131a;
}

.application-status[data-state="success"] {
  color: #17653a;
}

@media (max-width: 900px) {
  .apply-section-heading,
  .application-section {
    grid-template-columns: 1fr;
  }

  .apply-section-heading,
  .application-section {
    gap: 52px;
  }

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

  .application-section__note {
    margin-top: 48px;
  }
}

@media (max-width: 620px) {
  .apply-hero {
    min-height: calc(100svh - 72px);
    padding: 32px 20px 44px;
  }

  .apply-hero::after {
    right: -150px;
    bottom: -120px;
    width: 350px;
    border-width: 48px;
  }

  .apply-hero__copy {
    margin-top: 82px;
  }

  .apply-hero h1 {
    font-size: clamp(3.75rem, 17vw, 5.7rem);
  }

  .apply-hero__copy p {
    max-width: 320px;
  }

  .apply-openings,
  .application-section {
    padding: 70px 20px;
  }

  .apply-section-heading h2,
  .application-section__intro h2 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

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

  .position-card {
    min-height: 220px;
    padding: 24px;
  }

  .position-card__name {
    font-size: 2rem;
  }

  .application-form {
    grid-template-columns: 1fr;
  }

  .form-field,
  .form-field--full,
  .application-consent,
  .application-form__footer {
    grid-column: 1;
  }

  .application-form__footer {
    grid-template-columns: 1fr;
  }

  .application-status {
    min-height: 0;
  }
}

/* Embedded application form */
.apply-page {
  display: grid;
  min-height: calc(100svh - 88px);
  padding: clamp(24px, 5vw, 64px) 16px;
  background: #f3f0e9;
  place-items: start center;
}

.apply-page iframe {
  display: block;
  width: min(100%, 640px);
  height: 832px;
  border: 0;
  background: #ffffff;
}

/* Privacy policy */
.privacy-page {
  padding: clamp(64px, 9vw, 128px) clamp(20px, 6vw, 88px);
  background: #f3f0e9;
  color: #111111;
}

.privacy-policy {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.privacy-policy__header {
  display: grid;
  padding-bottom: clamp(44px, 7vw, 82px);
  border-bottom: 1px solid #cfcac0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: clamp(40px, 8vw, 120px);
}

.privacy-policy__kicker {
  margin: 0 0 18px;
  color: #ce2029;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  grid-column: 1 / -1;
}

.privacy-policy h1 {
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 620;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.privacy-policy__dates {
  display: grid;
  min-width: 230px;
  margin: 0;
  gap: 18px;
}

.privacy-policy__dates div {
  display: grid;
  padding-top: 12px;
  border-top: 1px solid #cfcac0;
  grid-template-columns: 1fr auto;
  gap: 22px;
}

.privacy-policy__dates dt,
.privacy-policy__dates dd {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.4;
}

.privacy-policy__dates dt {
  color: #6a675f;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-policy__dates dd {
  font-weight: 650;
}

.privacy-policy__content {
  width: min(100%, 760px);
  margin: 0 auto;
  padding-top: clamp(48px, 7vw, 84px);
}

.privacy-policy__intro {
  margin: 0 0 clamp(56px, 8vw, 88px);
  color: #2e2e2e;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.65;
}

.privacy-policy__content section + section {
  margin-top: clamp(48px, 6vw, 72px);
}

.privacy-policy h2 {
  margin: 0 0 22px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.privacy-policy__content p,
.privacy-policy__content li,
.privacy-policy__content address {
  color: #4d4b47;
  font-size: 1rem;
  line-height: 1.75;
}

.privacy-policy__content p {
  margin: 0 0 16px;
}

.privacy-policy__content ul {
  margin: 4px 0 20px;
  padding-left: 1.35rem;
}

.privacy-policy__content li + li {
  margin-top: 6px;
}

.privacy-policy__content code {
  padding: 0.1em 0.3em;
  background: #e5e0d6;
  color: #292929;
  font-size: 0.92em;
}

.privacy-policy__content address {
  font-style: normal;
}

.privacy-policy__content a {
  color: #9f151c;
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

@media (max-width: 700px) {
  .apply-page {
    min-height: calc(100svh - 72px);
    padding: 12px 0 28px;
  }

  .privacy-policy__header {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .privacy-policy__dates {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
