:root {
  color-scheme: dark;
  --ink: #0a0a0a;
  --ink-soft: #11110f;
  --paper: #f0eee7;
  --paper-dim: #b7b4aa;
  --line: rgba(240, 238, 231, 0.17);
  --line-strong: rgba(240, 238, 231, 0.36);
  --accent: #d7ff46;
  --accent-soft: rgba(215, 255, 70, 0.13);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans:
    Inter, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --max-width: 1440px;
  --gutter: clamp(22px, 4vw, 68px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--accent);
  color: var(--ink);
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(215, 255, 70, 0.65);
  transition:
    width 180ms ease,
    height 180ms ease,
    border-color 180ms ease;
}

body.cursor-active .cursor {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: var(--accent);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 22px var(--gutter);
  border-bottom: 1px solid transparent;
  transition:
    background 250ms ease,
    border-color 250ms ease,
    backdrop-filter 250ms ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--paper-dim);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 50px);
}

.nav-links a {
  position: relative;
  color: var(--paper-dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transition: right 220ms ease;
}

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

.nav-links a:hover::after {
  right: 0;
}

.language-toggle {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.language-option,
.language-divider {
  color: #77766f;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.language-option.active {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(30px, 4vw, 80px);
  padding: 140px var(--gutter) 95px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 76% 38%,
      rgba(215, 255, 70, 0.07),
      transparent 25%
    ),
    radial-gradient(
      circle at 15% 85%,
      rgba(84, 78, 255, 0.07),
      transparent 26%
    ),
    #0a0a0a;
}

.hero::after {
  content: "";
  position: absolute;
  width: 30vw;
  height: 30vw;
  min-width: 420px;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  left: -15vw;
  bottom: -17vw;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 800px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(26px, 4vh, 52px);
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--accent);
  border-radius: inherit;
  animation: pulse 2.2s ease-out infinite;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.5vw, 106px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--accent);
  font-weight: 400;
}

.hero-summary {
  max-width: 610px;
  margin: clamp(28px, 4vh, 48px) 0 0;
  color: var(--paper-dim);
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.button-primary {
  min-width: 220px;
  padding: 17px 19px;
  border-radius: 2px;
  background: var(--accent);
  color: var(--ink);
}

.button-text {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-strong);
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(47vw, 720px);
  aspect-ratio: 1;
  justify-self: end;
}

#journey-canvas {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 50px rgba(215, 255, 70, 0.06));
}

.orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.42);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.02);
}

.orbit-center strong {
  margin: 8px 0 5px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.orbit-center small,
.orbit-kicker {
  color: var(--paper-dim);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.orbit-kicker {
  color: var(--accent);
}

.orbit-copy {
  position: absolute;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--paper-dim);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.orbit-copy small {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-size: 7px;
}

.orbit-copy-one {
  top: 15%;
  left: 9%;
}

.orbit-copy-two {
  right: 3%;
  top: 34%;
}

.orbit-copy-three {
  bottom: 15%;
  left: 19%;
}

.hero-footnote {
  position: absolute;
  z-index: 4;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #73716a;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-footnote a {
  display: flex;
  gap: 12px;
  align-items: center;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--accent);
  color: var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 19px 0;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  white-space: nowrap;
}

.marquee-track i {
  font-style: normal;
  font-size: 10px;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(100px, 13vw, 200px) var(--gutter);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-index span:first-child {
  color: var(--accent);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(60px, 10vw, 170px);
  padding-top: clamp(60px, 8vw, 115px);
}

.profile-heading h2,
.section-heading-row h2,
.impact-intro h2,
.fit-heading h2 {
  margin: 19px 0 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 77px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.profile-body > p {
  margin: 0 0 25px;
  color: var(--paper-dim);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.6;
}

.profile-body > p:first-child {
  color: var(--paper);
}

.principles {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.principles article {
  display: grid;
  grid-template-columns: 45px minmax(140px, 0.85fr) 1.15fr;
  gap: 20px;
  align-items: baseline;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.principles article > span {
  color: var(--accent);
  font-size: 8px;
}

.principles h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}

.principles p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 12px;
  line-height: 1.6;
}

.journey-section {
  max-width: none;
  background: var(--paper);
  color: var(--ink);
}

.journey-section .section-index {
  border-color: rgba(10, 10, 10, 0.16);
  color: #66645d;
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 9vw;
  align-items: end;
  max-width: calc(var(--max-width) - var(--gutter) * 2);
  margin: clamp(70px, 8vw, 110px) auto 90px;
}

.journey-section .section-kicker {
  color: #6d6a62;
}

.section-heading-row > p {
  margin: 0;
  color: #646159;
  font-size: 15px;
  line-height: 1.7;
}

.timeline {
  max-width: calc(var(--max-width) - var(--gutter) * 2);
  margin: 0 auto;
  border-top: 1px solid rgba(10, 10, 10, 0.2);
}

.timeline-item {
  display: grid;
  grid-template-columns: 0.58fr 1.35fr 1.07fr;
  gap: clamp(20px, 4vw, 70px);
  align-items: start;
  padding: 42px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
  transition: padding 250ms ease;
}

.timeline-item:hover {
  padding-left: 12px;
  padding-right: 12px;
}

.timeline-year {
  padding-top: 7px;
  color: #6d6a62;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.timeline-role {
  display: flex;
  gap: 18px;
}

.timeline-number {
  padding-top: 6px;
  color: #7f7b72;
  font-size: 8px;
}

.timeline-role h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 400;
  line-height: 1.08;
}

.timeline-role p {
  margin: 11px 0 0;
  color: #6d6a62;
  font-size: 11px;
}

.timeline-description {
  margin: 0;
  color: #5d5a53;
  font-size: 13px;
  line-height: 1.7;
}

.impact-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: clamp(70px, 8vw, 110px) 0 65px;
}

.impact-intro h2 {
  max-width: 680px;
}

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

.impact-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(215, 255, 70, 0.07),
      transparent 36%
    ),
    rgba(255, 255, 255, 0.018);
  transform-style: preserve-3d;
  transition:
    border-color 250ms ease,
    background 250ms ease;
}

.impact-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -140px;
  bottom: -150px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.impact-card:hover {
  border-color: rgba(215, 255, 70, 0.4);
  background-color: rgba(215, 255, 70, 0.025);
}

.impact-card-featured {
  background: var(--accent);
  color: var(--ink);
}

.impact-card-featured::after {
  border-color: rgba(10, 10, 10, 0.2);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.impact-card-featured .card-topline {
  border-color: rgba(10, 10, 10, 0.2);
  color: rgba(10, 10, 10, 0.63);
}

.metric-line {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 42px);
  margin-top: auto;
}

.metric-line strong {
  font-family: var(--serif);
  font-size: clamp(58px, 7.8vw, 112px);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.metric-arrow {
  font-size: 26px;
}

.metric-caption {
  margin: 2px 0 0;
  color: rgba(10, 10, 10, 0.62);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.card-description {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--paper-dim);
  font-size: 13px;
  line-height: 1.7;
}

.impact-card-featured .card-description {
  color: rgba(10, 10, 10, 0.72);
}

.metric-line.compact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 20px;
  margin-bottom: 8px;
}

.metric-line.compact strong {
  font-size: clamp(50px, 6vw, 82px);
}

.metric-line.compact small {
  color: var(--paper-dim);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.impact-card-wide {
  grid-column: 1 / -1;
  min-height: 355px;
}

.bd-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: auto;
}

.bd-metrics div {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.bd-metrics div:last-child {
  border-right: 0;
}

.bd-metrics strong {
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.bd-metrics small {
  color: var(--paper-dim);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.cases-section {
  max-width: none;
  background: #151512;
}

.cases-heading,
.case-grid {
  max-width: calc(var(--max-width) - var(--gutter) * 2);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.case-card {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 46px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  transition:
    border-color 250ms ease,
    transform 250ms ease;
}

.case-card:hover {
  border-color: rgba(215, 255, 70, 0.42);
  transform: translateY(-6px);
}

.case-meta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.case-meta span:first-child {
  color: var(--accent);
}

.case-card h3 {
  margin: 46px 0 25px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.case-card > p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 13px;
  line-height: 1.75;
}

.case-card ul {
  margin: auto 0 0;
  padding: 40px 0 0;
  list-style: none;
}

.case-card li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 15px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.case-card li strong {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.case-card li span {
  color: var(--paper-dim);
  font-size: 10px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fit-section {
  padding-top: 70px;
}

.fit-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(60px, 10vw, 160px);
  padding-top: 90px;
}

.fit-heading {
  position: sticky;
  top: 140px;
  align-self: start;
}

.fit-list {
  border-top: 1px solid var(--line);
}

.fit-list > div {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 130px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.fit-list > div::before {
  content: "";
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--accent);
  transition: right 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fit-list > div:hover::before {
  right: 0;
}

.fit-list span,
.fit-list h3 {
  position: relative;
  z-index: 1;
  transition:
    color 250ms ease,
    transform 250ms ease;
}

.fit-list span {
  color: var(--accent);
  font-size: 8px;
}

.fit-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 43px);
  font-weight: 400;
}

.fit-list > div:hover span,
.fit-list > div:hover h3 {
  color: var(--ink);
  transform: translateX(10px);
}

.contact-section {
  position: relative;
  min-height: 86svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px var(--gutter);
  background: var(--accent);
  color: var(--ink);
}

.contact-copy {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  text-align: center;
}

.contact-copy .section-kicker {
  color: rgba(10, 10, 10, 0.58);
}

.contact-copy h2 {
  max-width: 1000px;
  margin: 24px auto;
  font-family: var(--serif);
  font-size: clamp(56px, 8.5vw, 132px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 30px auto 52px;
  color: rgba(10, 10, 10, 0.67);
  font-size: 16px;
  line-height: 1.7;
}

.contact-link {
  display: flex;
  width: min(540px, 100%);
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.55);
  font-size: clamp(14px, 2vw, 24px);
}

.contact-orbit span {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact-orbit span:nth-child(1) {
  width: 42vw;
  height: 42vw;
}

.contact-orbit span:nth-child(2) {
  width: 67vw;
  height: 67vw;
}

.contact-orbit span:nth-child(3) {
  width: 92vw;
  height: 92vw;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  padding: 28px var(--gutter);
  color: #75736d;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.site-footer a {
  justify-self: end;
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 800ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes pulse {
  from {
    opacity: 0.8;
    transform: scale(0.7);
  }
  to {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 150px;
  }

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

  .hero-visual {
    width: min(80vw, 650px);
    justify-self: center;
    margin-top: -20px;
  }

  .hero-footnote {
    display: none;
  }

  .profile-grid,
  .fit-layout,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: 520px;
  }

  .profile-heading,
  .fit-heading {
    max-width: 760px;
  }

  .fit-heading {
    position: static;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
  }

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

  .timeline-item {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .timeline-description {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 21px;
  }

  .site-header {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 75px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 72px);
  }

  .hero-summary {
    font-size: 15px;
  }

  .hero-visual {
    width: 100vw;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
  }

  .orbit-center {
    width: 135px;
    height: 135px;
  }

  .orbit-center strong {
    font-size: 17px;
  }

  .orbit-copy {
    font-size: 8px;
  }

  .profile-grid {
    gap: 52px;
  }

  .principles article {
    grid-template-columns: 34px 1fr;
  }

  .principles article p {
    grid-column: 2;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-description {
    grid-column: 1;
    padding-left: 36px;
  }

  .impact-intro {
    display: block;
  }

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

  .impact-card {
    min-height: 380px;
  }

  .impact-card-wide {
    grid-column: auto;
  }

  .case-card {
    min-height: 500px;
  }

  .bd-metrics {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bd-metrics div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 17px;
  }

  .bd-metrics strong {
    font-size: 54px;
  }

  .fit-list > div {
    min-height: 110px;
  }

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

  .site-footer > span:nth-child(2) {
    display: none;
  }

  .cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
