:root {
  --ink: #12110f;
  --ink-soft: #1b1916;
  --paper: #eee9df;
  --paper-bright: #f7f3eb;
  --copper: #b78655;
  --copper-bright: #d3a36e;
  --muted: #9c978d;
  --line: rgba(238, 233, 223, 0.18);
  --line-dark: rgba(18, 17, 15, 0.18);
  --page: min(calc(100% - 40px), 1240px);
  --section-y: clamp(88px, 12vw, 176px);
  --display: clamp(3.25rem, 12vw, 10rem);
  --title: clamp(2.55rem, 6.4vw, 6.5rem);
  --serif: "Songti SC", STSong, SimSun, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.055;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.12) 4px),
    repeating-linear-gradient(90deg, transparent 0 5px, rgba(0, 0, 0, 0.16) 6px);
  mix-blend-mode: soft-light;
}

body.nav-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

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

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

ol,
ul {
  padding: 0;
  list-style: none;
}

section {
  scroll-margin-top: 72px;
}

::selection {
  color: var(--ink);
  background: var(--copper-bright);
}

:focus-visible {
  outline: 2px solid var(--copper-bright);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper-bright);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section-dark,
.section-light,
.section-accent {
  position: relative;
  padding-inline: max(20px, calc((100vw - 1240px) / 2));
}

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-accent {
  color: var(--ink);
  background: var(--copper);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: 20px;
  color: var(--paper);
  background: rgba(18, 17, 15, 0.76);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 17, 15, 0.94);
  border-bottom-color: var(--line);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--copper);
  font-family: Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  place-items: center;
}

.brand-name {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 72px;
  min-height: 44px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-label {
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
}

.menu-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
}

.menu-icon i {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}

.menu-icon i:first-child {
  top: 3px;
}

.menu-icon i:last-child {
  top: 11px;
}

.menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
  top: 7px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
  top: 7px;
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 96px 20px 40px;
  visibility: hidden;
  background: var(--ink);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}

.nav-open .site-nav {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-nav a {
  position: relative;
  padding-block: 12px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 12vw, 4.5rem);
  line-height: 1.15;
  border-bottom: 1px solid var(--line);
}

.site-nav a::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--copper);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a.is-active::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.hero {
  display: grid;
  min-height: 100svh;
  padding-top: 118px;
  padding-bottom: 42px;
  isolation: isolate;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 72px 20px 24px;
  z-index: -2;
  border: 1px solid var(--line);
  background-image:
    linear-gradient(90deg, transparent calc(50% - 0.5px), var(--line) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), var(--line) 50%, transparent calc(50% + 0.5px));
}

.hero-eyebrow,
.eyebrow,
.section-index,
.panel-label,
.intro-kicker {
  font-family: var(--mono);
  font-size: 0.67rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-eyebrow {
  position: relative;
  margin-bottom: clamp(40px, 10vh, 86px);
  color: var(--copper-bright);
  animation: hero-enter 760ms 100ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  content: "";
  background: currentColor;
}

.hero-title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: var(--display);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.hero-title span {
  display: block;
  animation: hero-enter 900ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-title span:first-child {
  animation-delay: 180ms;
}

.hero-title span:last-child {
  color: var(--copper-bright);
  animation-delay: 260ms;
}

.hero-identity {
  align-self: end;
  margin-top: clamp(48px, 10vh, 92px);
  animation: hero-enter 760ms 420ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-name {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.hero-name span {
  margin-left: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}

.hero-role {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.hero-intro {
  align-self: end;
  margin-top: 36px;
  animation: hero-enter 760ms 500ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-lead {
  max-width: 17em;
  margin-bottom: 24px;
  font-size: clamp(1.2rem, 4.2vw, 1.6rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 48px;
  padding: 12px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--copper);
}

.button-primary:hover {
  background: var(--copper-bright);
}

.button-ghost {
  color: var(--paper);
  border-color: var(--line);
}

.button-ghost:hover {
  border-color: var(--copper);
}

.button-dark {
  min-width: min(100%, 260px);
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--ink-soft);
}

.hero-mark {
  position: absolute;
  right: -8vw;
  bottom: 22%;
  z-index: -1;
  display: flex;
  align-items: baseline;
  color: transparent;
  font-family: Georgia, serif;
  font-size: clamp(10rem, 52vw, 20rem);
  font-weight: 700;
  letter-spacing: -0.16em;
  line-height: 0.65;
  -webkit-text-stroke: 1px rgba(183, 134, 85, 0.24);
  animation: mark-enter 1200ms 260ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-mark i {
  position: absolute;
  top: 48%;
  right: 8%;
  width: 18px;
  height: 18px;
  background: var(--copper);
  border-radius: 50%;
}

.hero-coordinate,
.scroll-cue {
  display: none;
}

.intro,
.approach,
.process,
.capabilities,
.principles,
.contact {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.intro::before,
.process::before,
.principles::before {
  position: absolute;
  top: 0;
  right: max(20px, calc((100vw - 1240px) / 2));
  left: max(20px, calc((100vw - 1240px) / 2));
  height: 1px;
  content: "";
  background: var(--line);
}

.section-heading {
  position: relative;
}

.section-index {
  margin-bottom: 24px;
  color: var(--copper-bright);
}

.section-light .section-index {
  color: #76512f;
}

.section-heading h2,
.contact-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--title);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.intro-body {
  margin-top: 64px;
}

.intro-kicker {
  margin-bottom: 18px;
  color: var(--copper-bright);
}

.intro-copy {
  max-width: 38em;
  margin-bottom: 22px;
  font-size: clamp(1.08rem, 3vw, 1.45rem);
  line-height: 1.9;
}

.intro-copy-secondary {
  color: var(--muted);
  font-size: 1rem;
}

.keyword-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 64px 0 0;
  border-top: 1px solid var(--line);
}

.keyword-list li {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 116px;
  padding: 18px 8px 18px 0;
  border-bottom: 1px solid var(--line);
}

.keyword-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.keyword-list li:nth-child(even) {
  padding-left: 18px;
}

.keyword-list span,
.panel-number,
.process-track li > span,
.capability-list article > span,
.principle-list li > span,
.contact-questions span {
  color: var(--copper-bright);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.approach-intro {
  max-width: 25em;
  margin-top: 44px;
  color: #605c55;
  font-size: 1.05rem;
}

.approach-grid {
  margin-top: 72px;
  border-top: 1px solid var(--line-dark);
}

.approach-panel {
  position: relative;
  min-height: 390px;
  padding: 28px 0 72px;
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.panel-number {
  margin-bottom: 64px;
  color: #76512f;
}

.panel-label {
  margin-bottom: 12px;
  color: #706a61;
}

.approach-panel h3 {
  max-width: 12em;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.18;
}

.approach-panel > p:last-of-type {
  max-width: 28em;
  margin-bottom: 0;
  color: #5c5851;
  line-height: 1.85;
}

.panel-line {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  height: 1px;
  background: var(--line-dark);
}

.panel-line::after {
  position: absolute;
  right: 0;
  width: 44px;
  height: 1px;
  content: "";
  background: var(--copper);
  transform: rotate(-34deg);
  transform-origin: right;
}

.process-note,
.capabilities-note {
  margin-top: 44px;
  color: var(--muted);
  font-size: 1rem;
}

.process-track {
  --progress: 0;
  position: relative;
  margin-top: 72px;
}

.process-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 1px;
  background: var(--line);
}

.process-progress {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--copper-bright);
  transform: scaleY(var(--progress));
  transform-origin: top;
  transition: transform 100ms linear;
}

.process-track ol {
  margin: 0;
}

.process-track li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 2px 14px;
  min-height: 142px;
  padding-left: 0;
}

.process-track li::before {
  position: absolute;
  top: 5px;
  left: 11px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--ink);
  border: 1px solid var(--copper-bright);
  border-radius: 50%;
}

.process-track li > span {
  grid-row: 1 / span 2;
  padding-left: 0;
  color: var(--copper-bright);
  text-indent: -9999px;
}

.process-track strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.2;
}

.process-track small {
  color: var(--muted);
  font-size: 0.8rem;
}

.capabilities-note {
  color: #625d55;
}

.capability-list {
  margin-top: 72px;
  border-top: 1px solid var(--line-dark);
}

.capability-list article {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  gap: 12px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding 220ms ease, background 220ms ease;
}

.capability-list article > span {
  padding-top: 7px;
  color: #76512f;
}

.capability-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 4.8vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.24;
}

.capability-list p {
  grid-column: 2 / 3;
  margin: 4px 0 0;
  color: #69645c;
  font-size: 0.9rem;
}

.capability-list i {
  grid-column: 3;
  grid-row: 1 / span 2;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-style: normal;
  transition: transform 220ms ease;
}

.capability-list article:hover i {
  transform: translate(4px, -4px);
}

.principle-list {
  margin: 72px 0 0;
  border-top: 1px solid var(--line);
}

.principle-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 132px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.principle-list strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.principle-list small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.8rem;
}

.contact {
  min-height: 100svh;
  display: grid;
  align-content: center;
}

.contact .section-index {
  color: var(--ink);
  opacity: 0.72;
}

.contact-questions {
  margin: 64px 0 0;
  border-top: 1px solid rgba(18, 17, 15, 0.35);
}

.contact-questions li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  border-bottom: 1px solid rgba(18, 17, 15, 0.35);
}

.contact-questions span {
  padding-top: 8px;
  color: var(--ink);
  opacity: 0.66;
}

.contact-action {
  margin-top: 56px;
}

.contact-action > p:first-child {
  margin-bottom: 18px;
}

.copy-status {
  min-height: 26px;
  margin: 12px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
}

.site-footer {
  display: grid;
  gap: 4px;
  padding: 48px 20px;
  color: var(--muted);
  background: var(--ink);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.site-footer a {
  margin-top: 20px;
  color: var(--copper-bright);
}

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

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mark-enter {
  from {
    opacity: 0;
    transform: translateX(48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 720px) {
  :root {
    --page: min(calc(100% - 80px), 1240px);
  }

  .section-dark,
  .section-light,
  .section-accent {
    padding-inline: max(40px, calc((100vw - 1240px) / 2));
  }

  .site-header {
    padding-inline: 40px;
  }

  .hero-grid {
    right: 40px;
    left: 40px;
  }

  .hero {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 20px;
    padding-top: 138px;
  }

  .hero-eyebrow {
    grid-column: 1 / 8;
  }

  .hero-title {
    grid-column: 1 / 13;
  }

  .hero-identity {
    grid-column: 1 / 6;
  }

  .hero-intro {
    grid-column: 7 / 13;
  }

  .hero-mark {
    right: -2vw;
    bottom: 14%;
    font-size: clamp(20rem, 46vw, 38rem);
  }

  .intro,
  .approach,
  .process,
  .capabilities,
  .principles {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 20px;
  }

  .intro .section-heading,
  .approach .section-heading,
  .process .section-heading,
  .capabilities .section-heading,
  .principles .section-heading {
    grid-column: 1 / 9;
  }

  .intro-body {
    grid-column: 6 / 13;
    margin-top: 88px;
  }

  .keyword-list {
    grid-column: 1 / 13;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 96px;
  }

  .keyword-list li:nth-child(odd),
  .keyword-list li:nth-child(even) {
    padding: 22px;
    border-right: 1px solid var(--line);
  }

  .keyword-list li:nth-child(3n + 1) {
    padding-left: 0;
  }

  .keyword-list li:nth-child(3n) {
    border-right: 0;
  }

  .approach-intro,
  .process-note,
  .capabilities-note {
    grid-column: 9 / 13;
    align-self: end;
    margin-top: 0;
  }

  .approach-grid {
    grid-column: 1 / 13;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 96px;
  }

  .approach-panel {
    min-height: 470px;
    padding: 32px;
  }

  .approach-panel:first-child {
    padding-left: 0;
    border-right: 1px solid var(--line-dark);
  }

  .approach-panel:last-child {
    padding-right: 0;
  }

  .panel-line {
    right: 32px;
    left: 32px;
  }

  .approach-panel:first-child .panel-line {
    left: 0;
  }

  .approach-panel:last-child .panel-line {
    right: 0;
  }

  .process-track,
  .capability-list,
  .principle-list {
    grid-column: 1 / 13;
    margin-top: 104px;
  }

  .capability-list article {
    grid-template-columns: 64px minmax(220px, 4fr) minmax(240px, 3fr) 28px;
    gap: 20px;
    align-items: center;
    padding: 32px 0;
  }

  .capability-list article > span,
  .capability-list p {
    padding-top: 0;
  }

  .capability-list p {
    grid-column: 3;
    margin: 0;
  }

  .capability-list i {
    grid-column: 4;
  }

  .principle-list li {
    grid-template-columns: 60px minmax(280px, 1fr) minmax(220px, 0.7fr);
    min-height: 150px;
  }

  .principle-list small {
    grid-column: 3;
  }

  .contact {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 20px;
  }

  .contact-heading {
    grid-column: 1 / 8;
  }

  .contact-questions {
    grid-column: 7 / 13;
    margin-top: 104px;
  }

  .contact-action {
    grid-column: 7 / 13;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
    padding: 56px 40px;
  }

  .site-footer a {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .site-header {
    height: 80px;
    padding-inline: max(40px, calc((100vw - 1400px) / 2));
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    z-index: auto;
    flex-direction: row;
    justify-content: flex-end;
    gap: 34px;
    padding: 0;
    visibility: visible;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  .site-nav a {
    padding: 12px 0;
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    border: 0;
  }

  .site-nav a::after {
    top: auto;
    right: auto;
    bottom: 4px;
    left: 50%;
    width: 4px;
    height: 4px;
  }

  .site-nav a.is-active::after {
    transform: translate(-50%, 0) scale(1);
  }

  .hero {
    min-height: 860px;
    padding-top: 156px;
    padding-bottom: 54px;
  }

  .hero-grid {
    inset: 80px max(40px, calc((100vw - 1240px) / 2)) 32px;
    background-size: 25% 100%, 100% 50%;
  }

  .hero-title {
    grid-column: 1 / 12;
    max-width: 11em;
  }

  .hero-identity {
    grid-column: 1 / 5;
  }

  .hero-intro {
    grid-column: 9 / 13;
  }

  .hero-coordinate {
    position: absolute;
    right: max(40px, calc((100vw - 1240px) / 2));
    bottom: 58px;
    display: block;
    margin: 0;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .scroll-cue {
    position: absolute;
    bottom: 52px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    transform: translateX(-50%) rotate(90deg);
    transform-origin: center;
  }

  .scroll-cue i {
    display: block;
    width: 42px;
    height: 1px;
    background: var(--muted);
  }

  .process-track {
    padding-top: 48px;
  }

  .process-rail {
    top: 14px;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

  .process-progress {
    transform: scaleX(var(--progress));
    transform-origin: left;
  }

  .process-track ol {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .process-track li {
    display: flex;
    min-height: 210px;
    padding: 26px 22px 0 0;
    flex-direction: column;
    border-right: 1px solid var(--line);
  }

  .process-track li:last-child {
    padding-right: 0;
    padding-left: 22px;
    border-right: 0;
  }

  .process-track li:not(:first-child):not(:last-child) {
    padding-left: 22px;
  }

  .process-track li::before {
    top: -38px;
    left: -1px;
  }

  .process-track li > span {
    margin-bottom: auto;
    padding: 0;
    text-indent: 0;
  }

  .process-track strong {
    margin-top: 52px;
  }

  .process-track small {
    margin-top: 8px;
  }

  .capability-list article:hover {
    padding-right: 16px;
    padding-left: 16px;
    background: rgba(18, 17, 15, 0.035);
  }
}

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

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

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