:root {
  --navy: #2b2e7e;
  --orange: #f58226;
  --orange-dark: #d96a14;
  --green: #066b38;
  --ink: #231f20;
  --paper: #f8f7f3;
  --line: rgba(35, 31, 32, .16);
  --soft: #e9e8e2;
  --page-padding: clamp(1.5rem, 5.2vw, 6.25rem);
  --display: "Onest", Arial, sans-serif;
  --body: "Onest", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.page-container {
  width: 100%;
  max-width: 1680px;
  padding-right: var(--page-padding);
  padding-left: var(--page-padding);
  margin: 0 auto;
}

.section-space {
  padding: clamp(3.75rem, 8.5vw, 11rem) 0;
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.text-orange {
  color: var(--orange) !important;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 1.6rem;
  height: 1px;
  content: "";
  background: currentColor;
  flex-shrink: 0;
}

.display-title {
  max-width: 14ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.65rem, 5.25vw, 6.3rem);
  font-weight: 800;
  letter-spacing: -0.072em;
  line-height: 0.94;
}
.display-title em {
  color: var(--orange);
  font-style: normal;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 11.5rem;
  padding: 1rem 1.1rem 1rem 1.35rem;
  border: 1px solid var(--navy);
  border-radius: 0;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.button i {
  margin-left: 1.2rem;
  color: var(--orange);
  font-size: 1.1rem;
  font-style: normal;
  line-height: 0.55;
}
.button:hover, .button:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}
.button:hover i, .button:focus-visible i {
  color: #fff;
}
.button--small {
  min-width: auto;
  padding: 0.78rem 0.9rem 0.78rem 1rem;
}
.button--orange {
  border-color: var(--orange);
  background: var(--orange);
}
.button--orange i {
  color: #fff;
}
.button--orange:hover, .button--orange:focus-visible {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
  color: #fff;
}
.button--orange:hover i, .button--orange:focus-visible i {
  color: #fff;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 45%, #25286e 0%, #1a1c52 52%, #12133b 100%);
  color: #fff;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  will-change: transform;
}
.intro-screen__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
  pointer-events: none;
}
.intro-screen__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(120vw, 760px);
  height: min(120vw, 760px);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.intro-screen__orbit::after {
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(245, 130, 38, 0.12);
  border-radius: 50%;
  content: "";
}
.intro-screen__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  max-width: 38rem;
  will-change: transform, opacity;
}
.intro-screen__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1.25rem, 3vh, 2.2rem);
}
.intro-screen__logo {
  width: clamp(5.2rem, 13vw, 7.5rem);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.45));
}
.intro-screen__text {
  margin-bottom: clamp(1.6rem, 3.8vh, 2.6rem);
}
.intro-screen__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.75rem;
  color: var(--orange);
  font-size: clamp(0.62rem, 1.2vw, 0.74rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.intro-screen__eyebrow::before, .intro-screen__eyebrow::after {
  width: 1.2rem;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.6;
}
.intro-screen__mission {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.6vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.24;
  color: #ffffff;
}
.intro-screen__mission em {
  color: var(--orange);
  font-style: normal;
}
.intro-screen__loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  max-width: 17rem;
}
.intro-screen__track {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  overflow: hidden;
}
.intro-screen__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), #ffa657);
  border-radius: 99px;
  box-shadow: 0 0 10px rgba(245, 130, 38, 0.75);
}
.intro-screen__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.intro-screen__counter {
  color: #fff;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.intro-screen__state {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease;
}
.intro-screen__skip {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.intro-screen__skip i {
  font-style: normal;
  transition: transform 0.2s ease;
}
.intro-screen__skip:hover, .intro-screen__skip:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.intro-screen__skip:hover i, .intro-screen__skip:focus-visible i {
  transform: translateX(2px);
}

.site-header {
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
  z-index: 1040;
}
.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(43, 46, 126, 0.96);
  backdrop-filter: blur(14px);
}

.brand img,
.footer-brand img {
  width: auto;
  height: 4.15rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-brand img {
  height: 3.5rem;
}

.navbar-brand {
  padding: 0;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(700px, 100svh);
  padding-top: 6.15rem;
  background: var(--navy);
  color: #fff;
  isolation: isolate;
}
.hero__container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 10vh;
  padding-bottom: clamp(5rem, 10vh, 8.5rem);
}
.hero__grain {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.34;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__grid-lines {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(90deg, transparent calc(50% - 0.5px), #fff 50%, transparent calc(50% + 0.5px)), linear-gradient(0deg, transparent calc(50% - 0.5px), #fff 50%, transparent calc(50% + 0.5px));
}
.hero__orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  pointer-events: none;
}
.hero__orbit--one {
  width: min(110vw, 90rem);
  height: min(110vw, 90rem);
  top: -38rem;
  right: -26rem;
}
.hero__orbit--two {
  width: min(70vw, 65rem);
  height: min(70vw, 65rem);
  bottom: -46rem;
  left: -21rem;
  border-color: rgba(245, 130, 38, 0.52);
}
.hero__eyebrow {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
.hero__title {
  max-width: 11.6em;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.15rem, 5.8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.054em;
  line-height: 0.98;
}
.hero__title span {
  display: block;
}
.hero__title em {
  color: var(--orange);
  font-style: normal;
}
.hero__intro {
  max-width: 28rem;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.5;
}
.hero__location {
  margin: 0;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.75;
  text-align: right;
}
.hero__location span {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}
.hero__bottom {
  margin-top: clamp(3.2rem, 8vh, 6.5rem);
}

.hero__scene {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__scene-shift {
  position: absolute;
  inset: -18% -10% -20% -8%;
  will-change: transform;
}

.shape-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.shape {
  position: absolute;
  display: block;
  will-change: transform;
  pointer-events: auto;
  cursor: pointer;
}

.shape--circle {
  z-index: 1;
  top: -61px;
  right: 190px;
  left: auto;
  width: min(74vmin, 54rem);
  height: min(74vmin, 54rem);
  border: clamp(10px, 1.2vw, 22px) solid var(--orange);
  border-radius: 50%;
  opacity: 0.7;
  transform-origin: 50% 50%;
}

.shape--square {
  z-index: 2;
  right: 29%;
  left: auto;
  bottom: 8%;
  width: min(26vmin, 22rem);
  height: min(34vmin, 28rem);
  background: #fff;
  transform-origin: 50% 100%;
}

.shape--triangle {
  z-index: 3;
  right: 1%;
  bottom: 23%;
  width: min(48vmin, 40rem);
  height: min(38vmin, 32rem);
  background: var(--green);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform-origin: 0 80%;
}

.hero__shape-copy {
  position: absolute;
  top: 12%;
  left: 50%;
  color: var(--navy);
  font-size: clamp(0.62rem, 1vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.08;
  transform: translateX(-50%);
  white-space: nowrap;
}

.round-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 10.75rem;
  height: 10.75rem;
  margin: 0 auto;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.round-link::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.round-link__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: round-orbit 14s linear infinite;
  pointer-events: none;
}
.round-link__ring::after {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px var(--navy);
  content: "";
  transform: translateX(-50%);
}
.round-link__label {
  position: relative;
  z-index: 1;
  max-width: 6.5rem;
  margin-top: -0.4rem;
}
.round-link i {
  position: absolute;
  z-index: 1;
  bottom: 2.2rem;
  color: var(--orange);
  font-size: 1.15rem;
  font-style: normal;
  line-height: 1;
  transition: transform 0.35s ease, color 0.3s ease;
}
.round-link:hover, .round-link:focus-visible {
  color: #fff;
}
.round-link:hover::before, .round-link:focus-visible::before {
  border-color: var(--orange);
  background: var(--orange);
  transform: scale(1.04);
}
.round-link:hover .round-link__ring, .round-link:focus-visible .round-link__ring {
  border-color: rgba(255, 255, 255, 0.7);
  border-top-color: #fff;
  animation-duration: 4s;
}
.round-link:hover i, .round-link:focus-visible i {
  color: #fff;
  transform: translateY(5px);
}

@keyframes round-orbit {
  to {
    transform: rotate(360deg);
  }
}
.acronym {
  background: #fff;
  padding: clamp(0.1rem, 4.2vw, 1rem) 0;
}

.acronym__row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.85rem, 2.2vw, 2.4rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.acronym__row li {
  position: relative;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.acronym__row li::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 1.55rem;
  height: 1px;
  background: var(--orange);
  content: "";
  transition: width 0.35s ease;
}

.acronym__row b {
  display: block;
  color: var(--navy);
  font-size: clamp(2.55rem, 5.2vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.82;
  transition: color 0.25s ease;
}

.acronym__row span {
  display: block;
  margin-top: 0.85rem;
  color: rgba(35, 31, 32, 0.42);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

.acronym__row li:hover::before,
.acronym__row li:focus-within::before {
  width: 100%;
}

.acronym__row li:hover b,
.acronym__row li:focus-within b {
  color: var(--orange);
}

.about {
  position: relative;
  isolation: isolate;
  background: var(--paper);
  overflow: hidden;
}
.about::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(rgba(35, 31, 32, 0.28) 0.7px, transparent 0.7px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  content: "";
}

.about .page-container {
  position: relative;
  z-index: 1;
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(22rem, 1.08fr);
  gap: clamp(2.5rem, 6vw, 7.5rem);
  align-items: start;
}

.about__content {
  position: relative;
}

.about__watermark {
  position: absolute;
  top: -8%;
  left: -8%;
  z-index: 0;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(5.5rem, 16vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.72;
  opacity: 0.09;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.about__content .eyebrow,
.about__content .display-title,
.about__content .about__lede,
.about__content .about__quote,
.about__content .text-link {
  position: relative;
  z-index: 1;
}

.about__content .display-title {
  max-width: 11ch;
  margin-top: 1.6rem;
}

.about__lede,
.people__intro {
  max-width: 34rem;
  margin: clamp(1.8rem, 3.5vw, 3.2rem) 0 0;
  color: rgba(35, 31, 32, 0.72);
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  line-height: 1.55;
}

.about__quote {
  margin: clamp(1.8rem, 3.2vw, 2.8rem) 0 0;
  color: var(--navy);
  font-family: var(--body);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.about__quote span {
  display: block;
  margin-top: 0.35rem;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.about__content .text-link {
  margin-top: 1.8rem;
}

.text-link {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.2rem;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid var(--orange);
  padding: 0 4px;
}

.text-link i {
  color: var(--orange);
  font-size: 1.2rem;
  font-style: normal;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.4rem;
  padding-bottom: 5.75rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 16.5rem;
  padding: 1.5rem 1.45rem 1.35rem;
  border: 1px solid var(--line);
  background: #fff;
}
.stat-card:nth-child(1) {
  min-height: 18.5rem;
  border-bottom: none;
}
.stat-card:nth-child(2) {
  min-height: 21rem;
  transform: translateY(5.25rem);
  border-left: none;
  border-bottom: none;
}
.stat-card:nth-child(3) {
  min-height: 15.25rem;
}
.stat-card:nth-child(4) {
  min-height: 14.5rem;
  transform: translateY(5.25rem);
  border-left: none;
}
.stat-card__number {
  margin: 0;
  color: var(--green);
  font-family: var(--body);
  font-size: clamp(2.7rem, 4.4vw, 4.6rem);
  font-weight: 500;
  font-optical-sizing: auto;
  letter-spacing: -0.045em;
  line-height: 0.88;
}
.stat-card > p:last-child {
  margin: 2.4rem 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.4;
  font-family: var(--body);
}

.journey {
  background: #fff;
  padding: clamp(2.3rem, 4.4vw, 3.7rem) 0;
  border-top: 1px solid var(--line);
}

.journey__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 3.4rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey__row li {
  min-width: 0;
}

.journey__row strong {
  display: block;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.28rem, 2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.journey__row span {
  display: block;
  margin-top: 0.5rem;
  color: rgba(35, 31, 32, 0.46);
  font-family: var(--body);
  font-size: clamp(0.88rem, 1.05vw, 1.02rem);
  font-weight: 400;
  line-height: 1.4;
}

.engine {
  background: #ebe8e0;
}

.engine__intro {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.2rem, 4vw, 3.4rem);
}

.engine__intro .display-title {
  max-width: 12ch;
  margin-top: 1.2rem;
}

.engine__lede {
  max-width: 42rem;
  margin: clamp(1.2rem, 2.5vw, 1.8rem) 0 0;
  color: rgba(35, 31, 32, 0.7);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.55;
}

.engine .pin-spacer {
  background: #ebe8e0;
}

.engine__pin {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 40rem;
  overflow: hidden;
  color: var(--ink);
  background: #ebe8e0;
}

.engine__wash {
  position: absolute;
  inset: -12%;
  z-index: 0;
  background: #ebe8e0;
  will-change: background-color, transform;
}

.engine__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(rgba(35, 31, 32, 0.35) 0.7px, transparent 0.7px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

.engine__field {
  position: absolute;
  top: -18%;
  left: 50%;
  z-index: 1;
  width: min(42vw, 28rem);
  height: 140%;
  color: var(--ink);
  opacity: 0.11;
  pointer-events: none;
  transform: translateX(-50%);
  will-change: transform;
}

.engine__ui {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(10rem, 16rem) minmax(0, 1fr) minmax(10rem, 16rem);
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "nav stage facts" "nav stage facts" "copy stage facts";
  height: 100%;
  padding-top: 6.4rem;
  padding-bottom: 2.2rem;
}

.engine__nav {
  grid-area: nav;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding-top: 0.4rem;
}

.engine__nav button {
  padding: 0;
  border: 0;
  background: none;
  color: rgba(35, 31, 32, 0.38);
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, font-weight 0.25s ease;
}

.engine__nav button.is-active {
  color: var(--ink);
  font-weight: 800;
}

.engine__stage {
  grid-area: stage;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
}

.engine__morph {
  width: min(58vmin, 34rem);
  height: min(58vmin, 34rem);
  overflow: visible;
  color: var(--orange);
  filter: drop-shadow(0 18px 40px rgba(43, 46, 126, 0.12));
  will-change: color;
}

.engine__title {
  position: absolute;
  inset: 16% 4%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  pointer-events: none;
}

.engine__word {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.8rem, 7.4vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.engine__word--b {
  align-self: flex-end;
  text-align: right;
}

.engine__copy {
  grid-area: copy;
  max-width: 22rem;
  padding-bottom: 0.4rem;
}

.engine__copy [data-engine-copy] p {
  margin: 0 0 0.85rem;
  color: rgba(35, 31, 32, 0.68);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.48;
}

.engine__copy [data-engine-copy] p:last-child {
  margin-bottom: 1.1rem;
}

.engine__facts {
  grid-area: facts;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-bottom: 0.3rem;
  text-align: right;
}

.engine__facts div {
  position: relative;
  margin: 0;
  padding: 0.65rem 0.9rem 0.7rem;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(43, 46, 126, 0.08);
}

.engine__facts div::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: var(--orange);
  content: "";
}

.engine__facts dt {
  color: var(--orange);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.engine__facts dd {
  margin: 0.22rem 0 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.engine__foot {
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) minmax(0, 2.2fr);
  gap: 1.5rem;
  padding: 1.8rem 0 clamp(2.4rem, 5vw, 3.6rem);
  color: rgba(35, 31, 32, 0.62);
}

.engine__foot p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.engine__foot p:first-child {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.engine__foot span {
  display: inline;
  margin-left: 0.35rem;
  color: var(--navy);
  font-weight: 600;
}

.people__intro {
  margin-top: clamp(2rem, 4vw, 4rem);
}

.people__credibility {
  margin-top: 30px;
}

.people__credibility article {
  min-height: 15rem;
  padding: 1.3rem 1.5rem;
  background: #e9e7e1;
}

.people__credibility span {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.people__credibility h3 {
  max-width: 12rem;
  margin: 3rem 0 1rem;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.people__credibility p {
  max-width: 19rem;
  margin: 0;
  color: rgba(35, 31, 32, 0.7);
  font-size: 0.83rem;
}

.team-slider {
  position: relative;
  margin-top: 60px;
}

.team-slider__head {
  margin-bottom: 1.3rem;
}

.team-slider__track {
  display: block;
  width: 100%;
}

.team-slider__track .owl-stage {
  display: flex;
}

.team-slider__track .owl-item {
  display: flex;
}

.team-slider__track .person-card {
  width: 100%;
  height: 100%;
}

.team-slider__track .owl-nav {
  position: absolute;
  top: -3.4rem;
  right: 0;
  display: flex;
  gap: 0.45rem;
  margin: 0;
}

.team-slider__track .owl-nav button {
  position: static !important;
  width: 2.4rem !important;
  height: 2.4rem !important;
  margin: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: var(--navy) !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.team-slider__track .owl-nav button:hover,
.team-slider__track .owl-nav button:focus-visible {
  border-color: var(--navy) !important;
  background: var(--navy) !important;
  color: #fff !important;
}

.team-slider__track .owl-nav button span {
  display: block;
  line-height: 1;
}

.team-slider__track .owl-dots {
  margin-top: 1.25rem;
  text-align: left;
}

.team-slider__track .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px 6px 4px 0;
  background: rgba(35, 31, 32, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.team-slider__track .owl-dots .owl-dot.active span,
.team-slider__track .owl-dots .owl-dot:hover span {
  background: var(--orange);
  transform: scale(1.15);
}

.person-card {
  display: flex;
  min-height: 22rem;
  padding: 1.8rem 1.7rem 1.5rem;
  background: var(--navy);
  color: #fff;
  flex-direction: column;
  justify-content: space-between;
}

.person-card--placeholder {
  background: var(--ink);
}

.person-card--orange {
  background: var(--orange);
}

.person-card__initials {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
}

.person-card__role {
  margin: 1.8rem 0 0.35rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--body);
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.person-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.person-card div > p:last-child {
  max-width: 19rem;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 400;
}

.person-card > a {
  align-self: flex-end;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 0.7rem;
  text-decoration: none;
}

.distinction {
  background: var(--soft);
}

.distinction__not {
  display: grid;
  gap: 1.8rem;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  color: rgba(35, 31, 32, 0.35);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.distinction__is {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.distinction__is article {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  -moz-column-gap: 1.1rem;
       column-gap: 1.1rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
}

.distinction__is b {
  color: var(--orange);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.distinction__is h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.3rem, 2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.distinction__is p {
  grid-column: 2;
  margin: 0.7rem 0 0;
  color: rgba(35, 31, 32, 0.7);
  font-size: 0.88rem;
}

.join {
  position: relative;
  overflow: hidden;
}

.join::after {
  position: absolute;
  right: -13vw;
  bottom: -24vw;
  width: 45vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.join .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.join .display-title {
  color: #fff;
}

.join__copy {
  max-width: 30rem;
  margin: 2.5rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.55;
}

.join-form {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 3.5vw, 3rem);
  background: #fff;
  color: var(--ink);
}

.join-form label,
.join-form legend {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.join-form label small {
  color: rgba(35, 31, 32, 0.5);
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.join-form .form-control {
  min-height: 3.25rem;
  padding: 0.6rem 0;
  border: 0;
  border-bottom: 1px solid rgba(35, 31, 32, 0.3);
  border-radius: 0;
  box-shadow: none;
  color: var(--ink);
}

.join-form .form-control:focus {
  border-bottom-color: var(--orange);
  box-shadow: none;
}

.join-form fieldset {
  padding: 0;
  border: 0;
}

.corner-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.corner-options label {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
}

.corner-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.corner-options span {
  display: block;
  min-height: 3.1rem;
  padding: 0.85rem;
  border: 1px solid rgba(35, 31, 32, 0.23);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.corner-options input:checked + span {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.form-message {
  min-height: 1.2rem;
  margin: 1rem 0 0;
  color: var(--orange);
  font-size: 0.76rem;
}

.form-note {
  max-width: 31rem;
  margin: 1rem 0 0;
  color: rgba(35, 31, 32, 0.57);
  font-size: 0.64rem;
  line-height: 1.5;
}

.form-success {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  background: var(--orange);
  color: #fff;
  text-align: center;
}

.form-success > span {
  font-size: 2.5rem;
}

.form-success h3 {
  margin: 1rem auto;
  max-width: 13ch;
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.form-success p {
  max-width: 23rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  padding: clamp(4rem, 8vw, 7.5rem) 0 1.7rem;
  background: var(--ink);
  color: #fff;
}

.site-footer > .page-container > .row {
  padding-bottom: clamp(4rem, 8vw, 7.5rem);
}

.site-footer p {
  margin: clamp(2rem, 4vw, 4rem) 0 0;
  font-size: clamp(2rem, 4vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.site-footer p em {
  color: var(--orange);
  font-style: normal;
}

.footer-meta {
  display: grid;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.footer-meta a {
  margin-top: 1.4rem;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__base {
  display: flex;
  justify-content: space-between;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1199.98px) {
  .hero__title {
    font-size: clamp(2.25rem, 5vw, 4.4rem);
  }
  .about__layout {
    grid-template-columns: minmax(16rem, 1fr) minmax(18rem, 1fr);
    gap: clamp(2rem, 3.5vw, 4rem);
  }
  .acronym__row {
    gap: clamp(0.65rem, 1.6vw, 1.4rem);
  }
  .acronym__row span {
    letter-spacing: 0.1em;
    font-size: 0.58rem;
  }
  .engine__ui {
    grid-template-columns: minmax(8rem, 12.5rem) minmax(0, 1fr) minmax(8.5rem, 13rem);
  }
  .engine__facts div {
    padding: 0.55rem 0.75rem 0.6rem;
  }
  .person-card {
    padding: 1.5rem 1.35rem 1.3rem;
    min-height: 20rem;
  }
}
@media (max-width: 991.98px) {
  .site-header {
    background: rgba(43, 46, 126, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }
  .hero {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: clamp(3.5rem, 6vw, 5rem);
  }
  .hero__container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .hero__scene-shift {
    inset: -14% -18% -16% -6%;
  }
  .shape--circle {
    width: min(64vmin, 32rem);
    height: min(64vmin, 32rem);
    top: 4%;
    right: -16%;
    opacity: 0.45;
  }
  .shape--square {
    width: min(22vmin, 13rem);
    height: min(28vmin, 17rem);
    right: 6%;
    bottom: 22%;
  }
  .shape--triangle {
    width: min(38vmin, 22rem);
    height: min(30vmin, 18rem);
    right: -8%;
    bottom: 16%;
  }
  .hero__bottom {
    margin-top: 3rem;
  }
  .round-link {
    margin: 1.75rem auto 0;
  }
  .acronym {
    padding: clamp(1.8rem, 3.5vw, 2.8rem) 0;
  }
  .acronym__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem 1.2rem;
  }
  .acronym__row b {
    font-size: clamp(2.4rem, 6.5vw, 3.8rem);
  }
  .acronym__row span {
    white-space: normal;
    letter-spacing: 0.08em;
    font-size: 0.58rem;
  }
  .about__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__content .display-title {
    max-width: none;
  }
  .about__lede,
  .about__quote {
    max-width: none;
  }
  .stats-grid {
    margin-top: 2rem;
    padding-bottom: 4.5rem;
    gap: 1rem;
  }
  .stat-card {
    min-height: 15rem;
    padding: 1.35rem 1.3rem 1.25rem;
  }
  .stat-card:nth-child(1) {
    min-height: 16.5rem;
  }
  .stat-card:nth-child(2) {
    min-height: 18.5rem;
    transform: translateY(3.5rem);
  }
  .stat-card:nth-child(4) {
    transform: translateY(3.5rem);
  }
  .journey {
    padding: 2.5rem 0;
  }
  .journey__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem 2.2rem;
  }
  .engine__pin {
    height: 100vh;
    height: 100dvh;
    min-height: 40rem;
  }
  .engine__ui {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    grid-template-areas: "nav" "stage" "copy" "facts";
    padding-top: 5.5rem;
    padding-bottom: 1.5rem;
    gap: 0.75rem;
  }
  .engine__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem 1.25rem;
    padding-top: 0;
  }
  .engine__stage {
    padding: 0.75rem 0;
  }
  .engine__morph {
    width: min(50vmin, 20rem);
    height: min(50vmin, 20rem);
  }
  .engine__word {
    font-size: clamp(2.4rem, 8vw, 4.2rem);
  }
  .engine__copy {
    max-width: none;
    padding-bottom: 0;
  }
  .engine__copy [data-engine-copy] p {
    font-size: 0.88rem;
    margin-bottom: 0.85rem;
  }
  .engine__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    text-align: left;
    padding-bottom: 0;
  }
  .engine__facts div::after {
    right: auto;
    left: 0;
  }
  .engine__foot {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .engine__foot span {
    display: inline;
    margin-left: 0;
  }
  .people__credibility {
    margin-top: 2rem;
  }
  .people__credibility article {
    min-height: auto;
    padding: 1.3rem 1.4rem;
  }
  .people__credibility h3 {
    margin: 2rem 0 0.75rem;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    max-width: none;
  }
  .people__credibility p {
    max-width: none;
  }
  .team-slider {
    margin-top: 3.5rem;
  }
  .person-card {
    min-height: 19rem;
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .distinction__not {
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    gap: 1.4rem;
    padding-bottom: 1.5rem;
  }
  .distinction__is {
    margin-top: 2.5rem;
  }
  .distinction__is article {
    padding: 1.1rem 0;
  }
  .join__copy {
    margin-top: 1.8rem;
    margin-bottom: 2.5rem;
  }
  .join-form {
    padding: clamp(1.5rem, 3vw, 2.5rem);
  }
  .site-footer > .page-container > .row {
    padding-bottom: 3.5rem;
  }
  .site-footer p {
    margin-top: 1.8rem;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
  }
  .site-footer__base {
    gap: 1rem;
  }
}
@media (max-width: 767.98px) {
  .team-slider__track .owl-nav {
    position: static;
    justify-content: flex-end;
    margin-top: 1rem;
  }
  .person-card {
    min-height: auto;
    padding: 1.6rem 1.4rem 1.4rem;
  }
  .person-card div > p:last-child {
    max-width: none;
  }
  .people__credibility .col-md-4 {
    margin-bottom: 0.75rem;
  }
  .distinction__not {
    gap: 1.2rem;
  }
  .distinction__is {
    margin-top: 2rem;
  }
  .corner-options {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .site-footer p {
    font-size: clamp(1.85rem, 6vw, 3.2rem);
  }
}
@media (max-width: 575.98px) {
  .navbar {
    min-height: 4.85rem;
    padding: 0.6rem 0;
    gap: 0.75rem;
  }
  .brand img {
    height: 3.1rem;
  }
  .button--small {
    padding: 0.65rem 0.75rem 0.65rem 0.8rem;
    font-size: 0.62rem;
  }
  .hero {
    min-height: auto;
  }
  .hero__container {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
  }
  .hero__eyebrow {
    margin-bottom: 12px;
    font-size: 0.62rem;
  }
  .hero__title {
    font-size: clamp(2rem, 8.4vw, 2.65rem);
    line-height: 1.02;
    max-width: none;
  }
  .hero__intro {
    font-size: 0.95rem;
    line-height: 1.48;
    max-width: none;
  }
  .hero__bottom {
    margin-top: 2.2rem;
  }
  .round-link {
    width: 8.8rem;
    height: 8.8rem;
    font-size: 0.56rem;
    margin: 1.5rem auto 0;
  }
  .round-link i {
    bottom: 1.8rem;
    font-size: 1rem;
  }
  .hero__scene-shift {
    inset: -10% -24% -12% -4%;
  }
  .shape--circle {
    width: 58vmin;
    height: 58vmin;
    opacity: 0.32;
    right: -24%;
    top: 8%;
  }
  .shape--square {
    width: 18vmin;
    height: 24vmin;
    right: 4%;
    bottom: 18%;
  }
  .shape--triangle {
    width: 32vmin;
    height: 24vmin;
    right: -10%;
    bottom: 12%;
  }
  .acronym {
    padding: 1.75rem 0;
  }
  .acronym__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 0.75rem;
  }
  .acronym__row b {
    font-size: clamp(2.2rem, 9.5vw, 3.2rem);
  }
  .acronym__row span {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    white-space: normal;
  }
  .about {
    padding: 3.8rem 0;
  }
  .about__watermark {
    font-size: clamp(3.8rem, 15vw, 6.2rem);
    top: -2%;
    left: -2%;
    opacity: 0.06;
  }
  .about__content .display-title {
    font-size: clamp(2.15rem, 8.6vw, 2.85rem);
    line-height: 1.02;
  }
  .about__lede {
    font-size: 0.98rem;
    margin-top: 1.25rem;
  }
  .about__quote {
    font-size: 1.12rem;
    margin-top: 1.35rem;
  }
  .about__quote span {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 0.95;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1.8rem;
    padding-bottom: 0;
  }
  .stat-card {
    min-height: 11rem !important;
    padding: 1rem 0.85rem 0.95rem;
    border: 1px solid var(--line) !important;
    transform: none !important;
  }
  .stat-card__number {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
    font-family: var(--body);
  }
  .stat-card > p:last-child {
    margin-top: 0.9rem;
    font-size: 0.72rem;
    line-height: 1.35;
  }
  .journey {
    padding: 2.2rem 0;
  }
  .journey__row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .journey__row strong {
    font-size: clamp(1.3rem, 5.5vw, 1.65rem);
  }
  .journey__row span {
    font-size: 0.85rem;
    margin-top: 0.35rem;
  }
  .engine__pin {
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
  }
  .engine__ui {
    padding-top: clamp(4.4rem, 8.5vh, 5.2rem);
    padding-bottom: clamp(0.75rem, 2vh, 1.25rem);
    gap: 0.35rem;
  }
  .engine__nav {
    gap: 0.55rem 1rem;
    width: 100%;
  }
  .engine__nav button {
    font-size: clamp(1.15rem, 5.2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    padding: 0.35rem 0;
    min-height: 2.5rem;
  }
  .engine__nav button.is-active {
    font-weight: 800;
  }
  .engine__stage {
    padding: 0.35rem 0;
  }
  .engine__morph {
    width: min(46vmin, 12rem);
    height: min(46vmin, 12rem);
  }
  .engine__title {
    inset: 12% 2%;
  }
  .engine__word {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
    line-height: 0.82;
  }
  .engine__copy [data-engine-copy] p {
    font-size: 0.82rem;
    line-height: 1.42;
    margin-bottom: 0.6rem;
  }
  .engine__copy .text-link {
    font-size: 0.66rem;
  }
  .engine__facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
  }
  .engine__facts div {
    padding: 0.35rem 0.45rem 0.4rem;
  }
  .engine__facts dt {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
  .engine__facts dd {
    font-size: 0.8rem;
    margin-top: 0.1rem;
  }
  .engine__foot {
    padding: 1.2rem 0 1.8rem;
    font-size: 0.68rem;
  }
  .people {
    padding: 3.8rem 0;
  }
  .people__intro {
    font-size: 0.95rem;
    margin-top: 1.2rem;
  }
  .people__credibility {
    margin-top: 1.5rem;
  }
  .people__credibility article {
    min-height: auto;
    padding: 1.2rem 1.15rem;
  }
  .people__credibility h3 {
    font-size: 1.35rem;
    margin: 1.2rem 0 0.6rem;
  }
  .team-slider {
    margin-top: 2.5rem;
  }
  .team-slider__track .owl-nav {
    position: static;
    justify-content: flex-end;
    margin-top: 0.85rem;
  }
  .person-card {
    min-height: auto;
    padding: 1.4rem 1.25rem 1.25rem;
  }
  .person-card h3 {
    font-size: 1.45rem;
  }
  .distinction {
    padding: 3.8rem 0;
  }
  .distinction__not {
    font-size: clamp(1.1rem, 4.4vw, 1.35rem);
    gap: 1.1rem;
    padding-bottom: 1.25rem;
  }
  .distinction__is {
    margin-top: 2rem;
  }
  .distinction__is article {
    grid-template-columns: 1.75rem 1fr;
    -moz-column-gap: 0.85rem;
         column-gap: 0.85rem;
    padding: 0.95rem 0;
  }
  .distinction__is h3 {
    font-size: clamp(1.2rem, 4.5vw, 1.55rem);
  }
  .distinction__is p {
    margin-top: 0.5rem;
    font-size: 0.84rem;
  }
  .join {
    padding: 3.8rem 0;
  }
  .join__copy {
    margin-top: 1.4rem;
    font-size: 0.95rem;
  }
  .join-form {
    padding: 1.35rem 1.15rem;
  }
  .join-form .form-control {
    min-height: 2.85rem;
    font-size: 0.88rem;
  }
  .corner-options {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .corner-options span {
    min-height: 2.75rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.7rem;
  }
  .form-note {
    font-size: 0.68rem;
    line-height: 1.42;
  }
  .form-success {
    padding: 3rem 1.5rem;
  }
  .form-success h3 {
    font-size: 2.1rem;
  }
  .site-footer {
    padding: 3.5rem 0 1.5rem;
  }
  .site-footer > .page-container > .row {
    padding-bottom: 2.5rem;
  }
  .footer-brand img {
    height: 2.85rem;
  }
  .site-footer p {
    margin-top: 1.4rem;
    font-size: clamp(1.65rem, 7.5vw, 2.5rem);
    letter-spacing: -0.045em;
    line-height: 1.02;
  }
  .footer-meta {
    margin-top: 1.5rem;
    font-size: 0.72rem;
  }
  .site-footer__base {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1.2rem;
    text-align: left;
  }
}
@media (max-width: 374.98px) {
  .acronym__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 0.65rem;
  }
  .engine__facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .button--small {
    padding: 0.55rem 0.65rem;
    font-size: 0.58rem;
  }
  .brand img {
    height: 2.6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .intro-screen {
    display: none !important;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}/*# sourceMappingURL=style.css.map */