:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #5f5f5f;
  --dim: #8c8c8c;
  --line: #dedede;
  --line-soft: #eeeeee;
  --faint: #efefef;
  --paper: #ffffff;
  --danger: #9d2d24;
  --success: #2f6f45;
  --max: 1240px;
  --header: 72px;
  --edge: max(44px, calc((100vw - var(--max)) / 2));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

button,
input,
textarea {
  font: inherit;
}

:where(a, button, input, textarea):focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header);
  padding: 0 var(--edge);
  border-bottom: 1px solid var(--line-soft);
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.cover-actions,
.hero-actions,
.official-actions,
.journey-strip {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-logo {
  display: block;
  width: 36px;
  height: auto;
}

.brand-name {
  white-space: nowrap;
}

.nav {
  justify-content: center;
  gap: 34px;
  color: var(--muted);
  font-size: 13px;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--ink);
}

.header-action,
.button,
.text-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.header-action {
  justify-self: end;
  width: max-content;
  min-width: 108px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
}

.button {
  min-width: 146px;
  padding: 0 22px;
  font-size: 14px;
}

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

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

.button:hover,
.header-action:hover,
.text-button:hover {
  transform: translateY(-1px);
}

.button-primary:hover,
.header-action:hover {
  background: transparent;
  color: var(--ink);
}

.button:disabled,
.text-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.button:disabled:hover,
.text-button:disabled:hover {
  transform: none;
}

.hero {
  scroll-margin-top: var(--header);
}

#top {
  scroll-margin-top: var(--header);
}

.cover-hero {
  position: relative;
  display: grid;
  min-height: calc(100dvh - var(--header));
  padding: 0 var(--edge) 42px;
  isolation: isolate;
}

.cover-main {
  align-self: start;
  justify-self: center;
  display: block;
  width: calc(100% + var(--edge) + var(--edge));
  max-width: none;
  margin-inline: calc(-1 * var(--edge));
  transform: none;
}

.cover-center {
  display: grid;
  justify-items: center;
  gap: 30px;
}

.cover-logo {
  display: block;
  width: clamp(150px, 16vw, 220px);
  height: auto;
}

.cover-title {
  margin: 0;
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: 0.2em;
}

.hero-video-frame {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-video-frame::before {
  content: none;
}

.hero-video-canvas {
  position: relative;
  height: clamp(370px, 61dvh, 560px);
  overflow: hidden;
  border: 0;
  background: var(--paper);
}

.hero-video-canvas::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(to bottom, rgb(255 255 255 / 0), var(--paper));
  pointer-events: none;
}

.hero-video {
  position: absolute;
  left: 50%;
  top: 52%;
  display: block;
  width: 150%;
  height: 150%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: saturate(0.82) contrast(1.04);
}

.hero-person-card {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.cover-line {
  position: absolute;
  left: var(--edge);
  right: var(--edge);
  bottom: 202px;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.journey-strip {
  position: absolute;
  left: var(--edge);
  right: var(--edge);
  bottom: 84px;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-soft);
  background: rgb(255 255 255 / 0.78);
  backdrop-filter: blur(12px);
}

.journey-strip a {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: baseline;
  min-width: min(30vw, 250px);
  padding: 22px clamp(18px, 3vw, 48px);
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.journey-strip a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: var(--line-soft);
}

.journey-strip span {
  grid-row: 1 / span 2;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 300;
  line-height: 0.95;
}

.journey-strip strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.journey-strip small {
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.journey-strip a:hover {
  background: #fafafa;
  transform: translateY(-2px);
}

.cover-actions {
  position: absolute;
  right: var(--edge);
  bottom: 22px;
  gap: 12px;
}

.section {
  position: relative;
  scroll-margin-top: calc(var(--header) + 22px);
  counter-increment: page-section;
  min-height: calc(100dvh - var(--header));
  padding: 118px var(--edge);
  border-top: 1px solid var(--line-soft);
  isolation: isolate;
}

main {
  counter-reset: page-section;
}

.section::before {
  content: "0" counter(page-section);
  position: absolute;
  top: clamp(78px, 8vw, 118px);
  right: var(--edge);
  z-index: -1;
  color: #f0f0f0;
  font-size: clamp(64px, 10vw, 132px);
  font-weight: 300;
  line-height: 0.8;
  pointer-events: none;
}

.section-kicker {
  margin: 0;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 720;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.large-copy,
.section-copy {
  color: var(--muted);
  line-height: 1.9;
}

.profile-section {
  display: grid;
  gap: 28px;
  align-content: center;
  padding-top: 86px;
  padding-bottom: 76px;
  overflow-x: hidden;
}

.profile-carousel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.profile-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: min(100%, 232px);
  border: 1px solid var(--line);
}

.profile-switch-button {
  min-height: 38px;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 0 16px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  transition: background 180ms ease, color 180ms ease;
}

.profile-switch-button:last-child {
  border-right: 0;
}

.profile-switch-button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.profile-viewport {
  overflow: visible;
  clip-path: inset(0);
  outline: none;
  touch-action: pan-y;
}

.profile-track {
  display: flex;
  width: 200%;
  transform: translate3d(0, 0, 0);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.profile-carousel[data-slide="1"] .profile-track {
  transform: translate3d(-50%, 0, 0);
}

.profile-slide {
  flex: 0 0 50%;
  min-width: 0;
  min-height: min(680px, calc(100dvh - var(--header) - 170px));
}

.profile-slide-bio {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(390px, 1fr);
  gap: clamp(76px, 13vw, 190px);
  align-items: center;
}

.profile-portrait {
  justify-self: center;
  width: min(100%, 420px);
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.profile-portrait img {
  display: block;
  width: 100%;
  height: min(66dvh, 620px);
  object-fit: contain;
  object-position: center bottom;
}

.profile-content {
  display: grid;
  gap: clamp(40px, 6vh, 68px);
}

.profile-lead {
  display: grid;
  gap: 16px;
}

.profile-lead .large-copy {
  margin: 0;
  font-size: 15px;
}

.profile-meta {
  display: grid;
  gap: 0;
  max-width: 560px;
  border-top: 1px solid var(--line);
}

.meta-heading {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.award-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 15px;
}

.award-row span {
  font-weight: 760;
}

.award-row strong {
  min-width: 0;
  font-weight: 460;
  overflow-wrap: anywhere;
}

.profile-slide-awards {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.awards-photo-copy {
  display: grid;
  gap: 20px;
  align-content: start;
}

.awards-photo-copy .large-copy {
  max-width: 360px;
  margin: 0;
  font-size: 17px;
}

.awards-photo-frame {
  justify-self: end;
  width: min(100%, 760px);
  margin: 0;
  border: 1px solid var(--line-soft);
  background: var(--paper);
}

.awards-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(62dvh, 620px);
  object-fit: contain;
  object-position: center;
}

.section-heading-row {
  display: grid;
  gap: 20px;
  max-width: 780px;
}

.section-copy {
  max-width: 650px;
  margin: 0;
  font-size: 15px;
}

.process-list {
  display: grid;
  gap: 0;
  margin-top: 72px;
}

.process-section > .section-heading-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(64px, 10vw, 150px);
  max-width: none;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.process-section {
  padding-top: 92px;
}

.process-section .process-list {
  margin-top: 0;
}

.process-section > .section-heading-row .section-kicker {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  padding-top: 10px;
}

.process-section > .section-heading-row .section-title,
.process-section > .section-heading-row .section-copy {
  grid-column: 2;
}

.process-item {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(64px, 10vw, 150px);
  min-height: 430px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.process-number {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  color: #e9e9e9;
  font-size: clamp(64px, 8vw, 104px);
  font-weight: 300;
  line-height: 0.8;
}

.process-item > div:nth-child(2) {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  margin-top: 68px;
}

.process-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.1vw, 42px);
  font-weight: 700;
  line-height: 1.12;
}

.process-label {
  margin: 0 0 28px;
  color: var(--dim);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.process-summary {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.process-count {
  margin: 26px 0 0;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-steps {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  align-content: center;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) minmax(150px, 236px);
  gap: 28px clamp(28px, 4vw, 58px);
  align-items: start;
  min-height: 126px;
  padding: 0 0 34px 42px;
  border-bottom: 1px solid var(--line-soft);
}

.process-step + .process-step {
  padding-top: 34px;
}

.process-step:last-child {
  min-height: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.process-step span {
  position: absolute;
  left: -15px;
  top: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 760;
}

.process-step + .process-step span {
  top: 34px;
}

.process-step strong {
  display: block;
  margin: -2px 0 14px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
}

.process-step > div {
  grid-column: 2;
  min-width: 0;
}

.process-media {
  grid-column: 3;
  align-self: start;
  width: min(100%, 236px);
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #f7f7f7;
  border: 1px solid var(--line-soft);
}

.process-media img {
  --media-x: 0%;
  --media-y: 0%;
  --media-scale: 1;
  --media-hover-scale: 1.025;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.02);
  transform: translate3d(var(--media-x), var(--media-y), 0) scale(var(--media-scale));
  transform-origin: center;
  transition: transform 420ms ease, filter 420ms ease;
}

.process-step:hover .process-media img {
  transform: translate3d(var(--media-x), var(--media-y), 0) scale(var(--media-hover-scale));
  filter: saturate(0.98) contrast(1.04);
}

.process-step p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.official-panel {
  display: block;
  min-height: calc(100dvh - var(--header) - 120px);
}

.official-section {
  padding-top: clamp(76px, 8vh, 104px);
  padding-bottom: clamp(78px, 8vh, 108px);
}

.official-media {
  width: 100%;
  max-width: 1180px;
  min-height: min(72dvh, 720px);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: var(--faint);
}

.official-media img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1), filter 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.official-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgb(255 255 255 / 0.58) 72%, rgb(255 255 255 / 0.92) 100%);
}

.official-media:hover img {
  transform: scale(1.018);
  filter: saturate(1) contrast(1.04);
}

.official-media-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.official-entry {
  position: absolute;
  left: clamp(24px, 4vw, 58px);
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 54px);
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  pointer-events: none;
}

.official-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-items: start;
  gap: 12px;
  pointer-events: auto;
}

.official-actions .button {
  min-width: 0;
  width: 100%;
}

.official-actions .button-primary:hover {
  background: var(--ink);
  color: var(--paper);
}

.official-actions .button-ghost {
  background: rgb(255 255 255 / 0.32);
  backdrop-filter: blur(14px);
}

.official-actions .button-ghost:hover {
  background: rgb(255 255 255 / 0.62);
}

.official-id {
  display: grid;
  gap: 10px;
  pointer-events: auto;
}

.official-id span {
  color: rgb(17 17 17 / 0.62);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.official-id strong {
  font-size: clamp(34px, 5.2vw, 68px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1;
}

.official-handle {
  margin: 0;
  color: rgb(17 17 17 / 0.72);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.2;
}

.copy-official {
  white-space: nowrap;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 80;
  max-width: min(420px, calc(100vw - 48px));
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 10px, 0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.brief-section .section-heading-row {
  max-width: 880px;
}

.brief-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  max-width: 980px;
  margin-top: 58px;
}

.brief-entry-copy {
  display: grid;
  gap: 18px;
}

.brief-entry-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.75;
}

.brief-external-link {
  min-width: 188px;
}

.site-header,
.journey-strip,
.journey-strip a + a::before,
.section,
.profile-carousel-head,
.profile-switch,
.profile-switch-button,
.profile-portrait,
.profile-meta,
.award-row,
.awards-photo-frame,
.process-section > .section-heading-row,
.process-item,
.process-steps::before,
.process-step,
.process-media,
.official-actions,
.official-route,
.official-route div,
.text-button {
  border: 0 !important;
}

.section::before {
  content: none;
}

.process-step span {
  display: none;
}

.process-step,
.process-step + .process-step {
  padding-left: 0;
}

.process-step > div,
.process-step p {
  grid-column: 1 / 3;
}

@media (max-width: 560px) {
  .process-item > div:nth-child(2) {
    display: none !important;
  }

  .process-list {
    gap: 34px !important;
  }

  .process-item {
    gap: 0 !important;
  }

  .process-steps {
    gap: 28px !important;
    margin-top: 0 !important;
  }

  .process-step,
  .process-step + .process-step {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 10px 14px !important;
    align-items: start !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .process-step span,
  .process-step + .process-step span {
    position: static !important;
    display: grid !important;
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    place-items: center !important;
    width: 30px !important;
    height: 30px !important;
    margin-top: -2px !important;
    background: var(--ink) !important;
    color: var(--paper) !important;
    font-size: 12px !important;
    font-weight: 760 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
  }

  .process-step > div {
    grid-column: 2 !important;
    min-width: 0 !important;
  }

  .process-step strong {
    margin: 0 0 6px !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  .process-step p {
    grid-column: auto !important;
    max-width: none !important;
    margin: 0 !important;
    color: var(--muted) !important;
    font-size: 12px !important;
    line-height: 1.58 !important;
  }

  .process-media {
    grid-column: 2 !important;
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    margin: 8px 0 0 !important;
  }
}

@media (max-width: 560px) {
  .process-item > div:nth-child(2) {
    display: none !important;
  }

  .process-list {
    gap: 34px !important;
  }

  .process-item {
    gap: 0 !important;
  }

  .process-steps {
    gap: 28px !important;
    margin-top: 0 !important;
  }

  .process-step,
  .process-step + .process-step {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 10px 14px !important;
    align-items: start !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .process-step span,
  .process-step + .process-step span {
    position: static !important;
    display: grid !important;
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    place-items: center !important;
    width: 30px !important;
    height: 30px !important;
    margin-top: -2px !important;
    background: var(--ink) !important;
    color: var(--paper) !important;
    font-size: 12px !important;
    font-weight: 760 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
  }

  .process-step > div {
    grid-column: 2 !important;
    min-width: 0 !important;
  }

  .process-step strong {
    margin: 0 0 6px !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  .process-step p {
    grid-column: auto !important;
    max-width: none !important;
    margin: 0 !important;
    color: var(--muted) !important;
    font-size: 12px !important;
    line-height: 1.58 !important;
  }

  .process-media {
    grid-column: 2 !important;
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    margin: 8px 0 0 !important;
  }
}

/* Mobile process: keep desktop unchanged, but make the flow read like the 9:16 PPT pages. */
@media (max-width: 560px) {
  .process-section {
    padding-top: 76px;
  }

  .process-section > .section-heading-row {
    gap: 12px !important;
    padding-bottom: 34px !important;
  }

  .process-section > .section-heading-row .section-kicker,
  .process-section > .section-heading-row .section-title,
  .process-section > .section-heading-row .section-copy {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .process-list {
    gap: 48px !important;
  }

  .process-item {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .process-number,
  .process-count {
    display: none !important;
  }

  .process-item > div:nth-child(2) {
    grid-column: 1 !important;
    grid-row: auto !important;
    align-self: start !important;
    margin-top: 0 !important;
  }

  .process-title {
    max-width: 8em;
    margin-bottom: 8px;
    font-size: 30px;
    line-height: 1.08;
  }

  .process-label {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .process-summary {
    max-width: none;
    font-size: 14px;
    line-height: 1.72;
  }

  .process-steps {
    grid-column: 1 !important;
    grid-row: auto !important;
    gap: 22px !important;
    margin-top: 4px !important;
  }

  .process-step,
  .process-step + .process-step {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .process-step > div,
  .process-step p,
  .process-media {
    grid-column: 1 !important;
  }

  .process-step strong {
    margin: 0 0 7px;
    font-size: 20px;
    line-height: 1.2;
  }

  .process-step p {
    max-width: none;
    font-size: 13px;
    line-height: 1.7;
  }

  .process-media {
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    margin: 8px 0 0 !important;
    background: #f5f5f5;
  }

  .process-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.reveal {
  will-change: opacity, transform;
}

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

  .reveal {
    will-change: auto;
  }
}

@media (max-width: 980px) {
  :root {
    --header: 64px;
    --edge: 24px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-inline: 22px;
  }

  .nav {
    display: none;
  }

  .brand-name {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .cover-hero,
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cover-hero {
    align-content: start;
    row-gap: 24px;
  }

  .cover-main {
    width: calc(100% + 48px);
    margin-inline: -24px;
  }

  .hero-video-frame {
    justify-self: center;
    width: 100%;
    margin-inline: 0;
    padding: 0;
  }

  .hero-video-canvas {
    height: auto;
    aspect-ratio: 16 / 8.4;
  }

  .hero-video {
    top: 49%;
    width: 150%;
    height: 150%;
  }

  .cover-actions {
    position: static;
    justify-content: center;
    align-self: end;
    margin-top: 24px;
  }

  .cover-line {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    align-self: auto;
    margin-bottom: 16px;
  }

  .journey-strip {
    position: static;
    align-self: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
  }

  .journey-strip a {
    min-width: 0;
    padding: 16px 12px;
  }

  .profile-slide-bio,
  .profile-slide-awards,
  .process-item,
  .official-panel {
    grid-template-columns: 1fr;
  }

  .profile-section {
    gap: 24px;
  }

  .profile-carousel-head {
    align-items: flex-start;
  }

  .profile-slide {
    min-height: auto;
  }

  .profile-slide-bio,
  .profile-slide-awards {
    gap: 46px;
  }

  .profile-portrait {
    width: min(74vw, 360px);
  }

  .profile-portrait img {
    height: auto;
    max-height: 56dvh;
  }

  .profile-content {
    gap: 44px;
  }

  .awards-photo-frame {
    justify-self: stretch;
  }

  .awards-photo-frame img {
    height: auto;
    max-height: 62dvh;
  }

  .process-item {
    gap: 24px;
    min-height: auto;
    padding: 38px 0;
  }

  .process-section > .section-heading-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 38px;
  }

  .process-section > .section-heading-row .section-kicker,
  .process-section > .section-heading-row .section-title,
  .process-section > .section-heading-row .section-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .process-item > div:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    margin-top: -34px;
  }

  .process-number {
    grid-column: 1;
    grid-row: 1;
  }

  .process-steps {
    grid-column: 1;
    grid-row: 3;
    margin-top: 22px;
  }

  .process-step {
    grid-template-columns: 34px minmax(0, 1fr) minmax(120px, 190px);
    min-height: 0;
  }

  .process-step p {
    grid-column: 2;
  }

  .process-media {
    grid-column: 2 / 4;
    width: min(100%, 320px);
    aspect-ratio: 16 / 10;
  }

  .official-panel {
    min-height: auto;
  }

  .official-media {
    min-height: 64dvh;
  }

  .official-entry {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .official-actions {
    grid-template-columns: auto auto;
  }

  .brief-entry {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    margin-top: 42px;
  }

  .brief-external-link {
    width: max-content;
  }
}

@media (max-width: 560px) {
  :root {
    --edge: 24px;
  }

  .header-action {
    display: none;
  }

  .cover-logo {
    width: 150px;
  }

  .hero-video-frame {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 0;
  }

  .hero-video-canvas {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-video {
    top: 50%;
    width: 150%;
    height: 150%;
  }

  .cover-title {
    font-size: 18px;
  }

  .cover-line {
    text-align: center;
    line-height: 1.8;
  }

  .cover-actions,
  .button {
    width: 100%;
  }

  .journey-strip {
    grid-template-columns: 1fr;
  }

  .journey-strip a {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 14px 0;
  }

  .journey-strip a + a::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .button {
    min-width: 0;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-title {
    font-size: 30px;
  }

  .profile-carousel-head {
    display: grid;
  }

  .profile-switch {
    width: 100%;
  }

  .profile-slide-bio,
  .profile-slide-awards {
    gap: 34px;
  }

  .profile-slide-awards {
    gap: 0;
    align-content: start;
  }

  .profile-slide-awards .awards-photo-copy {
    display: none;
  }

  .profile-slide-awards .awards-photo-frame {
    justify-self: stretch;
    margin-top: 12px;
  }

  .award-row {
    grid-template-columns: 58px minmax(0, 1fr);
    font-size: 14px;
  }

  .awards-photo-frame img {
    max-height: none;
  }

  .process-number {
    font-size: 58px;
  }

  .process-title {
    font-size: 27px;
  }

  .process-step {
    gap: 20px;
    padding-left: 34px;
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .process-step strong {
    font-size: 21px;
  }

  .process-media {
    grid-column: 2;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-top: 4px;
  }

  .official-id strong {
    font-size: 30px;
  }

  .official-media {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .official-entry {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .official-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .brief-entry-copy p {
    font-size: 16px;
  }

  .brief-external-link {
    width: 100%;
  }

  .official-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Final reduction pass: remove ornamental hairlines across desktop and mobile. */
.site-header,
.journey-strip,
.section,
.profile-carousel-head,
.profile-switch,
.profile-switch-button,
.profile-portrait,
.profile-meta,
.award-row,
.awards-photo-frame,
.process-section > .section-heading-row,
.process-item,
.process-step,
.process-media,
.official-actions,
.official-route,
.official-route div,
.text-button {
  border: 0 !important;
}

.journey-strip a + a::before,
.process-steps::before,
.section::before {
  content: none !important;
  background: none !important;
}

.process-step span {
  display: none !important;
}

.process-step,
.process-step + .process-step {
  padding-left: 0 !important;
}

.process-step > div,
.process-step p {
  grid-column: 1 / 3;
}

/* Mobile process final override: hide stage labels, keep A/B/C step marks. */
@media (max-width: 560px) {
  .process-item > div:nth-child(2) {
    display: none !important;
  }

  .process-list {
    gap: 34px !important;
  }

  .process-item {
    gap: 0 !important;
  }

  .process-steps {
    gap: 28px !important;
    margin-top: 0 !important;
  }

  .process-step,
  .process-step + .process-step {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 10px 14px !important;
    align-items: start !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .process-step span,
  .process-step + .process-step span {
    position: static !important;
    display: grid !important;
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    place-items: center !important;
    width: 30px !important;
    height: 30px !important;
    margin-top: -2px !important;
    background: var(--ink) !important;
    color: var(--paper) !important;
    font-size: 12px !important;
    font-weight: 760 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
  }

  .process-step > div {
    grid-column: 2 !important;
    min-width: 0 !important;
  }

  .process-step strong {
    margin: 0 0 6px !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  .process-step p {
    grid-column: auto !important;
    max-width: none !important;
    margin: 0 !important;
    color: var(--muted) !important;
    font-size: 12px !important;
    line-height: 1.58 !important;
  }

  .process-media {
    grid-column: 2 !important;
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    margin: 8px 0 0 !important;
  }
}
