:root {
  --ink: #181a19;
  --ink-soft: #555a56;
  --paper: #f4f3ef;
  --paper-bright: #fbfaf7;
  --line: rgba(24, 26, 25, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --orange: #ff6846;
  --acid: #dfff4f;
  --blue: #1976f3;
  --display: "Bricolage Grotesque", "Noto Sans SC", sans-serif;
  --body: "Bricolage Grotesque", "Noto Sans SC", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --shell: min(1320px, calc(100vw - 72px));
  --radius-lg: 38px;
  --radius-md: 24px;
  --shadow: 0 28px 80px rgba(24, 26, 25, 0.1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 7%, rgba(255, 255, 255, 0.9), transparent 30%),
    var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html.i18n-loading body {
  opacity: 0;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.ambient-one {
  width: 540px;
  height: 540px;
  top: -290px;
  right: 0;
  background: radial-gradient(circle, rgba(223, 255, 79, 0.22), transparent 67%);
}

.ambient-two {
  width: 480px;
  height: 480px;
  top: 730px;
  left: -310px;
  background: radial-gradient(circle, rgba(255, 104, 70, 0.13), transparent 68%);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: transform 0.35s ease;
}

.site-header.is-hidden {
  transform: translateY(-130%);
}

.nav-shell {
  width: min(1240px, calc(100vw - 48px));
  min-height: 66px;
  margin-inline: auto;
  padding: 8px 10px 8px 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(248, 247, 243, 0.77);
  box-shadow: 0 12px 40px rgba(24, 26, 25, 0.07);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark > span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(24, 26, 25, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.site-nav a {
  min-width: 78px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: var(--ink);
  outline: none;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.available-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.available-note i {
  width: 7px;
  height: 7px;
  background: #60ad52;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(96, 173, 82, 0.13);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px;
  border: 1px solid rgba(24, 26, 25, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.language-switch button {
  width: 38px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.language-switch button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
}

.language-switch > span {
  display: none;
}

.hero {
  position: relative;
  min-height: 870px;
  padding-top: 190px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(50px, 8vw, 130px);
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 108px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
}

.eyebrow {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.hero-title {
  max-width: 800px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 6.25vw, 100px);
  font-weight: 650;
  letter-spacing: -0.078em;
  line-height: 0.92;
}

.hero-title > span {
  display: block;
}

.hero-title .title-accent {
  position: relative;
  width: fit-content;
  margin-top: 12px;
  font-weight: 450;
  font-stretch: 85%;
}

.title-accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.04em;
  right: -0.1em;
  bottom: 0.02em;
  height: 0.21em;
  background: var(--acid);
  border-radius: 999px;
  transform: rotate(-1.1deg);
}

.hero-lead {
  max-width: 680px;
  margin: 38px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
  letter-spacing: -0.018em;
}

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

.button {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(24, 26, 25, 0.14);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #30332f;
  box-shadow: 0 18px 42px rgba(24, 26, 25, 0.2);
  transform: translateY(-3px);
  outline: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 650;
  transition: gap 0.25s ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 15px;
  outline: none;
}

.collection-object {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 0.95;
  justify-self: end;
  isolation: isolate;
}

.object-halo {
  position: absolute;
  inset: 7% 3% 6% 6%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.9), transparent 38%),
    linear-gradient(145deg, rgba(255, 104, 70, 0.22), rgba(25, 118, 243, 0.15) 55%, rgba(223, 255, 79, 0.22));
  filter: blur(1px);
  transform: rotate(-12deg);
}

.object-grid {
  position: absolute;
  inset: 11%;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(circle, #000 25%, transparent 70%);
  mask-image: radial-gradient(circle, #000 25%, transparent 70%);
  animation: slow-spin 38s linear infinite;
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.folio-card {
  position: absolute;
  width: 60%;
  aspect-ratio: 0.82;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  box-shadow: 0 32px 70px rgba(24, 26, 25, 0.2);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.folio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 35%);
}

.folio-baton {
  top: 9%;
  left: 6%;
  z-index: 2;
  color: #f4f3ef;
  background: #1a1d1b;
  transform: rotate(-8deg);
}

.folio-tool {
  right: 1%;
  bottom: 6%;
  z-index: 3;
  color: #151719;
  background: linear-gradient(155deg, #fff 20%, #e7efff 100%);
  border-color: #fff;
  transform: rotate(7deg);
}

.collection-object:hover .folio-baton {
  transform: rotate(-11deg) translate(-8px, -6px);
}

.collection-object:hover .folio-tool {
  transform: rotate(10deg) translate(8px, 7px);
}

.folio-top {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.folio-top span,
.folio-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
}

.folio-top span {
  margin-right: auto;
  width: 34px;
  border-radius: 999px;
}

.folio-card > b {
  display: block;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.folio-card > small {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  opacity: 0.58;
}

.mini-baton {
  position: absolute;
  right: 14%;
  bottom: 17%;
  width: 70%;
  height: 22px;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(255, 104, 70, 0.3);
  transform: rotate(-23deg);
}

.mini-baton i,
.mini-baton span {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  border: 6px solid #f4f3ef;
  border-radius: 50%;
  transform: translateY(-50%);
}

.mini-baton i { left: -9px; }
.mini-baton span { right: -9px; }

.mini-docs {
  position: absolute;
  right: 11%;
  bottom: 14%;
  left: 11%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mini-docs i {
  width: 62px;
  aspect-ratio: 0.78;
  display: grid;
  place-items: end center;
  padding-bottom: 11px;
  color: #fff;
  background: var(--blue);
  border-radius: 10px 10px 16px 16px;
  box-shadow: 0 12px 25px rgba(25, 118, 243, 0.22);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
}

.mini-docs i:last-child {
  color: var(--blue);
  background: #fff;
}

.mini-docs span {
  font-size: 18px;
}

.object-label {
  position: absolute;
  z-index: 6;
  min-width: 116px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: rgba(24, 26, 25, 0.94);
  border-radius: 10px;
  box-shadow: 0 14px 26px rgba(24, 26, 25, 0.14);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.object-label span {
  color: var(--acid);
}

.label-top {
  top: 3%;
  right: 3%;
  transform: rotate(4deg);
}

.label-bottom {
  bottom: 10%;
  left: -2%;
  transform: rotate(-5deg);
}

.collection-count {
  position: absolute;
  right: 6%;
  bottom: -3%;
  z-index: 7;
  width: 128px;
  height: 128px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--acid);
  border: 8px solid var(--paper);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-7deg);
}

.collection-count strong {
  font-family: var(--display);
  font-size: 38px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.collection-count span {
  max-width: 78px;
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-foot {
  grid-column: 1 / -1;
  margin-top: 65px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-foot a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-foot i {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-foot i::before,
.hero-foot i::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero-foot i::before {
  top: 10px;
  width: 1px;
  height: 14px;
  background: currentColor;
}

.hero-foot i::after {
  top: 19px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.work-section {
  padding: 130px 0 140px;
  color: #f4f3ef;
  background: var(--ink);
  border-radius: 52px 52px 0 0;
}

.section-heading {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 60px;
  align-items: end;
}

.section-heading .eyebrow {
  color: rgba(244, 243, 239, 0.52);
}

.section-heading h2 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(46px, 5.8vw, 88px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading > p {
  margin: 0 0 8px;
  color: rgba(244, 243, 239, 0.55);
  font-size: 17px;
  line-height: 1.7;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  --card-bg: #262927;
  --card-text: #f4f3ef;
  --card-muted: rgba(244, 243, 239, 0.62);
  --card-line: rgba(255, 255, 255, 0.14);
  --project-accent: var(--orange);
  position: relative;
  min-height: 760px;
  padding: 34px;
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  color: var(--card-text);
  background:
    radial-gradient(circle 380px at var(--mx, 70%) var(--my, 18%), color-mix(in srgb, var(--project-accent) 20%, transparent), transparent 62%),
    var(--card-bg);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-lg);
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.2, 1), box-shadow 0.45s ease, border-color 0.3s ease;
}

.project-card:nth-child(1) {
  grid-column: span 7;
}

.project-card:nth-child(2) {
  grid-column: span 5;
}

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

.project-card:last-child:nth-child(odd):not(:first-child) {
  grid-column: span 12;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.project-card:hover,
.project-card:focus-visible {
  z-index: 2;
  border-color: color-mix(in srgb, var(--project-accent) 56%, var(--card-line));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(-8px);
  outline: none;
}

.project-toolbox {
  --card-bg: #edf3ff;
  --card-text: #151719;
  --card-muted: rgba(21, 23, 25, 0.58);
  --card-line: rgba(21, 23, 25, 0.13);
  --project-accent: var(--blue);
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-index {
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-index::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--card-muted);
}

.project-status::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--project-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--project-accent) 17%, transparent);
}

.project-copy {
  position: relative;
  z-index: 4;
  max-width: 630px;
  margin-top: 50px;
}

.project-category {
  margin: 0 0 15px;
  color: var(--card-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-title {
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.project-tagline {
  margin: 19px 0 0;
  color: var(--card-text);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.project-description {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--card-muted);
  font-size: 15px;
  line-height: 1.72;
}

.project-visual {
  position: relative;
  flex: 1;
  min-height: 290px;
  margin: 35px -6px 30px;
}

.project-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.project-tag {
  padding: 7px 10px;
  color: var(--card-muted);
  border: 1px solid var(--card-line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 650;
}

.project-cta i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--card-bg);
  background: var(--card-text);
  border-radius: 50%;
  font-size: 17px;
  font-style: normal;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.project-card:hover .project-cta i,
.project-card:focus-visible .project-cta i {
  color: var(--ink);
  background: var(--project-accent);
  transform: rotate(45deg);
}

/* Baton card artwork */
.baton-art {
  position: absolute;
  inset: 0;
  min-height: 290px;
}

.baton-panel {
  position: absolute;
  top: 12px;
  right: 4%;
  width: 76%;
  min-width: 400px;
  padding: 18px;
  color: #1a1d1b;
  background: #f2efe8;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
  transform: rotate(2deg);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .baton-panel {
  transform: rotate(0deg) translateY(-4px);
}

.baton-panel-head {
  padding-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(24, 26, 25, 0.13);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.baton-panel-head span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  display: inline-block;
  background: #5cac51;
  border-radius: 50%;
}

.baton-panel-body {
  padding-top: 14px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
}

.baton-agent-list,
.baton-file-list {
  padding: 12px;
  background: #e8e4dc;
  border-radius: 12px;
}

.baton-agent-list small,
.baton-file-list small {
  display: block;
  margin-bottom: 8px;
  color: #777b76;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.baton-agent-list b {
  margin-right: 5px;
  padding: 5px 7px;
  display: inline-block;
  color: #fff;
  background: #1b1e1c;
  border-radius: 7px;
  font-size: 8px;
}

.baton-agent-list b:last-child {
  color: #1b1e1c;
  background: var(--acid);
}

.baton-file-list i {
  height: 8px;
  margin-top: 8px;
  display: block;
  background: rgba(24, 26, 25, 0.12);
  border-radius: 999px;
}

.baton-file-list i:nth-child(3) { width: 76%; }
.baton-file-list i:nth-child(4) { width: 91%; }

.baton-stick {
  position: absolute;
  left: 1%;
  bottom: 19%;
  z-index: 3;
  width: 55%;
  height: 28px;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 20px 42px rgba(255, 104, 70, 0.28);
  transform: rotate(-16deg);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .baton-stick {
  transform: rotate(-11deg) translate(7px, -5px);
}

.baton-stick::before,
.baton-stick::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border: 8px solid #f4f3ef;
  border-radius: 50%;
  transform: translateY(-50%);
}

.baton-stick::before { left: -10px; }
.baton-stick::after { right: -10px; }

.baton-art-label {
  position: absolute;
  right: 1%;
  bottom: 6%;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transform: rotate(-3deg);
}

/* ToolBox card artwork */
.toolbox-art {
  position: absolute;
  inset: 0;
  min-height: 290px;
}

.tool-window {
  position: absolute;
  inset: 2% 0 1% 1%;
  min-width: 340px;
  overflow: hidden;
  color: #24262a;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 23, 25, 0.09);
  border-radius: 22px;
  box-shadow: 0 24px 55px rgba(38, 79, 141, 0.14);
  transform: rotate(-2deg);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .tool-window {
  transform: rotate(0deg) translateY(-4px);
}

.tool-window-bar {
  height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(21, 23, 25, 0.08);
}

.tool-window-bar i {
  width: 7px;
  height: 7px;
  background: #c8cbd0;
  border-radius: 50%;
}

.tool-window-bar span {
  margin-left: auto;
  color: #8c9097;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.tool-window-body {
  min-height: 205px;
  display: grid;
  grid-template-columns: 80px 1fr;
}

.tool-sidebar {
  padding: 13px 10px;
  background: #f4f6fa;
  border-right: 1px solid rgba(21, 23, 25, 0.07);
}

.tool-logo {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #111315;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
}

.tool-sidebar i {
  width: 100%;
  height: 8px;
  margin: 9px 0;
  display: block;
  background: #dfe3e9;
  border-radius: 999px;
}

.tool-sidebar i:nth-child(2) {
  background: var(--blue);
}

.tool-workspace {
  padding: 24px 18px 18px;
}

.tool-workspace > small {
  color: #8b9097;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.conversion-flow {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.doc-card {
  width: 62px;
  height: 78px;
  padding: 9px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: #ef5e51;
  border-radius: 10px 10px 15px 15px;
  box-shadow: 0 12px 25px rgba(239, 94, 81, 0.16);
}

.doc-card:last-child {
  background: var(--blue);
  box-shadow: 0 12px 25px rgba(25, 118, 243, 0.18);
}

.doc-card b {
  font-family: var(--mono);
  font-size: 9px;
}

.doc-card i {
  height: 3px;
  margin-top: 5px;
  display: block;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.flow-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf3ff;
  border-radius: 50%;
  font-size: 16px;
}

.local-pill {
  position: absolute;
  right: 5%;
  bottom: -2%;
  z-index: 3;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: #151719;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(21, 23, 25, 0.17);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
}

.local-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #6fd063;
  border-radius: 50%;
}

.generic-art {
  position: absolute;
  inset: 2%;
  overflow: hidden;
  border: 1px solid var(--card-line);
  border-radius: 24px;
  background-image:
    linear-gradient(var(--card-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--card-line) 1px, transparent 1px);
  background-size: 34px 34px;
}

.generic-art::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  top: 50%;
  left: 50%;
  border: 28px solid var(--project-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 55px color-mix(in srgb, var(--project-accent) 28%, transparent);
}

.generic-art::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--card-text);
  font-size: 44px;
  font-weight: 300;
  transform: translate(-50%, -50%);
}

.coming-next {
  margin-top: 76px;
  padding: 32px 0 4px;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.next-index {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(244, 243, 239, 0.42);
  font-family: var(--mono);
  font-size: 11px;
}

.next-index i {
  width: 60px;
  height: 1px;
  background: rgba(244, 243, 239, 0.22);
}

.coming-next p {
  margin: 0 0 5px;
  font-size: 21px;
  font-weight: 550;
  letter-spacing: -0.025em;
}

.coming-next > div:nth-child(2) > span {
  color: rgba(244, 243, 239, 0.48);
  font-size: 14px;
}

.next-orbit {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(244, 243, 239, 0.26);
  border-radius: 50%;
}

.next-orbit i {
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
}

.next-orbit span {
  color: rgba(244, 243, 239, 0.6);
  font-size: 23px;
  font-weight: 300;
}

.about-section {
  padding: 150px 0 155px;
  color: var(--ink);
  background: var(--acid);
}

.about-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 190px;
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
}

.about-grid .eyebrow {
  padding-top: 10px;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(50px, 6vw, 92px);
  font-weight: 520;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.about-copy p {
  max-width: 700px;
  margin: 42px 0 0;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.75;
}

.about-signature {
  aspect-ratio: 1;
  padding: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 10px;
  transform: rotate(7deg);
  transition: transform 0.35s ease, border-radius 0.35s ease;
}

.about-signature:hover,
.about-signature:focus-visible {
  border-radius: 34%;
  transform: rotate(0deg);
  outline: none;
}

.about-signature i {
  align-self: flex-end;
  font-size: 24px;
  font-style: normal;
}

.site-footer {
  padding-top: 75px;
  overflow: hidden;
  color: #f4f3ef;
  background: var(--ink);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.brand-mark-footer {
  color: var(--ink);
  background: var(--paper-bright);
}

.footer-top p {
  margin: 22px 0 0;
  color: rgba(244, 243, 239, 0.55);
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(244, 243, 239, 0.25);
}

.footer-word {
  width: max-content;
  margin: 65px 0 -0.17em;
  padding-left: max(12px, calc((100vw - 1320px) / 2));
  color: #f4f3ef;
  font-size: clamp(110px, 20vw, 360px);
  font-weight: 750;
  letter-spacing: -0.085em;
  line-height: 0.8;
  white-space: nowrap;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  padding: 25px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(244, 243, 239, 0.15);
  color: rgba(244, 243, 239, 0.45);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
}

.noscript-projects {
  padding: 30px;
  display: flex;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
}

.noscript-projects a {
  padding: 10px 16px;
  color: var(--ink);
  background: #fff;
  border-radius: 999px;
}

.reveal,
.project-card {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease var(--delay, 0s),
    transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1) var(--delay, 0s),
    box-shadow 0.45s ease,
    border-color 0.3s ease;
}

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

.project-card.is-visible:hover,
.project-card.is-visible:focus-visible {
  transform: translateY(-8px);
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 48px, 960px);
  }

  .hero {
    min-height: auto;
    padding-top: 165px;
    grid-template-columns: 1fr 390px;
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(58px, 7vw, 78px);
  }

  .collection-object {
    width: 390px;
  }

  .collection-count {
    width: 106px;
    height: 106px;
  }

  .project-card,
  .project-card:nth-child(1),
  .project-card:nth-child(2),
  .project-card:nth-child(n + 3) {
    min-height: 700px;
    grid-column: span 12;
  }

  .baton-panel {
    right: 2%;
    width: 70%;
  }

  .tool-window {
    right: 12%;
  }

  .about-grid {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .about-signature {
    width: 150px;
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 34px);
    --radius-lg: 28px;
  }

  .site-header {
    top: 10px;
  }

  .nav-shell {
    width: calc(100vw - 20px);
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .available-note,
  .brand-name {
    display: none;
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 45px;
    display: block;
  }

  .hero::before {
    top: 92px;
  }

  .hero-title {
    font-size: clamp(52px, 14vw, 78px);
  }

  .hero-lead {
    margin-top: 30px;
    font-size: 17px;
  }

  .collection-object {
    width: min(100%, 520px);
    margin: 55px auto 0;
  }

  .hero-foot {
    margin-top: 58px;
  }

  .work-section {
    padding: 90px 0 100px;
    border-radius: 34px 34px 0 0;
  }

  .section-heading {
    margin-bottom: 46px;
    display: block;
  }

  .section-heading h2 {
    font-size: clamp(44px, 12vw, 70px);
  }

  .section-heading > p {
    max-width: 500px;
    margin-top: 25px;
  }

  .project-card,
  .project-card:nth-child(1),
  .project-card:nth-child(2),
  .project-card:nth-child(n + 3) {
    min-height: 710px;
    padding: 26px;
  }

  .project-copy {
    margin-top: 38px;
  }

  .project-title {
    font-size: clamp(43px, 11vw, 68px);
  }

  .project-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-visual {
    min-height: 250px;
  }

  .baton-panel {
    min-width: 360px;
  }

  .coming-next {
    grid-template-columns: 92px 1fr auto;
  }

  .next-index i {
    width: 30px;
  }

  .about-section {
    padding: 100px 0;
  }

  .about-grid {
    display: block;
  }

  .about-copy h2 {
    font-size: clamp(46px, 12vw, 74px);
  }

  .about-signature {
    width: 140px;
    margin-top: 45px;
  }

  .footer-word {
    margin-top: 58px;
    padding-left: 12px;
  }
}

@media (max-width: 560px) {
  html[data-lang="zh"] .hero-title {
    font-size: 12.4vw;
  }

  html[data-lang="zh"] .about-copy h2 {
    font-size: 10vw;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .button {
    width: 100%;
  }

  .collection-object {
    aspect-ratio: 0.9;
  }

  .folio-card {
    padding: 18px;
    border-radius: 21px;
  }

  .folio-card > b {
    font-size: 25px;
  }

  .collection-count {
    right: 1%;
    width: 94px;
    height: 94px;
    border-width: 6px;
  }

  .collection-count strong {
    font-size: 30px;
  }

  .object-label {
    min-width: 96px;
    padding: 8px 10px;
  }

  .hero-foot > span {
    display: none;
  }

  .hero-foot {
    justify-content: flex-end;
  }

  .project-card,
  .project-card:nth-child(1),
  .project-card:nth-child(2),
  .project-card:nth-child(n + 3) {
    min-height: 760px;
    padding: 22px;
  }

  .project-meta {
    align-items: flex-start;
  }

  .project-status {
    max-width: 150px;
    justify-content: flex-end;
    text-align: right;
  }

  .project-description {
    font-size: 14px;
  }

  .project-visual {
    margin-top: 25px;
  }

  .baton-panel {
    right: -5%;
    width: 105%;
    min-width: 0;
  }

  .baton-stick {
    left: -7%;
    width: 70%;
  }

  .tool-window {
    right: -6%;
    width: 106%;
    min-width: 0;
  }

  .project-cta span {
    display: none;
  }

  .coming-next {
    grid-template-columns: 1fr auto;
  }

  .next-index {
    display: none;
  }

  .coming-next p {
    font-size: 18px;
  }

  .about-copy h2 br {
    display: none;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom span:last-child {
    display: none;
  }

  .footer-word {
    font-size: 21vw;
  }
}

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

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

  .reveal,
  .project-card {
    opacity: 1;
    transform: none;
  }
}
