:root {
  --ink: #0b0e12;
  --ink-soft: #171c22;
  --ink-muted: #28303a;
  --paper: #f3f0e8;
  --paper-bright: #fbfaf6;
  --paper-deep: #e8e3d7;
  --signal: #f45432;
  --signal-dark: #c93a1d;
  --sky: #55a7ff;
  --mint: #9adfca;
  --text: #171a1f;
  --muted: #646961;
  --line: rgba(15, 18, 22, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(16, 20, 26, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --content: min(1200px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(11, 14, 18, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 14, 18, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  color: var(--text);
  font-family: "Manrope", "Noto Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--signal);
  color: #fff;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  transform: translateY(-140%);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

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

.site-shell {
  position: relative;
}

.topline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #07090c;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topline-inner {
  width: var(--content);
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topline-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topline-status::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(154, 223, 202, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 14, 18, 0.9);
  backdrop-filter: blur(20px);
}

.nav {
  width: var(--content);
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 176px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: 4px;
}

.nav-actions {
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a,
.language-link {
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.language-link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta,
.button-primary {
  background: var(--signal);
  color: #fff;
  box-shadow: 0 12px 28px rgba(244, 84, 50, 0.24);
}

.nav-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
  background: #ff6948;
  box-shadow: 0 16px 34px rgba(244, 84, 50, 0.32);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  transform: translateY(-2px);
  background: var(--ink-muted);
  box-shadow: 0 14px 30px rgba(11, 14, 18, 0.18);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.9);
}

.button-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.button-arrow::after {
  content: "↗";
  font-size: 17px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 3%, rgba(85, 167, 255, 0.17), transparent 34%),
    radial-gradient(circle at 88% 28%, rgba(244, 84, 50, 0.17), transparent 31%),
    #0b0e12;
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--content);
  min-height: 760px;
  margin: 0 auto;
  padding: 92px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--signal);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero h1,
.section-heading h2,
.work-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-weight: 650;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 810px;
  margin-top: 22px;
  font-size: clamp(58px, 6.3vw, 98px);
  line-height: 0.94;
}

.hero h1 .accent {
  display: inline-block;
  color: var(--signal);
}

.hero-lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 99px;
  background: var(--mint);
}

.system-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.system-window::after {
  position: absolute;
  top: -120px;
  right: -110px;
  width: 290px;
  height: 290px;
  content: "";
  border-radius: 999px;
  background: rgba(85, 167, 255, 0.17);
  filter: blur(6px);
}

.window-bar {
  position: relative;
  z-index: 1;
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
}

.workflow-map {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.workflow-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.workflow-title span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.workflow-title strong {
  display: block;
  margin-top: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
  line-height: 1.15;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(154, 223, 202, 0.2);
  border-radius: 99px;
  background: rgba(154, 223, 202, 0.08);
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-badge::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 99px;
  background: currentColor;
  animation: pulse 1.8s ease-in-out infinite;
}

.flow-list {
  position: relative;
  margin-top: 32px;
  display: grid;
  gap: 13px;
}

.flow-list::before {
  position: absolute;
  top: 35px;
  bottom: 35px;
  left: 24px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--sky), var(--signal));
}

.flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 12px 15px 12px 9px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(3, 6, 10, 0.28);
}

.flow-icon {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #151a20;
  color: var(--sky);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.flow-item:nth-child(2) .flow-icon { color: var(--mint); }
.flow-item:nth-child(3) .flow-icon { color: #ffae61; }
.flow-item:nth-child(4) .flow-icon { color: #ff7f67; }

.flow-copy strong,
.flow-copy span {
  display: block;
}

.flow-copy strong {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 13px;
}

.flow-copy span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.flow-status {
  color: rgba(255, 255, 255, 0.48);
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.system-footer div {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.system-footer div:last-child {
  border-right: 0;
}

.system-footer span,
.system-footer strong {
  display: block;
}

.system-footer span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.system-footer strong {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
}

.capability-rail {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #07090c;
  color: rgba(255, 255, 255, 0.62);
}

.rail-track {
  width: max-content;
  min-height: 54px;
  display: flex;
  align-items: center;
  animation: rail 28s linear infinite;
}

.rail-track span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-right: 28px;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rail-track span::after {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 99px;
  background: var(--signal);
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 118px 0;
}

.section-compact {
  padding-top: 86px;
  padding-bottom: 86px;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 58px;
}

.section-heading h2,
.work-heading h2,
.contact-copy h2 {
  margin-top: 14px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
}

.section-heading p,
.work-heading p,
.contact-copy > p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.manifesto-index {
  position: sticky;
  top: 120px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto-index::before {
  width: 44px;
  height: 1px;
  content: "";
  background: var(--text);
}

.manifesto-copy {
  margin: 0;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(34px, 4.1vw, 60px);
  font-weight: 540;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.manifesto-copy em {
  color: var(--signal-dark);
  font-style: normal;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 420px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(251, 250, 246, 0.76);
  box-shadow: 0 18px 45px rgba(16, 20, 26, 0.06);
}

.service-card:nth-child(1) { grid-column: span 5; }
.service-card:nth-child(2) { grid-column: span 7; }
.service-card:nth-child(3) { grid-column: span 7; }
.service-card:nth-child(4) { grid-column: span 5; }

.service-card.dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--ink-soft);
  color: #fff;
  box-shadow: 0 24px 64px rgba(11, 14, 18, 0.16);
}

.service-card::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  content: "";
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 28px rgba(15, 18, 22, 0.025), 0 0 0 58px rgba(15, 18, 22, 0.018);
}

.service-card.dark::after {
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.025), 0 0 0 58px rgba(255, 255, 255, 0.018);
}

.service-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--signal-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 750;
}

.dark .service-number {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--signal);
}

.service-card h3 {
  max-width: 580px;
  margin: 50px 0 0;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(29px, 3.2vw, 44px);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.service-card p {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.dark p {
  color: rgba(255, 255, 255, 0.58);
}

.tag-list {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-list span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 10px;
  font-weight: 650;
}

.dark .tag-list span {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
}

.work-section {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.work-inner {
  width: var(--content);
  margin: 0 auto;
  padding: 120px 0;
}

.work-heading {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 70px;
}

.work-heading p {
  color: rgba(255, 255, 255, 0.55);
}

.case-stack {
  display: grid;
  gap: 22px;
}

.case-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  min-height: 510px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background: #12171d;
}

.case-copy {
  position: relative;
  z-index: 2;
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-kicker {
  color: var(--signal);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-copy h3 {
  max-width: 560px;
  margin: 20px 0 0;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.case-copy > div > p {
  max-width: 550px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.74;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.case-meta div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.case-meta span,
.case-meta strong {
  display: block;
}

.case-meta span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-meta strong {
  margin-top: 4px;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 12px;
}

.case-visual {
  position: relative;
  min-width: 0;
  padding: 40px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 74% 20%, rgba(244, 84, 50, 0.38), transparent 34%),
    linear-gradient(135deg, #22110d, #0c1219 70%);
}

.case-card.operations .case-visual {
  background:
    radial-gradient(circle at 74% 20%, rgba(85, 167, 255, 0.26), transparent 35%),
    linear-gradient(135deg, #0c1824, #0b0f14 70%);
}

.browser-frame {
  width: min(100%, 650px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.36);
  transform: rotate(1.5deg);
}

.case-card.operations .browser-frame {
  transform: rotate(-1.4deg);
}

.browser-top {
  min-height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(11, 14, 18, 0.09);
  background: rgba(255, 255, 255, 0.9);
}

.browser-top i {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(11, 14, 18, 0.22);
}

.browser-address {
  flex: 1;
  margin-left: 8px;
  padding: 6px 11px;
  border-radius: 99px;
  background: #f0eee8;
  color: #676b64;
  font-size: 9px;
  text-align: center;
}

.kitchen-screen {
  min-height: 335px;
  padding: 38px;
  display: grid;
  align-content: center;
  justify-items: center;
  background:
    linear-gradient(rgba(255, 249, 236, 0.9), rgba(255, 249, 236, 0.9)),
    repeating-linear-gradient(45deg, #f3e7ce, #f3e7ce 2px, transparent 2px, transparent 14px);
  color: #4b1713;
  text-align: center;
}

.kitchen-logo {
  width: 88px;
  height: 88px;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 18px 34px rgba(116, 41, 30, 0.2);
}

.kitchen-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kitchen-screen strong {
  margin-top: 22px;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.kitchen-screen p {
  max-width: 340px;
  margin: 8px 0 0;
  color: rgba(75, 23, 19, 0.62);
  font-size: 12px;
}

.kitchen-actions {
  margin-top: 22px;
  display: flex;
  gap: 8px;
}

.kitchen-actions span {
  padding: 9px 13px;
  border-radius: 99px;
  background: #8b241d;
  color: #fff;
  font-size: 9px;
  font-weight: 750;
}

.kitchen-actions span:last-child {
  border: 1px solid rgba(75, 23, 19, 0.2);
  background: transparent;
  color: #4b1713;
}

.ops-screen {
  min-height: 335px;
  padding: 26px;
  background: #f4f6f7;
  color: #14191f;
}

.ops-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ops-head strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
}

.ops-head span {
  padding: 6px 9px;
  border-radius: 99px;
  background: #dff4ec;
  color: #21745c;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.ops-metrics div,
.ops-pipeline div {
  border: 1px solid rgba(20, 25, 31, 0.08);
  border-radius: 12px;
  background: #fff;
}

.ops-metrics div {
  padding: 12px;
}

.ops-metrics span,
.ops-metrics strong {
  display: block;
}

.ops-metrics span {
  color: #858b92;
  font-size: 7px;
  font-weight: 750;
  text-transform: uppercase;
}

.ops-metrics strong {
  margin-top: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
}

.ops-pipeline {
  margin-top: 13px;
  display: grid;
  gap: 7px;
}

.ops-pipeline div {
  min-height: 48px;
  padding: 0 13px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 9px;
  font-size: 9px;
}

.ops-pipeline i {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #e9f3ff;
  color: #287bc8;
  font-family: "Space Grotesk", sans-serif;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.ops-pipeline em {
  color: #7d848b;
  font-size: 7px;
  font-style: normal;
  font-weight: 750;
  text-transform: uppercase;
}

.product-band {
  width: var(--content);
  margin: 24px auto 0;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.product-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;
  background: #080b0f;
  color: var(--signal);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.product-band h3,
.product-band p {
  margin: 0;
}

.product-band h3 {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 20px;
  font-weight: 650;
}

.product-band p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.product-label {
  color: var(--mint);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.process-step {
  min-height: 330px;
  padding: 28px;
  background: rgba(251, 250, 246, 0.88);
}

.process-step span {
  color: var(--signal-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 750;
}

.process-step h3 {
  margin: 78px 0 0;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 25px;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.process-step p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.fit-copy,
.fit-list {
  border-radius: var(--radius-md);
}

.fit-copy {
  padding: 42px;
  background: var(--signal);
  color: #fff;
}

.fit-copy h2 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(38px, 4.3vw, 60px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.fit-copy p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.fit-list {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.8);
}

.fit-item {
  min-height: 108px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.fit-item:last-child {
  border-bottom: 0;
}

.fit-item span {
  color: var(--signal-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 750;
}

.fit-item strong,
.fit-item p {
  display: block;
  margin: 0;
}

.fit-item strong {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 17px;
}

.fit-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  min-height: 88px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 19px;
  font-weight: 620;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  content: "+";
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 18px;
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 820px;
  margin: -4px 0 0;
  padding: 0 0 28px;
  color: var(--muted);
}

.contact-section {
  background: var(--paper-deep);
}

.contact-inner {
  width: var(--content);
  margin: 0 auto;
  padding: 110px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.contact-card {
  padding: 34px;
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.founder-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 100% 0, rgba(85, 167, 255, 0.08), transparent 32%),
    linear-gradient(145deg, #11161c 0%, #090c0f 72%);
  box-shadow: 0 32px 80px rgba(11, 14, 18, 0.2);
}

.founder-card::before {
  position: absolute;
  top: 0;
  right: 34px;
  left: 34px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(244, 84, 50, 0.85), transparent);
}

.founder-card-head {
  display: block;
}

.contact-identity {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 17px;
}

.founder-card .contact-identity {
  grid-template-columns: 72px 1fr;
  gap: 21px;
}

.contact-mark {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
}

.founder-card .contact-mark {
  width: 72px;
  height: 72px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.025), 0 14px 30px rgba(0, 0, 0, 0.2);
}

.contact-identity strong,
.contact-identity span {
  display: block;
}

.contact-identity strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
}

.founder-card .contact-identity strong {
  margin-top: 1px;
  font-size: 32px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.contact-identity span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
}

.founder-card .founder-role {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 550;
}

.founder-eyebrow {
  display: block;
  margin-bottom: 1px;
  color: var(--signal);
  font-family: "Space Grotesk", sans-serif;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-credentials {
  margin-top: 28px;
  padding: 19px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-credential {
  min-width: 0;
  min-height: 52px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
}

.founder-credential:first-child {
  padding-left: 0;
}

.founder-credential + .founder-credential {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.credential-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 84, 50, 0.28);
  border-radius: 12px;
  background: rgba(244, 84, 50, 0.07);
  color: #ff775a;
}

.credential-icon.civic {
  border-color: rgba(85, 167, 255, 0.26);
  background: rgba(85, 167, 255, 0.065);
  color: #7ebcff;
}

.founder-credential:first-child .credential-icon {
  border-color: #ffcc01;
  background: #090a0b;
  color: #ffcc01;
  box-shadow: inset 0 0 0 2px rgba(255, 204, 1, 0.08), 0 8px 22px rgba(0, 0, 0, 0.22);
}

.credential-icon svg {
  width: 21px;
  height: 21px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.founder-credential:first-child svg {
  fill: currentColor;
  stroke-width: 0;
}

.founder-credential small,
.founder-credential strong {
  display: block;
}

.founder-credential small {
  color: rgba(255, 255, 255, 0.3);
  font-family: "Space Grotesk", sans-serif;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-credential strong {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.25;
}

.contact-methods {
  margin-top: 28px;
  display: grid;
  gap: 8px;
}

.founder-card .contact-methods {
  margin-top: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
}

.founder-card .contact-method {
  min-height: 74px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.founder-card .contact-method + .contact-method {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method {
  min-height: 78px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.contact-method:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.contact-method small,
.contact-method strong {
  display: block;
}

.contact-method small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-method strong {
  margin-top: 3px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}

.contact-method::after {
  content: "↗";
  color: var(--signal);
  font-size: 20px;
}

.contact-legal {
  margin-top: 20px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}

.site-footer {
  background: #07090c;
  color: rgba(255, 255, 255, 0.48);
}

.footer-inner {
  width: var(--content);
  min-height: 160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.footer-links a {
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.72, 0, 1);
}

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

.stagger > * {
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* Chinese copy needs more breathing room than the compact Latin display style. */
html[lang="zh-Hans"] body {
  font-family: "Noto Sans SC", sans-serif;
  line-height: 1.78;
  letter-spacing: 0.012em;
  line-break: strict;
}

html[lang="zh-Hans"] :is(
  .hero h1,
  .section-heading h2,
  .work-heading h2,
  .contact-copy h2,
  .manifesto-copy,
  .service-card h3,
  .case-copy h3,
  .fit-copy h2,
  .process-step h3,
  .faq-item summary
) {
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 650;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

html[lang="zh-Hans"] .hero h1 {
  max-width: 7.8em;
  font-size: clamp(58px, 5.7vw, 88px);
  line-height: 1.08;
}

html[lang="zh-Hans"] .hero-lead {
  max-width: 36em;
  font-size: 18px;
  line-height: 1.9;
}

html[lang="zh-Hans"] .copy-sentence {
  display: block;
}

html[lang="zh-Hans"] .title-line {
  display: block;
}

html[lang="zh-Hans"] .copy-sentence + .copy-sentence {
  margin-top: 0.42em;
}

html[lang="zh-Hans"] .manifesto-copy {
  max-width: 14em;
  line-height: 1.32;
}

html[lang="zh-Hans"] .manifesto-copy em {
  display: block;
  margin-top: 0.24em;
}

html[lang="zh-Hans"] :is(.section-heading h2, .work-heading h2, .contact-copy h2) {
  max-width: 15em;
  line-height: 1.22;
}

html[lang="zh-Hans"] :is(.section-heading p, .work-heading p, .contact-copy > p) {
  max-width: 42em;
  font-size: 17px;
  line-height: 1.9;
  text-wrap: pretty;
}

html[lang="zh-Hans"] :is(.service-card p, .case-copy > div > p, .process-step p, .fit-item p, .faq-item p) {
  line-height: 1.85;
  text-wrap: pretty;
}

html[lang="zh-Hans"] .service-card h3 {
  line-height: 1.22;
}

html[lang="zh-Hans"] .case-copy h3,
html[lang="zh-Hans"] .fit-copy h2 {
  line-height: 1.18;
}

html[lang="zh-Hans"] .faq-item p .copy-sentence + .copy-sentence {
  margin-top: 0.58em;
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes rail {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
  :root {
    --content: min(100% - 36px, 960px);
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding-inline: 8px;
    font-size: 12px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 80px;
  }

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

  .system-window {
    width: min(100%, 720px);
  }

  .manifesto,
  .work-heading,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .manifesto-index {
    position: static;
  }

  .service-card:nth-child(n) {
    grid-column: span 6;
  }

  .case-card {
    grid-template-columns: 1fr;
  }

  .case-copy {
    min-height: 440px;
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --content: calc(100vw - 28px);
    --radius-lg: 26px;
  }

  body {
    background-size: 32px 32px;
  }

  .topline-inner {
    min-height: 31px;
    justify-content: center;
    font-size: 9px;
  }

  .topline-inner > span:last-child {
    display: none;
  }

  .nav {
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    width: 145px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
  }

  .nav-links {
    position: fixed;
    top: 99px;
    right: 0;
    left: 0;
    height: calc(100vh - 99px);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    background: rgba(11, 14, 18, 0.98);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

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

  .nav-links a {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    font-size: 17px;
  }

  .nav-actions {
    display: none;
  }

  .nav-links .mobile-only {
    display: flex;
  }

  .hero-inner {
    min-height: auto;
    padding: 66px 0 54px;
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
    line-height: 0.96;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .workflow-map {
    padding: 22px 17px;
  }

  .workflow-title strong {
    font-size: 19px;
  }

  .flow-list {
    margin-top: 24px;
  }

  .flow-item {
    grid-template-columns: 43px 1fr;
  }

  .flow-status {
    display: none;
  }

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

  .system-footer div {
    padding: 12px 17px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .system-footer div:last-child {
    border-bottom: 0;
  }

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

  .section-heading,
  .work-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .work-heading h2,
  .contact-copy h2 {
    font-size: 42px;
    line-height: 1.03;
  }

  .section-heading p,
  .work-heading p,
  .contact-copy > p {
    margin-top: 18px;
    font-size: 15px;
  }

  .manifesto-copy {
    font-size: 36px;
    line-height: 1.17;
  }

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

  .service-card:nth-child(n) {
    min-height: 420px;
    grid-column: auto;
    padding: 24px;
  }

  .service-card h3 {
    margin-top: 42px;
    font-size: 33px;
  }

  .tag-list {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .case-copy {
    min-height: 500px;
    padding: 29px;
  }

  .case-copy h3 {
    font-size: 42px;
  }

  .case-visual {
    min-height: 420px;
    padding: 20px;
  }

  .browser-frame {
    transform: none;
  }

  .case-card.operations .browser-frame {
    transform: none;
  }

  .kitchen-screen {
    min-height: 320px;
    padding: 28px 18px;
  }

  .ops-screen {
    min-height: 320px;
    padding: 18px;
  }

  .ops-metrics {
    grid-template-columns: 1fr;
  }

  .ops-metrics div:nth-child(n+3) {
    display: none;
  }

  .product-band {
    padding: 24px;
    grid-template-columns: auto 1fr;
  }

  .product-label {
    grid-column: 1 / -1;
  }

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

  .process-step {
    min-height: 260px;
  }

  .process-step h3 {
    margin-top: 54px;
  }

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

  .fit-copy {
    padding: 30px 26px;
  }

  .fit-copy h2 {
    font-size: 42px;
  }

  .faq-item summary {
    min-height: 80px;
    font-size: 16px;
  }

  .contact-inner {
    padding: 82px 0;
  }

  .contact-card {
    padding: 24px;
  }

  .founder-card {
    padding: 26px 22px;
  }

  .founder-card::before {
    right: 22px;
    left: 22px;
  }

  .founder-card-head {
    display: block;
  }

  .founder-card .contact-identity {
    grid-template-columns: 58px 1fr;
    gap: 15px;
  }

  .founder-card .contact-mark {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .founder-card .contact-identity strong {
    font-size: 24px;
  }

  .founder-credentials,
  .founder-card .contact-methods {
    grid-template-columns: 1fr;
  }

  .founder-credentials {
    margin-top: 22px;
    padding: 8px 0;
  }

  .founder-credential {
    min-height: 70px;
    padding: 10px 0;
  }

  .founder-credential + .founder-credential {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .founder-card .contact-method + .contact-method {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .contact-method {
    grid-template-columns: 1fr auto;
  }

  .footer-inner {
    padding: 34px 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  html[lang="zh-Hans"] .hero-inner {
    padding-top: 58px;
  }

  html[lang="zh-Hans"] .hero h1 {
    max-width: 7.5em;
    font-size: clamp(44px, 12.5vw, 58px);
    line-height: 1.12;
  }

  html[lang="zh-Hans"] .hero-lead {
    font-size: 16px;
    line-height: 1.88;
  }

  html[lang="zh-Hans"] :is(.section-heading h2, .work-heading h2, .contact-copy h2) {
    font-size: 36px;
    line-height: 1.25;
  }

  html[lang="zh-Hans"] .manifesto-copy {
    font-size: 32px;
    line-height: 1.36;
  }

  html[lang="zh-Hans"] .service-card h3 {
    font-size: 30px;
    line-height: 1.24;
  }

  html[lang="zh-Hans"] .case-copy {
    min-height: 470px;
  }

  html[lang="zh-Hans"] .case-copy h3,
  html[lang="zh-Hans"] .fit-copy h2 {
    font-size: 36px;
    line-height: 1.22;
  }

  html[lang="zh-Hans"] .section-heading p,
  html[lang="zh-Hans"] .work-heading p,
  html[lang="zh-Hans"] .contact-copy > p {
    font-size: 16px;
    line-height: 1.9;
  }
}

@media (min-width: 761px) {
  .mobile-only {
    display: none !important;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
