:root {
  color-scheme: light;
  --ink: #091117;
  --ink-2: #111c23;
  --ink-3: #1b2830;
  --paper: #f3f3ee;
  --paper-2: #e7e9e5;
  --white: #ffffff;
  --text: #121b21;
  --muted: #69747a;
  --red: #d21f2b;
  --red-deep: #a7131d;
  --steel: #526d78;
  --sage: #6c7d71;
  --ice: #c7d4d6;
  --line: rgba(18, 27, 33, 0.18);
  --line-light: rgba(255, 255, 255, 0.16);
  --container: 1280px;
  --header-height: 98px;
  --radius: 4px;
  --font-body: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --font-display: Bahnschrift, "Arial Narrow", "Aptos Display", "Segoe UI", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

.js body.is-loading {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
select {
  cursor: pointer;
}

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

a {
  color: inherit;
}

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

p,
blockquote {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 780;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

::selection {
  background: var(--red);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid rgba(210, 31, 43, 0.62);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.section-shell,
.header-shell,
.hero-shell {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  color: var(--white);
  pointer-events: none;
}

.intro[hidden],
.no-js .intro {
  display: none;
}

.intro-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
}

.intro-lockup {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 20px;
  opacity: 0;
  transform: scale(0.88);
}

.intro-logo-frame {
  position: relative;
  width: 260px;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--white);
}

.intro-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-scan {
  position: absolute;
  inset: 0 auto 0 -12px;
  width: 8px;
  background: var(--red);
  box-shadow: 0 0 28px rgba(210, 31, 43, 0.75);
}

.intro-lockup p {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-curtain {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 50.05%;
  background: var(--ink);
}

.intro-curtain-left {
  left: 0;
  transform-origin: left;
}

.intro-curtain-right {
  right: 0;
  transform-origin: right;
}

body.is-ready .intro-lockup {
  animation: intro-lockup 2.05s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.is-ready .intro-scan {
  animation: intro-scan 1.3s 260ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

body.is-ready .intro-curtain-left {
  animation: curtain-left 1s 1.6s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

body.is-ready .intro-curtain-right {
  animation: curtain-right 1s 1.6s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

body.is-ready .intro {
  animation: intro-exit 2.95s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

body.intro-complete .intro {
  visibility: hidden;
}

@keyframes intro-lockup {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }
  20%,
  72% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.025);
  }
}

@keyframes intro-scan {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(280px);
  }
}

@keyframes curtain-left {
  to {
    transform: translateX(-102%);
  }
}

@keyframes curtain-right {
  to {
    transform: translateX(102%);
  }
}

@keyframes intro-exit {
  0%,
  76% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  will-change: transform;
}

.preview-notice {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  display: grid;
  width: min(390px, calc(100% - 32px));
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 14px;
  padding: 16px 14px 16px 18px;
  transform: translateY(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  background: rgba(9, 17, 23, 0.98);
  box-shadow: 0 20px 52px rgba(2, 8, 12, 0.32);
  color: var(--white);
  pointer-events: none;
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1),
    visibility 0s linear 520ms;
}

.preview-notice.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.preview-notice strong {
  display: block;
  color: #f36c74;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.preview-notice p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.55;
}

.preview-notice button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  line-height: 1;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.preview-notice button:hover,
.preview-notice button:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  transform: rotate(6deg);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 17, 23, 0.88);
  color: var(--white);
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  box-shadow: 0 12px 34px rgba(2, 8, 12, 0.18);
  backdrop-filter: none;
}

.header-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.48);
  transform-origin: 50% 34%;
}

.brand-name {
  display: grid;
  line-height: 1.1;
}

.brand-name strong {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 820;
  text-transform: uppercase;
}

.brand-name small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.64rem;
  font-weight: 760;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 12px 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 10px;
  bottom: 6px;
  left: 10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 13px;
  overflow: hidden;
  padding: 12px 16px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 840;
  text-decoration: none;
}

.menu-button {
  display: none;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-navigation {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.mobile-navigation.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
}

.mobile-nav-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 40px), 680px);
  min-height: 100%;
  align-content: start;
  gap: 32px;
  margin-inline: auto;
  padding-top: calc(var(--header-height) + 26px);
  padding-bottom: 32px;
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-nav-brand img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  background: var(--white);
}

.mobile-nav-brand span {
  max-width: 240px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.mobile-nav-inner nav {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.mobile-nav-inner nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 760;
  text-decoration: none;
}

.mobile-nav-inner nav a span {
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.62rem;
}

.mobile-nav-inner > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.js .mobile-navigation .mobile-nav-brand,
.js .mobile-navigation nav a,
.js .mobile-navigation > .mobile-nav-inner > p {
  opacity: 0;
  transform: translateY(14px);
}

.js .mobile-navigation.is-open .mobile-nav-brand,
.js .mobile-navigation.is-open nav a,
.js .mobile-navigation.is-open > .mobile-nav-inner > p {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.js .mobile-navigation.is-open nav a:nth-child(1) { transition-delay: 70ms; }
.js .mobile-navigation.is-open nav a:nth-child(2) { transition-delay: 110ms; }
.js .mobile-navigation.is-open nav a:nth-child(3) { transition-delay: 150ms; }
.js .mobile-navigation.is-open nav a:nth-child(4) { transition-delay: 190ms; }
.js .mobile-navigation.is-open nav a:nth-child(5) { transition-delay: 230ms; }
.js .mobile-navigation.is-open nav a:nth-child(6) { transition-delay: 270ms; }
.js .mobile-navigation.is-open nav a:nth-child(7) { transition-delay: 310ms; }

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - 54px);
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(9, 17, 23, 0.94) 0%, rgba(9, 17, 23, 0.72) 48%, rgba(9, 17, 23, 0.12) 76%);
  content: "";
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 86%);
}

.hero-light-field {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 49%;
  height: 100%;
  clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%, 14% 48%);
  background: var(--white);
  color: var(--ink);
}

.hero-light-field::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 17, 23, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 17, 23, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
}

.hero-light-field::after {
  position: absolute;
  inset: 0 auto 0 14%;
  width: 5px;
  background: var(--red);
  content: "";
  transform: skewX(-8deg);
}

.hero-logo-stage {
  position: absolute;
  top: 50%;
  right: 4%;
  width: min(40vw, 610px);
  aspect-ratio: 1;
  transform: translate3d(var(--logo-x, 0px), calc(-50% + var(--logo-y, 0px)), 0);
  will-change: transform;
}

.hero-logo-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

.logo-coordinate,
.logo-index {
  position: absolute;
  z-index: 2;
  color: rgba(9, 17, 23, 0.55);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.logo-coordinate {
  top: 5%;
  left: 2%;
}

.logo-index {
  right: 2%;
  bottom: 5%;
}

.hero-shell {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 100%;
  align-items: center;
  padding-top: calc(var(--header-height) + 62px);
  padding-bottom: 154px;
}

.hero-copy {
  width: 64%;
  max-width: 850px;
}

.hero-status {
  display: flex;
  max-width: 610px;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-status span:last-child {
  margin-left: auto;
  color: var(--red);
}

.status-pulse {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(210, 31, 43, 0.55);
  animation: status-pulse 2.2s ease-out infinite;
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(210, 31, 43, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(210, 31, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(210, 31, 43, 0); }
}

.hero h1 {
  font-size: 5.7rem;
  line-height: 0.91;
  text-transform: uppercase;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line > span {
  display: block;
}

.title-line-accent {
  color: #f14852;
  font-family: var(--font-serif);
  font-size: 0.88em;
  font-style: italic;
  font-weight: 700;
  text-transform: none;
}

.hero-lede {
  max-width: 610px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.12rem;
  line-height: 1.65;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  padding: 14px 19px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.76rem;
  font-weight: 840;
  text-decoration: none;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

.button::before,
.header-cta::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(104deg, transparent 24%, rgba(255, 255, 255, 0.2) 50%, transparent 76%);
  content: "";
  transform: translateX(-140%);
  transition: transform 560ms ease;
}

.button:hover::before,
.header-cta:hover::before {
  transform: translateX(140%);
}

.button > span,
.header-cta > span {
  position: relative;
  z-index: 1;
}

.button-red {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(210, 31, 43, 0.22);
}

.button-red:hover {
  border-color: #e3303b;
  background: #e3303b;
  box-shadow: 0 16px 40px rgba(210, 31, 43, 0.34);
}

.button-line {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(9, 17, 23, 0.2);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-line:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.button-white {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.magnetic {
  transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0);
  transition:
    transform 180ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
  will-change: transform;
}

.hero-foot {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  display: grid;
  width: 50%;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-foot > div {
  min-width: 0;
}

.hero-foot span,
.hero-foot strong {
  display: block;
}

.hero-foot > div span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  font-weight: 780;
  text-transform: uppercase;
}

.hero-foot > div strong {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.64rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-foot > a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.js .site-header,
.js .hero-status,
.js .hero-lede,
.js .hero-actions,
.js .hero-foot {
  opacity: 0;
}

.js .title-line > span {
  transform: translateY(110%);
}

.js body.intro-complete .site-header,
.js body.intro-complete .hero-status,
.js body.intro-complete .hero-lede,
.js body.intro-complete .hero-actions,
.js body.intro-complete .hero-foot {
  opacity: 1;
  transition: opacity 600ms ease;
}

.js body.intro-complete .site-header { transition-delay: 40ms; }
.js body.intro-complete .hero-status { transition-delay: 100ms; }
.js body.intro-complete .hero-lede { transition-delay: 400ms; }
.js body.intro-complete .hero-actions { transition-delay: 520ms; }
.js body.intro-complete .hero-foot { transition-delay: 660ms; }

.js body.intro-complete .title-line > span {
  transform: translateY(0);
  transition: transform 760ms cubic-bezier(0.22, 0.75, 0.18, 1);
}

.js body.intro-complete .title-line:nth-child(1) > span { transition-delay: 160ms; }
.js body.intro-complete .title-line:nth-child(2) > span { transition-delay: 240ms; }
.js body.intro-complete .title-line:nth-child(3) > span { transition-delay: 320ms; }

.signal-strip {
  position: relative;
  z-index: 5;
  height: 54px;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.signal-track {
  display: flex;
  width: max-content;
  min-height: 54px;
  align-items: center;
  animation: signal-run 24s linear infinite;
  will-change: transform;
}

.signal-sequence {
  display: flex;
  min-width: 100vw;
  min-height: 54px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  padding-right: 24px;
}

.signal-track span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 820;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-track i,
.experience-marquee i {
  display: block;
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  transform: rotate(45deg);
  background: currentColor;
}

@keyframes signal-run {
  to { transform: translate3d(-50%, 0, 0); }
}

.kicker {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.kicker-light {
  color: #f36c74;
}

.section-heading h2,
.approach-intro h2,
.experience-lead h2,
.courses-heading h2,
.resources-intro h2,
.newsletter-copy h2,
.contact-heading h2 {
  font-size: 4.4rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.missions {
  padding: 118px 0 126px;
  background: var(--paper-2);
  color: var(--text);
}

.mission-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 64px;
  align-items: end;
}

.mission-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.mission-heading > p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.mission-interface {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  min-height: 610px;
  margin-top: 58px;
  border-top: 1px solid rgba(18, 27, 33, 0.28);
  border-bottom: 1px solid rgba(18, 27, 33, 0.28);
}

.mission-tabs {
  display: grid;
  align-content: start;
  border-right: 1px solid rgba(18, 27, 33, 0.28);
}

.mission-tab {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  padding: 14px 20px 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(18, 27, 33, 0.18);
  background: transparent;
  color: var(--text);
  text-align: left;
  transition:
    color 220ms ease,
    padding 220ms ease,
    background-color 220ms ease;
}

.mission-tab::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  transform: scaleY(0);
  background: var(--red);
  content: "";
  transition: transform 220ms ease;
}

.mission-tab:hover,
.mission-tab[aria-selected="true"] {
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.54);
}

.mission-tab[aria-selected="true"]::before {
  transform: scaleY(1);
}

.mission-tab > span:first-child {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 850;
}

.mission-tab strong {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.mission-tab > span:last-child {
  color: var(--muted);
}

.mission-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  transition:
    opacity 150ms ease,
    transform 260ms cubic-bezier(0.3, 0.8, 0.2, 1),
    clip-path 320ms cubic-bezier(0.3, 0.8, 0.2, 1);
}

.mission-stage.is-changing {
  clip-path: inset(0 0 0 8%);
  opacity: 0;
  transform: translateX(10px);
}

.mission-panel {
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.mission-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}

.mission-code {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.64rem;
  font-weight: 820;
  text-transform: uppercase;
}

.mission-code::before {
  width: 42px;
  height: 2px;
  background: var(--red);
  content: "";
}

.mission-copy h3 {
  margin-top: 26px;
  font-size: 3rem;
  line-height: 0.98;
  overflow-wrap: normal;
  text-transform: uppercase;
  word-break: normal;
}

.mission-copy > p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.97rem;
  line-height: 1.75;
}

.mission-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}

.mission-facts span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mission-copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin-top: 32px;
  color: #f2666f;
  font-size: 0.74rem;
  font-weight: 840;
  text-decoration: none;
}

.mission-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--ink-2);
  isolation: isolate;
}

.mission-visual img,
.course-media img,
.resource-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-visual::before,
.course-media::before,
.resource-preview-visual::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
}

.mission-visual::after {
  position: absolute;
  top: -20%;
  right: 22%;
  width: 2px;
  height: 145%;
  background: var(--mission-accent, var(--red));
  content: "";
  transform: rotate(24deg);
  box-shadow: 0 0 30px color-mix(in srgb, var(--mission-accent, var(--red)) 55%, transparent);
}

.mission-visual-field {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: space-between;
  padding: 34px;
}

.mission-visual-field > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mission-visual-field strong {
  color: rgba(255, 255, 255, 0.11);
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 820;
  line-height: 0.8;
  text-transform: uppercase;
}

.mission-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 128px;
  height: 128px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.mission-crosshair::before,
.mission-crosshair::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.mission-crosshair::before {
  top: 50%;
  left: -36px;
  width: calc(100% + 72px);
  height: 1px;
}

.mission-crosshair::after {
  top: -36px;
  left: 50%;
  width: 1px;
  height: calc(100% + 72px);
}

.approach {
  padding: 126px 0;
  background: var(--white);
}

.approach-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 70px;
  align-items: end;
}

.approach-intro > p {
  color: var(--muted);
  line-height: 1.75;
}

.approach-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 84px;
  margin-top: 88px;
}

.approach-visual-wrap {
  position: relative;
}

.approach-visual {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: flex;
  aspect-ratio: 4 / 3;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 38px;
  background: var(--ink);
  color: var(--white);
}

.approach-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

.map-axis {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.16);
}

.map-axis-one {
  top: 15%;
  bottom: -20%;
  left: 55%;
  width: 1px;
  transform: rotate(31deg);
}

.map-axis-two {
  top: 57%;
  right: -10%;
  left: -10%;
  height: 1px;
  transform: rotate(-12deg);
}

.map-point {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(210, 31, 43, 0.12);
  animation: map-point-pulse 2.8s ease-in-out infinite;
}

.map-point-one { top: 24%; left: 38%; }
.map-point-two { top: 64%; left: 69%; animation-delay: -0.9s; }
.map-point-three { top: 75%; left: 24%; animation-delay: -1.8s; }

@keyframes map-point-pulse {
  0%,
  100% {
    transform: scale(0.86);
    box-shadow: 0 0 0 4px rgba(210, 31, 43, 0.08);
  }

  50% {
    transform: scale(1.16);
    box-shadow: 0 0 0 12px rgba(210, 31, 43, 0.16);
  }
}

.approach-readout {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 76%;
}

.approach-readout.is-updating {
  animation: approach-readout-change 480ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes approach-readout-change {
  from {
    opacity: 0.18;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.approach-readout > span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
}

.approach-readout strong {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.approach-readout small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.approach-progress {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5px;
  background: rgba(255, 255, 255, 0.12);
}

.approach-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(0.25);
  transform-origin: top;
  background: var(--red);
  transition: transform 420ms ease;
}

.approach-coordinates {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  font-weight: 800;
}

.approach-steps {
  display: grid;
}

.approach-step {
  display: grid;
  min-height: 58vh;
  align-content: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  opacity: 0.34;
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.approach-step:last-child {
  border-bottom: 1px solid var(--line);
}

.approach-step.is-active {
  opacity: 1;
  transform: translateX(-14px);
}

.approach-step > span {
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 850;
}

.approach-step h3 {
  margin-top: 18px;
  font-size: 3.4rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.approach-step p {
  max-width: 580px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.approach-step ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.approach-step li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 760;
  text-transform: uppercase;
}

.experience {
  position: relative;
  overflow: hidden;
  padding: 0 0 126px;
  background: var(--ink);
  color: var(--white);
}

.experience-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.experience-track {
  display: flex;
  width: max-content;
  min-height: 78px;
  align-items: center;
  color: rgba(255, 255, 255, 0.24);
  animation: experience-run 30s linear infinite;
  will-change: transform;
}

.experience-sequence {
  display: flex;
  min-width: 100vw;
  min-height: 78px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  padding-right: 30px;
}

.experience-marquee span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 760;
  text-transform: uppercase;
  white-space: nowrap;
}

.experience-marquee i {
  color: var(--red);
}

@keyframes experience-run {
  to { transform: translate3d(-50%, 0, 0); }
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 80px;
  padding-top: 112px;
}

.experience-lead {
  align-self: start;
}

.experience-lead > p:last-child {
  max-width: 540px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.experience-index {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.experience-number {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.experience-number strong,
.experience-number span {
  display: block;
}

.experience-number strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.8;
}

.experience-number span {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-list {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.experience-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.experience-item > span {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 850;
}

.experience-item h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.experience-item p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
  line-height: 1.6;
}

.courses {
  padding: 126px 0 96px;
  overflow: hidden;
  background: var(--paper);
}

.courses-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.course-controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.course-count {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.course-count span:first-child {
  color: var(--red);
}

.course-count i {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--line);
}

.course-controls button {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.course-controls button:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.course-viewport {
  margin-top: 58px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-left: max(32px, calc((100vw - var(--container)) / 2));
  padding-right: 32px;
  scrollbar-width: none;
  cursor: grab;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
}

.course-viewport::-webkit-scrollbar {
  display: none;
}

.course-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.course-rail {
  display: flex;
  width: max-content;
  gap: 18px;
}

.course-card {
  position: relative;
  display: flex;
  width: 390px;
  min-height: 548px;
  flex-direction: column;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  border: 1px solid var(--line);
  background: var(--white);
  scroll-snap-align: start;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(9, 17, 23, 0.15);
}

.course-media {
  position: relative;
  display: flex;
  aspect-ratio: 4 / 3;
  align-items: end;
  overflow: hidden;
  padding: 24px;
  isolation: isolate;
  background: var(--ink-2);
  color: var(--white);
}

.course-media::after {
  position: absolute;
  top: -32%;
  right: 24%;
  width: 2px;
  height: 160%;
  background: rgba(255, 255, 255, 0.38);
  content: "";
  transform: rotate(28deg);
}

.course-media .course-code {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 4.8rem;
  font-weight: 820;
  line-height: 0.8;
}

.course-media .course-sector {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.course-red { background: #4b2025; }
.course-steel { background: #2c414b; }
.course-sage { background: #34443d; }
.course-charcoal { background: #202a31; }

.course-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.course-card-body > span {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
}

.course-card-body h3 {
  margin-top: 14px;
  font-size: 1.55rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.course-card-body p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

.section-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.section-text-link span {
  transition: transform 180ms ease;
}

.section-text-link:hover span,
.section-text-link:focus-visible span {
  transform: translateX(5px);
}

.course-card-body a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.course-progress {
  height: 2px;
  margin-top: 44px;
  overflow: hidden;
  background: rgba(18, 27, 33, 0.12);
}

.course-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
}

.resources {
  padding: 126px 0;
  background: var(--paper-2);
}

.resources-intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: end;
}

.resources-intro .kicker {
  align-self: start;
  padding-top: 10px;
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.74fr);
  gap: 72px;
  margin-top: 68px;
}

.resource-list {
  border-top: 1px solid rgba(18, 27, 33, 0.26);
}

.resource-row {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 136px;
  padding: 24px 4px;
  border-bottom: 1px solid rgba(18, 27, 33, 0.26);
  color: var(--text);
  text-decoration: none;
}

.resource-row::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--white);
  content: "";
  transition: transform 240ms ease;
}

.resource-row:hover::before,
.resource-row:focus-visible::before,
.resource-row.is-active::before {
  transform: scaleY(1);
}

.resource-row > * {
  position: relative;
  z-index: 1;
}

.resource-row > span:first-child {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 850;
}

.resource-row h3 {
  font-size: 1.48rem;
  line-height: 1.15;
  transition: transform 220ms ease;
}

.resource-row:hover h3,
.resource-row:focus-visible h3,
.resource-row.is-active h3 {
  transform: translateX(8px);
}

.resource-row p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.76rem;
}

.resource-row > span:last-child {
  color: var(--muted);
  font-size: 1rem;
}

.resource-preview-wrap {
  position: relative;
}

.resource-preview {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.resource-preview-visual {
  position: absolute;
  inset: 0;
  isolation: isolate;
  overflow: hidden;
}

.resource-preview-visual::after {
  position: absolute;
  inset: -30% 28% -30% auto;
  width: 2px;
  background: var(--red);
  content: "";
  transform: rotate(24deg);
}

.resource-preview-copy {
  position: absolute;
  inset: auto 30px 28px;
  z-index: 2;
}

.resource-preview-copy span {
  color: #f16b74;
  font-size: 0.6rem;
  font-weight: 850;
  text-transform: uppercase;
}

.resource-preview-copy strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  text-transform: uppercase;
}

.resource-preview-code {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 820;
  line-height: 1;
}

.resource-preview.is-updating {
  opacity: 0.45;
  transform: translateY(8px);
}

.resource-preview {
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.newsletter {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--red-deep);
  color: var(--white);
}

.newsletter-angle {
  position: absolute;
  inset: 0 0 0 36%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--ink-2);
}

.newsletter-angle::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}

.newsletter-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1.36fr);
  gap: 82px;
  align-items: start;
}

.newsletter-copy h2 {
  font-size: 3.7rem;
}

.newsletter-copy > p:last-child {
  max-width: 430px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

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

.field {
  min-width: 0;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 840;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(18, 27, 33, 0.28);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #858e93;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(210, 31, 43, 0.11);
}

.field-dark label {
  color: rgba(255, 255, 255, 0.52);
}

.field-dark input,
.field-dark select {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.field-dark select option {
  background: var(--ink);
  color: var(--white);
}

.field-dark input:focus,
.field-dark select:focus {
  border-color: #f16b74;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.newsletter-action {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

.form-status {
  min-height: 1.4em;
  color: #f6a4aa;
  font-size: 0.74rem;
  font-weight: 720;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 126px 0;
  background: var(--paper);
}

.contact-grid {
  position: absolute;
  inset: 0 0 auto 50%;
  height: 58%;
  background-image:
    linear-gradient(rgba(18, 27, 33, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 27, 33, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.contact-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 70px;
  align-items: end;
}

.contact-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -42px;
}

.contact-heading h2 {
  font-size: 6.4rem;
  line-height: 0.84;
}

.contact-heading h2 span {
  color: var(--red);
}

.contact-heading > p {
  color: var(--muted);
  line-height: 1.75;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  gap: 78px;
  align-items: start;
  margin-top: 76px;
}

.contact-aside {
  display: grid;
  align-content: start;
}

.contact-logo {
  width: min(100%, 300px);
  aspect-ratio: 1;
  overflow: hidden;
}

.contact-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.contact-aside blockquote {
  margin-top: 28px;
  padding: 22px 0 22px 22px;
  border-left: 4px solid var(--red);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
}

.contact-readout {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-readout span {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 820;
  text-transform: uppercase;
}

.contact-readout strong {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form {
  padding-top: 34px;
  border-top: 4px solid var(--red);
}

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

.field-full {
  grid-column: 1 / -1;
}

.contact-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.site-footer {
  position: relative;
  background: #070d12;
  color: var(--white);
}

.footer-signal {
  height: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.footer-signal span {
  display: block;
  width: 32%;
  height: 100%;
  background: var(--red);
  animation: footer-signal 7s ease-in-out infinite alternate;
}

@keyframes footer-signal {
  from { transform: translateX(0); }
  to { transform: translateX(215%); }
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) repeat(4, minmax(130px, 0.7fr));
  gap: 44px;
  padding-top: 78px;
  padding-bottom: 70px;
}

.footer-brand img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  background: var(--white);
}

.footer-brand p {
  max-width: 330px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
}

.footer-brand > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: #f26d75;
  font-size: 0.72rem;
  font-weight: 840;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 10px;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.77rem;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-column a:hover {
  transform: translateX(4px);
  color: var(--white);
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  font-weight: 760;
  text-transform: uppercase;
}

.footer-bottom > span:nth-child(2) {
  text-align: center;
}

.footer-bottom > span:last-child {
  text-align: right;
}

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-mask {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 850ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal-mask.in-view {
  opacity: 1;
  transform: translateY(0);
}

html.motion-fallback .intro {
  display: none;
}

html.motion-fallback body.is-loading {
  overflow: auto;
}

html.motion-fallback.js .site-header,
html.motion-fallback.js .hero-status,
html.motion-fallback.js .hero-lede,
html.motion-fallback.js .hero-actions,
html.motion-fallback.js .hero-foot,
html.motion-fallback.js .reveal,
html.motion-fallback.js .reveal-mask {
  opacity: 1;
  transform: none;
}

html.motion-fallback.js .title-line > span {
  transform: none;
}

@media (min-width: 1540px) {
  :root {
    --container: 1380px;
  }

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

  .hero-logo-stage {
    width: 640px;
  }
}

@media (max-width: 1280px) {
  :root {
    --header-height: 90px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button,
  .mobile-navigation {
    display: flex;
  }

  .menu-button {
    margin-left: auto;
  }

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

  .hero-logo-stage {
    width: 46vw;
    right: -2%;
  }

  .mission-copy {
    padding: 40px;
  }

  .mission-copy h3 {
    font-size: 2.8rem;
  }
}

@media (max-width: 1080px) {
  .section-shell,
  .header-shell,
  .hero-shell {
    width: min(calc(100% - 48px), var(--container));
  }

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

  .section-heading h2,
  .approach-intro h2,
  .experience-lead h2,
  .courses-heading h2,
  .resources-intro h2 {
    font-size: 3.7rem;
  }

  .hero-light-field {
    width: 52%;
  }

  .mission-interface {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .mission-panel {
    grid-template-columns: 1fr;
  }

  .mission-visual {
    min-height: 260px;
  }

  .mission-copy {
    order: 2;
  }

  .mission-visual-field strong {
    font-size: 7rem;
  }

  .approach-story {
    gap: 48px;
  }

  .experience-layout {
    gap: 50px;
  }

  .experience-index {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .experience-number strong {
    font-size: 4.8rem;
  }

  .newsletter-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .newsletter-angle {
    left: 0;
    clip-path: polygon(0 28%, 100% 12%, 100% 100%, 0 100%);
  }

  .newsletter-copy {
    max-width: 680px;
  }

  .contact-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-heading .kicker {
    grid-column: auto;
    margin-bottom: 0;
  }

  .contact-heading > p {
    max-width: 620px;
  }

  .contact-heading h2 {
    font-size: 5.4rem;
  }

  .contact-layout {
    gap: 48px;
  }

  .footer-main {
    grid-template-columns: minmax(250px, 1.4fr) repeat(2, minmax(150px, 1fr));
  }
}

@media (min-width: 861px) and (max-height: 850px) {
  .hero-shell {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 94px;
  }

  .hero-status {
    margin-bottom: 18px;
  }

  .hero-lede {
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-foot {
    bottom: 22px;
  }
}

@media (min-width: 1081px) and (max-height: 850px) {
  .hero h1 {
    font-size: 4.9rem;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: calc(100svh - 44px);
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(9, 17, 23, 0.98) 0%, rgba(9, 17, 23, 0.82) 48%, rgba(9, 17, 23, 0.1) 80%);
  }

  .hero-light-field {
    top: 0;
    right: -8%;
    width: 88%;
    height: 360px;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 8% 52%);
  }

  .hero-light-field::after {
    left: 8%;
  }

  .hero-logo-stage {
    top: 50%;
    right: 7%;
    width: min(70vw, 390px);
  }

  .hero-shell {
    flex-direction: column;
    align-items: flex-start;
    padding-top: calc(var(--header-height) + 315px);
    padding-bottom: 48px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 680px;
    font-size: 3.8rem;
  }

  .hero-foot {
    position: static;
    width: 100%;
    margin-top: 44px;
  }

  .mission-heading,
  .approach-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission-heading .kicker {
    grid-column: auto;
    margin-bottom: 0;
  }

  .mission-heading > p:last-child,
  .approach-intro > p {
    max-width: 650px;
  }

  .mission-interface {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mission-tabs {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 27, 33, 0.28);
    scrollbar-width: none;
  }

  .mission-tabs::-webkit-scrollbar {
    display: none;
  }

  .mission-tab {
    min-width: 210px;
    flex: 0 0 auto;
    padding-left: 16px;
    border-right: 1px solid rgba(18, 27, 33, 0.18);
    border-bottom: 0;
  }

  .mission-tab::before {
    inset: auto 0 0;
    width: auto;
    height: 4px;
    transform: scaleX(0);
  }

  .mission-tab[aria-selected="true"]::before {
    transform: scaleX(1);
  }

  .mission-panel {
    min-height: 0;
  }

  .approach-story {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .approach-visual {
    position: relative;
    top: auto;
    max-width: 680px;
  }

  .approach-step {
    min-height: 0;
    opacity: 1;
    padding: 52px 0;
  }

  .approach-step.is-active {
    transform: none;
  }

  .experience-layout {
    grid-template-columns: 1fr;
  }

  .experience-lead {
    max-width: 720px;
  }

  .resource-layout {
    grid-template-columns: 1fr;
  }

  .resource-preview-wrap {
    order: -1;
  }

  .resource-preview {
    position: relative;
    top: auto;
    max-width: 720px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    grid-template-columns: 220px 1fr;
    gap: 30px;
    align-items: center;
  }

  .contact-logo {
    grid-row: 1 / 3;
  }

  .contact-aside blockquote {
    margin-top: 0;
  }

  .contact-readout {
    margin-top: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .footer-bottom > span:nth-child(2),
  .footer-bottom > span:last-child {
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 80px;
  }

  .section-shell,
  .header-shell,
  .hero-shell {
    width: min(calc(100% - 32px), var(--container));
  }

  .preview-notice {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 10px;
    padding: 14px 12px 14px 14px;
  }

  .preview-notice p {
    font-size: 0.72rem;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand-name strong {
    max-width: 180px;
    font-size: 0.78rem;
  }

  .brand-name small {
    display: none;
  }

  .menu-button {
    width: 46px;
    height: 46px;
  }

  .intro-logo-frame {
    width: 220px;
  }

  .hero-light-field {
    width: 94%;
    height: 320px;
  }

  .hero-logo-stage {
    right: 3%;
    width: min(76vw, 330px);
  }

  .hero-shell {
    padding-top: calc(var(--header-height) + 288px);
    padding-bottom: 36px;
  }

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

  .hero-lede {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-foot {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    margin-top: 34px;
  }

  .hero-foot > div:nth-child(2) {
    display: none;
  }

  .hero-foot > a {
    grid-column: auto;
    justify-self: end;
  }

  .logo-index {
    display: none;
  }

  .missions,
  .approach,
  .resources,
  .contact {
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .section-heading h2,
  .approach-intro h2,
  .experience-lead h2,
  .courses-heading h2,
  .resources-intro h2,
  .newsletter-copy h2 {
    font-size: 2.75rem;
  }

  .mission-copy {
    padding: 30px 24px;
  }

  .mission-copy h3 {
    font-size: 2.35rem;
  }

  .mission-facts {
    grid-template-columns: 1fr;
  }

  .mission-visual {
    min-height: 230px;
  }

  .mission-visual-field {
    padding: 24px;
  }

  .mission-visual-field strong {
    font-size: 5.5rem;
  }

  .approach-story {
    margin-top: 54px;
  }

  .approach-visual {
    padding: 26px;
  }

  .approach-readout strong {
    font-size: 3.8rem;
  }

  .approach-step h3 {
    font-size: 2.7rem;
  }

  .experience {
    padding-bottom: 84px;
  }

  .experience-layout {
    padding-top: 78px;
  }

  .experience-index {
    grid-template-columns: 1fr;
  }

  .experience-number {
    position: static;
  }

  .experience-number strong {
    font-size: 4.2rem;
  }

  .courses {
    padding: 84px 0 72px;
  }

  .courses-heading {
    align-items: start;
    flex-direction: column;
  }

  .course-viewport {
    margin-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .course-card {
    width: min(84vw, 340px);
    min-height: 520px;
  }

  .resources-intro {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .resource-layout {
    gap: 36px;
    margin-top: 42px;
  }

  .resource-row {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 120px;
  }

  .resource-row h3 {
    font-size: 1.2rem;
  }

  .newsletter {
    padding: 78px 0;
  }

  .newsletter-angle {
    inset: 28% 0 0;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
  }

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

  .field-full,
  .newsletter-action {
    grid-column: auto;
  }

  .newsletter-action,
  .contact-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-heading h2 {
    font-size: 4rem;
  }

  .contact-layout {
    margin-top: 52px;
  }

  .contact-aside {
    grid-template-columns: 1fr;
  }

  .contact-logo {
    grid-row: auto;
    width: 220px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
    padding-top: 58px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 440px) {
  .brand-name {
    display: none;
  }

  .hero-light-field {
    height: 285px;
  }

  .hero-logo-stage {
    width: 270px;
  }

  .hero-shell {
    padding-top: calc(var(--header-height) + 250px);
  }

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

  .hero-status span:nth-child(2) {
    max-width: 190px;
  }

  .hero-foot {
    display: none;
  }

  .section-heading h2,
  .approach-intro h2,
  .experience-lead h2,
  .courses-heading h2,
  .resources-intro h2,
  .newsletter-copy h2 {
    font-size: 2.35rem;
  }

  .mission-tab {
    min-width: 190px;
  }

  .mission-copy h3 {
    font-size: 2rem;
  }

  .approach-step h3 {
    font-size: 2.35rem;
  }

  .resource-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .resource-row > span:last-child {
    display: none;
  }

  .contact-heading h2 {
    font-size: 3.2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 440px) and (max-height: 720px) {
  .hero-light-field {
    height: 220px;
  }

  .hero-logo-stage {
    right: 10%;
    width: 210px;
  }

  .logo-coordinate {
    display: none;
  }

  .hero-shell {
    padding-top: calc(var(--header-height) + 160px);
    padding-bottom: 18px;
  }

  .hero-status {
    margin-bottom: 13px;
  }

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

  .hero-lede {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
}

html.motion-reduce {
  scroll-behavior: auto;
}

html.motion-reduce *,
html.motion-reduce *::before,
html.motion-reduce *::after {
  scroll-behavior: auto !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

html.motion-reduce .intro {
  display: none;
}

html.motion-reduce body.is-loading {
  overflow: auto;
}

html.motion-reduce.js .site-header,
html.motion-reduce.js .hero-status,
html.motion-reduce.js .hero-lede,
html.motion-reduce.js .hero-actions,
html.motion-reduce.js .hero-foot,
html.motion-reduce.js .reveal,
html.motion-reduce.js .reveal-mask {
  opacity: 1;
  transform: none;
}

html.motion-reduce.js .title-line > span,
html.motion-reduce.js .reveal-mask {
  clip-path: none;
  transform: none;
}

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

  html:not(.motion-full) *,
  html:not(.motion-full) *::before,
  html:not(.motion-full) *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html:not(.motion-full) .intro {
    display: none;
  }

  html:not(.motion-full) body.is-loading {
    overflow: auto;
  }

  html:not(.motion-full).js .site-header,
  html:not(.motion-full).js .hero-status,
  html:not(.motion-full).js .hero-lede,
  html:not(.motion-full).js .hero-actions,
  html:not(.motion-full).js .hero-foot,
  html:not(.motion-full).js .reveal,
  html:not(.motion-full).js .reveal-mask {
    opacity: 1;
    transform: none;
  }

  html:not(.motion-full).js .title-line > span,
  html:not(.motion-full).js .reveal-mask {
    clip-path: none;
    transform: none;
  }
}
