@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink: #0a0c0d;
  --paper: #f1f0ea;
  --paper-2: #e8e7df;
  --line: rgba(10, 12, 13, 0.15);
  --muted: #6e706c;
  --acid: #d9ff43;
  --blue: #729cff;
  --orange: #ff8656;
  --violet: #b99bff;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 2px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--acid);
  padding: 0.7rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 240, 234, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.nav-shell {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family:
    Space Grotesk,
    sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  font-size: 0.72rem;
  letter-spacing: -0.04em;
}
.mark span {
  color: #6d742e;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-family:
    Space Grotesk,
    sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
}
.site-nav > a:not(.nav-cta) {
  position: relative;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--ink);
  transition: 0.2s;
}
.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  right: 0;
}
.nav-cta {
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 1rem;
}
.nav-cta span {
  color: var(--acid);
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  padding: 10px;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  margin: 5px;
}
.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 7vw;
  align-items: center;
  padding-block: 8vh;
}
.eyebrow,
.section-index,
.micro-label {
  font-family:
    DM Mono,
    monospace;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 2rem;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #48bf65;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(72, 191, 101, 0.13);
}
h1,
h2,
h3 {
  font-family:
    Space Grotesk,
    sans-serif;
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin: 0;
}
.hero h1 {
  font-size: clamp(4rem, 7.4vw, 7.4rem);
  font-weight: 500;
  max-width: 900px;
}
.hero h1 em {
  font-style: normal;
  color: #5e615c;
}
.hero-lede {
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  max-width: 690px;
  color: #444742;
  margin: 2.2rem 0 2rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 1.25rem;
  font-family:
    DM Mono,
    monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.2s;
}
.button-primary {
  background: var(--ink);
  color: white;
}
.button-primary span {
  color: var(--acid);
}
.button:hover {
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family:
    DM Mono,
    monospace;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.2rem;
}
.signal-card {
  background: var(--ink);
  color: white;
  min-height: 570px;
  padding: 1.4rem;
  position: relative;
  box-shadow: 20px 20px 0 var(--acid);
}
.signal-head {
  display: flex;
  justify-content: space-between;
  font: 400 0.58rem DM Mono;
  letter-spacing: 0.12em;
  color: #aaa;
}
.live {
  color: var(--acid);
}
.signal-orbit {
  height: 315px;
  position: relative;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  border: 1px solid #303436;
  border-radius: 50%;
}
.orbit-one {
  width: 245px;
  height: 245px;
  animation: spin 16s linear infinite;
}
.orbit-one::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
  top: 25px;
  left: 35px;
}
.orbit-two {
  width: 165px;
  height: 165px;
  border-style: dashed;
  animation: spin 11s linear infinite reverse;
}
.orbit-core {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid #646a6c;
  font: 500 1.2rem Space Grotesk;
  letter-spacing: 0.15em;
}
.signal-list {
  border-top: 1px solid #2d3133;
}
.signal-list > div {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  border-bottom: 1px solid #2d3133;
  padding: 1rem 0;
}
.signal-list span {
  font: 0.6rem DM Mono;
  color: #777;
}
.signal-list strong {
  font: 500 0.9rem Space Grotesk;
}
.signal-list small {
  font: 0.58rem DM Mono;
  color: #999;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.proof-strip {
  background: var(--ink);
  color: white;
  padding: 1.25rem 0;
}
.proof-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 0.66rem DM Mono;
  letter-spacing: 0.12em;
}
.proof-row > span {
  color: #777;
}
.proof-row strong {
  font-weight: 400;
}
.proof-row i {
  width: 4px;
  height: 4px;
  background: var(--acid);
  border-radius: 50%;
}
.section {
  padding-block: clamp(6rem, 10vw, 10rem);
}
.section-index {
  color: #777;
  margin: 0 0 1.5rem;
}
.split-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  border-bottom: 1px solid var(--line);
}
.split-intro h2,
.section-heading h2,
.archive-heading h2 {
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  font-weight: 500;
}
.prose-lead {
  padding-top: 3.4rem;
}
.prose-lead p:first-child {
  font: 500 1.5rem Space Grotesk;
}
.prose-lead p {
  font-size: 1.08rem;
  color: #50534f;
}
.prose-lead .text-link {
  margin-top: 1rem;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}
.section-note {
  max-width: 370px;
  color: #5b5d59;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.project-card {
  min-height: 390px;
  padding: 2rem;
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.project-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s;
}
.project-card:hover::before {
  transform: scaleX(1);
}
.project-card:hover .card-arrow {
  background: var(--ink);
  color: var(--accent);
}
.accent-lime {
  --accent: var(--acid);
}
.accent-blue {
  --accent: var(--blue);
}
.accent-orange {
  --accent: var(--orange);
}
.accent-violet {
  --accent: var(--violet);
}
.project-number {
  font: 300 4rem DM Mono;
  color: #c0c1ba;
}
.project-card h3 {
  font-size: 2.5rem;
  margin: 1rem 0;
}
.project-card > p:not(.micro-label) {
  max-width: 430px;
  color: #5f625d;
}
.card-arrow {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  transition: 0.25s;
}
.journey-preview {
  background: var(--ink);
  color: white;
}
.journey-preview .section-index,
.journey-preview .section-note {
  color: #888;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 6rem 0 4rem;
}
.timeline article {
  position: relative;
  border-top: 1px solid #3a3e40;
  padding: 2rem 2rem 0 0;
}
.timeline time {
  font: 0.65rem DM Mono;
  color: #aaa;
}
.timeline article > span {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--acid);
  border-radius: 50%;
  top: -5px;
  left: 0;
}
.timeline h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  letter-spacing: -0.03em;
}
.timeline p {
  font-size: 0.9rem;
  color: #999;
}
.button-ghost {
  border: 1px solid #555;
}
.button-ghost span {
  color: var(--acid);
}
.thinking {
  overflow: hidden;
}
.article-feature {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 7rem 3rem 0;
  position: relative;
}
.article-kicker {
  display: flex;
  gap: 1.5rem;
  font: 0.6rem DM Mono;
  color: #777;
}
.article-feature h3 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  max-width: 940px;
  margin: 1.5rem 0;
}
.article-feature > p {
  max-width: 720px;
  color: #5c5f5a;
}
.round-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.5rem;
}
.topic-row span {
  border: 1px solid var(--line);
  padding: 0.5rem 0.75rem;
  font: 0.6rem DM Mono;
  letter-spacing: 0.08em;
}
.topic-row.large {
  margin: 0 0 7rem;
}
.closing-cta {
  background: var(--acid);
  padding: 7rem 0;
}
.closing-grid {
  display: grid;
  grid-template-columns: 0.35fr 1.3fr 0.75fr;
  gap: 4rem;
  align-items: start;
}
.closing-grid .section-index {
  color: #5e6729;
}
.closing-grid h2 {
  font-size: clamp(3rem, 5vw, 5.6rem);
}
.closing-grid > div p {
  margin: 0 0 2rem;
}
.button-light {
  background: var(--paper);
}
.page-hero {
  padding: 10rem 0 8rem;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(3.7rem, 7vw, 7.3rem);
  max-width: 1100px;
  font-weight: 500;
}
.page-lede {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 2.5rem 0 0;
  color: #525550;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 5rem;
}
.longform {
  max-width: 760px;
  font-size: 1.1rem;
}
.longform > p:first-child {
  font-size: 1.45rem;
}
.dropcap::first-letter {
  float: left;
  font: 500 5rem Space Grotesk;
  line-height: 0.8;
  padding: 0.1rem 0.7rem 0 0;
}
.longform blockquote {
  font: 500 clamp(1.8rem, 3vw, 3rem) Space Grotesk;
  letter-spacing: -0.04em;
  border-left: 4px solid var(--acid);
  margin: 4rem 0;
  padding-left: 2rem;
}
.longform h2 {
  font-size: 2.6rem;
  margin: 4rem 0 1rem;
}
.principle-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}
.principle-list li {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.principle-list span {
  color: #666;
}
.story-stack {
  padding-top: 3rem;
}
.story-stack article {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 5rem;
  padding: 5rem 0;
  border-bottom: 1px solid var(--line);
}
.story-year {
  font: 400 0.75rem DM Mono;
  letter-spacing: 0.1em;
}
.story-stack article > div:last-child {
  max-width: 720px;
}
.story-stack h2 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  margin: 1rem 0 2rem;
}
.story-stack p {
  font-size: 1.08rem;
  color: #535650;
}
.project-list {
  padding-top: 3rem;
}
.project-line {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 2rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.project-line > span {
  font: 300 2rem DM Mono;
  color: #aaa;
}
.project-line h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin: 0.4rem 0;
}
.project-line p {
  max-width: 720px;
  color: #5b5e59;
}
.project-line > strong {
  font-size: 1.5rem;
  text-align: right;
}
.project-line:not(.muted):hover h2 {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}
.muted {
  opacity: 0.65;
}
.archive-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 2rem;
}
.archive-heading > p {
  max-width: 430px;
  color: #666;
}
.article-list {
  border-top: 1px solid var(--line);
}
.article-row {
  display: grid;
  grid-template-columns: 90px 1fr 40px;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.article-row time {
  font: 0.75rem DM Mono;
  color: #888;
}
.article-row h3 {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}
.article-row p {
  margin: 0.5rem 0 0;
  color: #676a65;
  font-size: 0.9rem;
}
.article-row > span {
  font-size: 1.2rem;
}
.article-row:hover h3 {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.now-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 0;
}
.now-grid article {
  background: var(--paper);
  padding: 3rem;
}
.now-grid article > span {
  font: 300 2.5rem DM Mono;
  color: #bbb;
}
.now-grid h2 {
  font-size: 2.5rem;
  margin: 3rem 0 1rem;
}
.now-grid p {
  color: #5e615c;
}
.contact-hero {
  min-height: calc(100vh - 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0;
}
.contact-hero h1 {
  font-size: clamp(3.4rem, 7vw, 7rem);
  max-width: 1100px;
}
.contact-hero > p:not(.eyebrow) {
  font-size: 1.15rem;
  max-width: 700px;
  color: #555853;
}
.contact-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0 5rem;
}
.contact-note {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  max-width: 700px;
}
.contact-note span {
  font: 0.65rem DM Mono;
}
.contact-note p {
  margin: 0;
  color: #555;
}
.legacy-article {
  max-width: 980px;
  padding: 9rem 0;
}
.legacy-article header {
  max-width: 850px;
}
.legacy-article h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}
.article-meta {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  font: 0.7rem DM Mono;
  color: #666;
}
.archive-notice {
  margin: 4rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--acid);
  background: #e7e8df;
}
.archive-notice.warning {
  border-color: var(--orange);
}
.archive-notice p {
  margin: 0.4rem 0 0;
}
.legacy-content {
  font-family: Manrope, sans-serif;
  font-size: 1.05rem;
  max-width: 760px;
}
.legacy-content h2,
.legacy-content h3 {
  margin: 3rem 0 1rem;
  letter-spacing: -0.03em;
}
.legacy-content h2 {
  font-size: 2.2rem;
}
.legacy-content h3 {
  font-size: 1.5rem;
}
.legacy-content a {
  text-decoration: underline;
}
.legacy-content img {
  display: block;
  margin: 2.5rem auto;
}
.legacy-content pre {
  overflow: auto;
  background: #111;
  color: #eee;
  padding: 1.5rem;
}
.legacy-content blockquote {
  border-left: 3px solid var(--acid);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.article-footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.site-footer {
  background: var(--ink);
  color: white;
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.3fr 0.3fr;
  gap: 6rem;
}
.footer-mark .mark {
  border-color: #555;
}
.footer-grid > div:first-child p {
  max-width: 430px;
  color: #888;
  margin-top: 2rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.86rem;
}
.footer-nav .micro-label {
  color: #777;
  margin: 0 0 0.8rem;
}
.footer-nav a:hover {
  color: var(--acid);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #2c3031;
  margin-top: 5rem;
  padding-top: 1.5rem;
  color: #777;
  font: 0.62rem DM Mono;
  letter-spacing: 0.08em;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }
  .menu-button {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 1.5rem 16px 2rem;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open {
    display: flex;
  }
  .nav-cta {
    justify-content: space-between;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 5rem 0 7rem;
  }
  .signal-card {
    min-height: 500px;
    box-shadow: 10px 10px 0 var(--acid);
  }
  .split-intro,
  .closing-grid,
  .editorial-grid,
  .story-stack article {
    grid-template-columns: 1fr;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
    margin: 4rem 0;
  }
  .timeline article {
    padding: 2rem 0 3rem 2rem;
    border-top: 0;
    border-left: 1px solid #3a3e40;
  }
  .timeline article > span {
    top: 2.4rem;
    left: -5px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
  }
  .closing-grid {
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .story-stack article {
    gap: 2rem;
  }
  .page-hero {
    padding: 7rem 0 5rem;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 3.75rem;
  }
  .hero-actions,
  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .signal-card {
    min-height: 460px;
  }
  .signal-orbit {
    height: 260px;
  }
  .orbit-one {
    width: 210px;
    height: 210px;
  }
  .orbit-two {
    width: 140px;
    height: 140px;
  }
  .signal-list > div {
    grid-template-columns: 26px 1fr;
  }
  .signal-list small {
    display: none;
  }
  .proof-row {
    overflow: hidden;
    justify-content: flex-start;
    gap: 1.3rem;
    white-space: nowrap;
  }
  .section {
    padding-block: 5rem;
  }
  .project-card {
    min-height: 340px;
  }
  .article-feature {
    padding-right: 0;
    padding-bottom: 6rem;
  }
  .round-arrow {
    right: auto;
    top: auto;
    bottom: 1.5rem;
    transform: none;
  }
  .now-grid {
    grid-template-columns: 1fr;
  }
  .archive-heading {
    align-items: start;
    flex-direction: column;
  }
  .article-row {
    grid-template-columns: 55px 1fr 20px;
  }
  .article-row p {
    display: none;
  }
  .project-line {
    grid-template-columns: 45px 1fr 25px;
    gap: 0.7rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
  .principle-list li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .contact-note {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.language-switch {
  font:
    500 0.68rem DM Mono,
    monospace;
  letter-spacing: 0.08em;
  border: 1px solid var(--line);
  padding: 0.42rem 0.62rem;
  transition: 0.2s;
}
.language-switch:hover {
  background: var(--acid);
  border-color: var(--acid);
}
html[lang="zh-Hans"] body {
  font-family:
    "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", Manrope, sans-serif;
}
html[lang="zh-Hans"] h1,
html[lang="zh-Hans"] h2,
html[lang="zh-Hans"] h3 {
  font-family:
    "PingFang SC",
    "Noto Sans CJK SC",
    "Microsoft YaHei",
    Space Grotesk,
    sans-serif;
  letter-spacing: -0.035em;
}
html[lang="zh-Hans"] .hero h1 {
  max-width: 820px;
}
html[lang="zh-Hans"] .hero-lede,
html[lang="zh-Hans"] .page-lede {
  line-height: 1.9;
}
html[lang="zh-Hans"] .micro-label,
html[lang="zh-Hans"] .section-index,
html[lang="zh-Hans"] .eyebrow {
  letter-spacing: 0.1em;
}
html[lang="zh-Hans"] .zh-proof {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0.06em;
}
@media (max-width: 900px) {
  .language-switch {
    text-align: center;
    padding: 0.75rem;
  }
  .site-nav .language-switch {
    order: 8;
  }
  .site-nav .nav-cta {
    order: 9;
  }
}
