@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&display=swap');

:root {
  --ink: #101010;
  --ink-2: #2a2a28;
  --paper: #f7f7f2;
  --surface: #ffffff;
  --canary: #f4d000;
  --canary-soft: #fff1a8;
  --line: #d8d6cc;
  --muted: #6d6b64;
  --max: 1360px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --nav-progress: 0;
  --nav-bg: rgba(255, 255, 255, calc(.02 + var(--nav-progress) * .86));
  --nav-border: rgba(16, 16, 16, calc(var(--nav-progress) * .13));
  --nav-shadow: rgba(16, 16, 16, calc(var(--nav-progress) * .12));
  --grid-line: rgba(16, 16, 16, .04);
  --grid-line-strong: rgba(16, 16, 16, .045);
  color-scheme: light;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

:root[data-theme="dark"] {
  --ink: #f6f3ea;
  --ink-2: #ddd8c9;
  --paper: #0b0b09;
  --surface: #151512;
  --canary: #f4d000;
  --canary-soft: #3b3200;
  --line: #343128;
  --muted: #aaa393;
  --nav-bg: rgba(11, 11, 9, calc(.02 + var(--nav-progress) * .88));
  --nav-border: rgba(246, 243, 234, calc(var(--nav-progress) * .15));
  --nav-shadow: rgba(0, 0, 0, calc(var(--nav-progress) * .42));
  --grid-line: rgba(246, 243, 234, .032);
  --grid-line-strong: rgba(246, 243, 234, .04);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, var(--grid-line-strong) 1px, transparent 1px),
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    var(--paper);
  background-size: 68px 68px;
  letter-spacing: 0;
  -webkit-tap-highlight-color: rgba(244, 208, 0, .2);
  transition: background-color .42s var(--ease), color .42s var(--ease);
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.page {
  min-height: 100dvh;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(var(--max), calc(100% - 32px));
  min-height: 54px;
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 8px 8px 14px;
  border: 1px solid rgba(16, 16, 16, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 44px rgba(16, 16, 16, .09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
}

.brand span {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  transition: color .35s var(--ease);
}

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

.nav .cta {
  padding: 0 15px;
  border-radius: 999px;
  color: #101010;
  background: var(--canary);
}

.site-header.pill-nav-container {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: width .52s var(--ease), top .52s var(--ease), transform .52s var(--ease);
  will-change: width, top;
}

.site-header.pill-nav-container.is-scrolled {
  top: 10px;
  width: fit-content;
  max-width: calc(100% - 32px);
}

.pill-nav {
  --nav-h: 48px;
  --pill-pad-x: 18px;
  --pill-gap: 6px;
  --pill-base: var(--ink);
  --pill-surface: rgba(255, 255, 255, .82);
  --pill-text: var(--ink);
  --pill-hover-text: var(--paper);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  box-sizing: border-box;
  gap: 18px;
  padding: calc(var(--nav-progress) * 4px) calc(8px + var(--nav-progress) * 2px);
  border: 1px solid var(--nav-border);
  border-radius: 9999px;
  background: var(--nav-bg);
  box-shadow: 0 calc(var(--nav-progress) * 14px) calc(var(--nav-progress) * 44px) var(--nav-shadow);
  backdrop-filter: blur(calc(var(--nav-progress) * 18px));
  -webkit-backdrop-filter: blur(calc(var(--nav-progress) * 18px));
  transition:
    gap .52s var(--ease),
    padding .52s var(--ease),
    background .52s var(--ease),
    border-color .52s var(--ease),
    box-shadow .52s var(--ease),
    backdrop-filter .52s var(--ease);
}

:root[data-theme="dark"] .pill-nav {
  --pill-hover-text: #f6f3ea;
}

.pill-nav-items {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: center;
  height: var(--nav-h);
  border-radius: 9999px;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    height .52s var(--ease),
    background .52s var(--ease),
    border-color .52s var(--ease),
    box-shadow .52s var(--ease);
}

.pill-logo {
  --logo-size: 34px;
  min-width: var(--nav-h);
  height: var(--nav-h);
  border-radius: 9999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  padding: 7px 15px 7px 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  position: relative;
  gap: 10px;
  overflow: hidden;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    min-width .52s var(--ease),
    height .52s var(--ease),
    padding .52s var(--ease),
    gap .52s var(--ease),
    transform .34s var(--ease),
    background .34s var(--ease),
    color .34s var(--ease);
}

.pill-logo::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 50%;
  background: #050505;
  opacity: 0;
  transform: translateY(-50%);
  transition: width .52s var(--ease), height .52s var(--ease), opacity .34s var(--ease);
}

.pill-logo:hover {
  background: rgba(16, 16, 16, calc(.05 + var(--nav-progress) * .95));
  color: var(--paper);
  transform: translateY(-1px);
}

:root[data-theme="dark"] .pill-logo:hover {
  background: rgba(247, 247, 242, calc(.08 + var(--nav-progress) * .88));
  color: #090909;
}

.pill-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  background: var(--surface);
  position: relative;
  z-index: 1;
  transition: width .52s var(--ease), height .52s var(--ease);
}

.pill-logo span {
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  max-width: 120px;
  opacity: 1;
  position: relative;
  z-index: 1;
  transition: max-width .42s var(--ease), opacity .28s var(--ease), transform .42s var(--ease);
}

.site-header.pill-nav-container.is-scrolled .pill-nav {
  --nav-h: 42px;
  --pill-pad-x: 12px;
  --pill-gap: 3px;
  width: fit-content;
  grid-template-columns: auto auto auto;
  margin: 0 auto;
  gap: 3px;
  justify-content: center;
}

.site-header.pill-nav-container.is-scrolled .pill-logo {
  --logo-size: 30px;
  padding-right: 7px;
  gap: 0;
}

.site-header.pill-nav-container.is-scrolled .pill-logo span {
  max-width: 0;
  opacity: 0;
  transform: translateX(-6px);
}

.site-header.pill-nav-container.is-scrolled .pill-logo img {
  width: 30px;
  height: 30px;
}

.site-header.pill-nav-container.is-scrolled .pill-nav-items,
.site-header.pill-nav-container.is-scrolled .pill-logo,
.site-header.pill-nav-container.is-scrolled .mobile-menu-button {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.pill-nav-container.is-scrolled .pill-logo {
  min-width: 42px;
}

.site-header.pill-nav-container.is-scrolled .pill {
  background: rgba(255, 255, 255, .5);
  min-width: 66px;
}

:root[data-theme="dark"] .site-header.pill-nav-container.is-scrolled .pill {
  background: rgba(247, 247, 242, .06);
}

.site-header.pill-nav-container.is-scrolled .pill-contact {
  background: rgba(244, 208, 0, .88);
  color: #101010;
}

.pill-list {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: var(--pill-gap);
  height: 100%;
  margin: 0;
  padding: 4px;
}

.pill-list > li {
  display: flex;
  height: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 78px;
  padding: 0 var(--pill-pad-x);
  border-radius: 9999px;
  background: transparent;
  color: var(--pill-text);
  box-sizing: border-box;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .24s var(--ease), background .24s var(--ease), color .24s var(--ease);
}

.pill-contact {
  background: transparent;
}

.pill:hover {
  color: var(--pill-hover-text);
  transform: translateY(-1px);
}

.pill .hover-circle {
  position: absolute;
  left: 50%;
  bottom: -76%;
  width: 132%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pill-base);
  z-index: 1;
  display: block;
  pointer-events: none;
  transform: translateX(-50%) scale(0);
  transform-origin: 50% 82%;
  transition: transform .54s var(--ease);
  will-change: transform;
}

.pill.is-active::before,
.mobile-menu-link.is-active::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--canary);
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

:root[data-theme="dark"] .pill-logo img {
  background: transparent;
  border: 0;
  filter: invert(1);
}

:root[data-theme="dark"] .pill-logo::before {
  opacity: 1;
}

.pill:hover .hover-circle,
.pill:focus-visible .hover-circle {
  transform: translateX(-50%) scale(1.18);
}

.pill .label-stack {
  position: relative;
  z-index: 2;
  display: inline-block;
  line-height: 1;
  overflow: hidden;
}

.pill .pill-label,
.pill .pill-label-hover {
  display: inline-block;
  line-height: 1;
  transition: transform .42s var(--ease), opacity .34s var(--ease);
  will-change: transform, opacity;
}

.pill .pill-label-hover {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pill-hover-text);
  opacity: 0;
  transform: translateY(118%);
}

.pill:hover .pill-label,
.pill:focus-visible .pill-label {
  transform: translateY(-118%);
}

.pill:hover .pill-label-hover,
.pill:focus-visible .pill-label-hover {
  opacity: 1;
  transform: translateY(0);
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.mobile-menu-button {
  width: var(--nav-h);
  height: var(--nav-h);
  border-radius: 50%;
  border: 0;
  background: transparent;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  border: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.theme-toggle {
  width: 42px;
  height: var(--nav-h);
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  justify-self: end;
  overflow: hidden;
  transition:
    background .34s var(--ease),
    border-color .34s var(--ease),
    transform .34s var(--ease),
    color .34s var(--ease);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  background: transparent;
  color: var(--ink);
  transform: translateY(-1px);
  outline: 0;
  box-shadow: none;
}

:root[data-theme="dark"] .theme-toggle:hover,
:root[data-theme="dark"] .theme-toggle:focus-visible {
  color: var(--ink);
}

.theme-toggle:focus {
  outline: 0;
}

:root[data-theme="dark"] .theme-toggle {
  border-color: rgba(246, 243, 234, .55);
}

.theme-svg {
  position: absolute;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity .3s var(--ease), transform .42s var(--ease);
}

.theme-svg-sun {
  transform: rotate(0deg) scale(1);
}

.theme-svg-moon {
  opacity: 0;
  transform: rotate(-24deg) scale(.72);
}

:root[data-theme="dark"] .theme-svg-sun {
  opacity: 0;
  transform: rotate(90deg) scale(.72);
}

:root[data-theme="dark"] .theme-svg-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

:root[data-theme="dark"] .work-link,
:root[data-theme="dark"] .studio-panel,
:root[data-theme="dark"] .audience-grid,
:root[data-theme="dark"] .method-steps,
:root[data-theme="dark"] .faq-list details,
:root[data-theme="dark"] .case-cover,
:root[data-theme="dark"] .case-block,
:root[data-theme="dark"] .image-frame,
:root[data-theme="dark"] .next-work a {
  border-color: rgba(246, 243, 234, .14);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
}

:root[data-theme="dark"] .work-info,
:root[data-theme="dark"] .work-arrow,
:root[data-theme="dark"] .section-title,
:root[data-theme="dark"] .founder,
:root[data-theme="dark"] .footer {
  border-color: var(--line);
}

:root[data-theme="dark"] .tag,
:root[data-theme="dark"] .quick-tags span {
  background: #1c1b17;
  border-color: rgba(246, 243, 234, .14);
  color: var(--ink);
}

:root[data-theme="dark"] .work-image {
  background: #1a1812;
}

:root[data-theme="dark"] .work-arrow span:last-child {
  background: var(--ink);
  color: var(--paper);
}

:root[data-theme="dark"] .qr {
  border-color: rgba(11, 11, 9, .18);
  color: rgba(11, 11, 9, .74);
  background:
    linear-gradient(90deg, rgba(11, 11, 9, .08) 1px, transparent 1px),
    linear-gradient(rgba(11, 11, 9, .08) 1px, transparent 1px);
  background-size: 14px 14px;
}

:root[data-theme="dark"] .qr.qr-image {
  background: transparent;
  border-color: transparent;
  color: #101010;
}

:root[data-theme="dark"] .studio-panel.dark p {
  color: rgba(11, 11, 9, .66);
}

:root[data-theme="dark"] .contact-card p {
  color: rgba(11, 11, 9, .66);
}

:root[data-theme="dark"] .contact-list li {
  border-color: rgba(11, 11, 9, .16);
  color: rgba(11, 11, 9, .78);
}

:root[data-theme="dark"] .method-lead {
  border-color: rgba(11, 11, 9, .1);
}

.hamburger-line {
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: var(--ink);
  transform-origin: center;
  transition: transform .3s var(--ease);
}

.pill-nav-container.is-menu-open .hamburger-line:first-child {
  transform: translateY(3px) rotate(45deg);
}

.pill-nav-container.is-menu-open .hamburger-line:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.pill-nav-container.is-menu-open .mobile-menu-button {
  background: var(--ink);
}

.pill-nav-container.is-menu-open .hamburger-line {
  background: var(--paper);
}

.mobile-menu-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  border-radius: 27px;
  border: 1px solid rgba(16, 16, 16, .13);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 20px 54px rgba(16, 16, 16, .13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scaleY(.98);
  transform-origin: top center;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s var(--ease);
}

.pill-nav-container.is-menu-open .mobile-menu-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scaleY(1);
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 4px;
}

.mobile-menu-link {
  display: block;
  min-height: 44px;
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  transition: background .24s var(--ease), color .24s var(--ease);
}

.mobile-menu-link:hover,
.mobile-menu-link.is-active {
  background: var(--ink);
  color: var(--paper);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100dvh - 82px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 66px 0 46px;
  text-align: center;
}

.hero-inner {
  display: grid;
  justify-items: center;
  gap: 66px;
}

.hero-kicker,
.eyebrow {
  width: fit-content;
  border-radius: 999px;
  background: var(--canary);
  color: #101010;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1120px;
  font-size: 9.4rem;
  line-height: .92;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.variable-title {
  display: grid;
  justify-items: center;
  width: 100%;
  cursor: default;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.variable-line {
  display: block;
  white-space: nowrap;
  line-height: .94;
}

.variable-proximity-react .variable-line {
  display: flex;
  white-space: nowrap;
}

.hero h1 .variable-proximity-react {
  display: grid !important;
  justify-items: center;
  width: 100%;
}

.hero h1 .variable-row,
.hero h1 .variable-proximity-react .variable-row {
  display: flex !important;
  justify-content: center;
  width: 100%;
  white-space: nowrap;
  line-height: .94;
}

.variable-letter {
  display: inline-block !important;
  line-height: .94;
  transition:
    font-variation-settings .18s var(--ease);
  will-change: transform, font-variation-settings;
}

.hero h1 .variable-letter {
  display: inline-block !important;
}

.vp-char {
  display: inline-block;
  font-weight: var(--vp-wght, 850);
  font-variation-settings: "wght" var(--vp-wght, 850);
  transform: translateY(var(--vp-y, 0)) scale(var(--vp-scale, 1));
  transform-origin: center 58%;
  transition:
    font-weight .26s var(--ease),
    font-variation-settings .26s var(--ease),
    transform .26s var(--ease);
  will-change: transform, font-variation-settings;
}

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

.hero-copy {
  max-width: 760px;
  color: var(--ink-2);
  font-size: 1.25rem;
  line-height: 1.55;
  font-weight: 780;
}

.hero-note {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 14px;
}

.claim-card {
  border: 1px solid rgba(16, 16, 16, .14);
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 28px;
  box-shadow: 0 22px 70px rgba(16, 16, 16, .18);
}

.claim-card strong {
  display: block;
  max-width: 520px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: .96;
  letter-spacing: 0;
}

.claim-card p {
  margin-top: 18px;
  color: rgba(247, 247, 242, .72);
  font-size: 15px;
  line-height: 1.65;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-tags span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(16, 16, 16, .13);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.work-section {
  padding: 26px 0 28px;
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(10px);
  transition:
    opacity .82s var(--ease) var(--reveal-delay, 0ms),
    transform .82s var(--ease) var(--reveal-delay, 0ms),
    filter .82s var(--ease) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-ready .reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-ready .work-link.reveal-item.is-revealed:hover {
  transform: translateY(-4px);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 460px);
  gap: 32px;
  align-items: end;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.section-title h2 {
  max-width: 840px;
  font-size: clamp(42px, 6vw, 92px);
  line-height: .92;
  letter-spacing: 0;
}

.section-title p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-title.compact {
  margin-bottom: 22px;
}

.section-title.compact h2 {
  font-size: clamp(42px, 5vw, 76px);
}

.work-list {
  display: grid;
  gap: 22px;
}

.work-link {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, .16);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 18px 54px rgba(16, 16, 16, .08);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}

.work-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(16, 16, 16, .14);
}

.work-image {
  min-height: 610px;
  background: #ece9df;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.black-sesame-card .work-image {
  background: #8f1715;
}

.black-sesame-card .work-image img {
  object-fit: contain;
}

.work-info {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-left: 1px solid rgba(16, 16, 16, .14);
}

.work-number {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--canary);
  color: #101010;
  font-size: 14px;
  font-weight: 950;
}

.work-info h3 {
  margin-top: 28px;
  max-width: 520px;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: .95;
  letter-spacing: 0;
}

.work-info p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.work-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.work-arrow span:last-child {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
}

.studio {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 22px;
  padding: 96px 0 28px;
}

.studio-panel {
  border: 1px solid rgba(16, 16, 16, .14);
  border-radius: 10px;
  background: var(--surface);
  padding: 30px;
}

.studio-panel.dark {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
}

.studio-panel h2 {
  max-width: 660px;
  font-size: clamp(40px, 5vw, 76px);
  line-height: .95;
}

.studio-panel.dark h2 {
  margin-top: 34px;
}

.studio-panel p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.studio-panel.dark p {
  color: rgba(247, 247, 242, .72);
}

.audience,
.method,
.founder,
.faq {
  padding: 70px 0 28px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, .14);
  border-radius: 10px;
  background: var(--line);
}

.audience-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
  padding: 24px;
}

.audience-grid span,
.method-steps b {
  color: #8a7400;
  font-size: 12px;
  font-weight: 950;
}

.audience-grid h3 {
  margin-top: auto;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.03;
}

.audience-grid p,
.method-steps p,
.founder p,
.faq-list p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.audience-grid p {
  margin-top: 14px;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.method-lead {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(16, 16, 16, .14);
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 30px;
}

.method-lead h2 {
  margin-top: 34px;
  max-width: 760px;
  font-size: clamp(40px, 5vw, 82px);
  line-height: .94;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, .14);
  border-radius: 10px;
  background: var(--line);
}

.method-steps article {
  min-height: 250px;
  background: var(--surface);
  padding: 24px;
}

.method-steps strong {
  display: block;
  margin-top: 70px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: .9;
}

.method-steps p {
  margin-top: 14px;
}

.founder {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.founder > div {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
}

.founder h2 {
  max-width: 960px;
  font-size: clamp(42px, 6vw, 92px);
  line-height: .92;
}

.founder-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 28px;
}

.founder-copy p {
  max-width: 640px;
  color: var(--ink-2);
  font-size: 18px;
  font-weight: 720;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(16, 16, 16, .14);
  border-radius: 10px;
  background: var(--surface);
  padding: 0 24px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.1;
  font-weight: 950;
}

.faq-list p {
  max-width: 860px;
  padding: 0 0 24px;
}

.capabilities {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.capability {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--surface);
  padding: 22px 0;
}

.capability b {
  color: #8a7400;
  font-size: 12px;
  font-weight: 950;
}

.capability strong {
  display: block;
  font-size: clamp(23px, 2.3vw, 32px);
  line-height: 1.05;
}

.capability span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.contact {
  padding: 70px 0 58px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: 30px;
  align-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 34px;
  box-shadow: 0 24px 72px rgba(16, 16, 16, .18);
}

.contact-card h2 {
  max-width: 780px;
  font-size: clamp(38px, 5.6vw, 82px);
  line-height: .94;
}

.contact-card p {
  margin-top: 18px;
  max-width: 690px;
  color: rgba(247, 247, 242, .72);
  font-size: 16px;
  line-height: 1.7;
}

.contact-list {
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  list-style: none;
}

.contact-list li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(247, 247, 242, .22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(247, 247, 242, .86);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.qr {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 247, 242, .22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(247, 247, 242, .08) 1px, transparent 1px),
    linear-gradient(rgba(247, 247, 242, .08) 1px, transparent 1px);
  background-size: 14px 14px;
  color: rgba(247, 247, 242, .84);
  text-align: center;
  font-weight: 950;
  line-height: 1.5;
}

.qr.qr-image {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  color: #fff;
  border: 0;
}

.qr.qr-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.qr.qr-image figcaption {
  margin: 0;
  display: grid;
  gap: 4px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  color: currentColor;
}

.qr.qr-image figcaption small {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  opacity: .78;
}

.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 22px 0 34px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.case-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 4.8vw, 72px) 0 34px;
}

.case-hero .hero-kicker {
  margin-bottom: clamp(30px, 3vw, 44px);
}

.case-hero h1 {
  margin: 0;
  max-width: 1120px;
  font-size: clamp(54px, 8vw, 128px);
  line-height: .95;
}

.case-hero p {
  margin-top: clamp(24px, 2.4vw, 36px);
  max-width: 760px;
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  font-weight: 760;
}

.case-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.case-cover {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, .16);
  border-radius: 10px;
  background: var(--surface);
}

.case-cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.case-cover.full-image img {
  max-height: none;
  object-fit: contain;
}

.case-cover.long-case-image {
  line-height: 0;
}

.case-cover.long-case-image img {
  display: block;
  width: 100%;
  border: 0;
}

.case-cover.safe-long-image {
  width: min(60vw, 720px);
  background: transparent;
}

@media (min-width: 900px) {
  .case-cover,
  .case-body,
  .next-work {
    width: min(60vw, 960px);
  }
}

.case-body {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 28px;
}

.case-intro {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 22px;
  margin-top: 22px;
}

.case-block {
  border: 1px solid rgba(16, 16, 16, .14);
  border-radius: 10px;
  background: var(--surface);
  padding: 28px;
}

.case-block.dark {
  background: var(--ink);
  color: var(--paper);
}

.case-block h2,
.case-block h3 {
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: .98;
}

.case-block p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.scope-block {
  margin-top: 22px;
}

.scope-block h3 {
  font-size: clamp(24px, 2.8vw, 42px);
}

.case-block.dark p {
  color: rgba(247, 247, 242, .72);
}

.case-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  background: var(--line);
}

.case-point {
  background: var(--surface);
  padding: 22px;
}

.case-point b {
  color: #8a7400;
  font-size: 12px;
  font-weight: 950;
}

.case-point strong {
  display: block;
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.1;
}

.case-point p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.image-stack {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

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

.image-frame {
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, .14);
  border-radius: 10px;
  background: var(--surface);
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.next-work {
  width: min(var(--max), calc(100% - 40px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.next-work a {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(16, 16, 16, .14);
  border-radius: 10px;
  background: var(--surface);
  padding: 24px;
  font-weight: 950;
}

.next-work span {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 768px) {
  .pill-nav {
    --nav-h: 46px;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .mobile-menu-button {
    display: flex;
    justify-self: end;
  }

  .theme-toggle {
    justify-self: end;
  }

  .pill-logo {
    max-width: calc(100vw - 96px);
  }

  .pill-logo span {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header.pill-nav-container,
  .pill-nav,
  .pill-nav-items,
  .pill-logo,
  .pill-logo img,
  .pill-logo span,
  .reveal-ready .reveal-item {
    transition: none;
  }

  .reveal-ready .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 960px) {
  .nav a:not(.cta) {
    display: none;
  }

  .hero h1 {
    font-size: 6.6rem;
  }

  .hero-inner {
    gap: 48px;
  }

  .hero,
  .section-title,
  .work-link,
  .studio,
  .method,
  .founder,
  .contact-card,
  .case-intro,
  .next-work {
    grid-template-columns: 1fr;
  }

  .work-info {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(16, 16, 16, .14);
  }

  .work-image {
    min-height: auto;
  }

  .work-image img {
    aspect-ratio: 4 / 3;
  }

  .case-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid,
  .method-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .case-hero,
  .case-cover,
  .case-body,
  .next-work,
  .footer {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    top: 8px;
    margin-top: 8px;
  }

  .brand span {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 40px;
  }

  .hero h1 {
    font-size: 3.95rem;
    line-height: .96;
  }

  .hero-inner {
    gap: 34px;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .claim-card,
  .studio-panel,
  .contact-card,
  .case-block {
    padding: 22px;
  }

  .studio,
  .method {
    gap: 14px;
    padding-top: 46px;
  }

  .studio-panel.dark,
  .method-lead {
    min-height: auto;
    justify-content: flex-start;
    padding: 30px 22px;
  }

  .studio-panel.dark h2,
  .method-lead h2 {
    margin-top: 22px;
  }

  .studio-panel p,
  .method-lead p,
  .contact-card p {
    margin-top: 16px;
  }

  .method-steps article {
    padding: 22px;
  }

  .contact {
    padding: 46px 0 42px;
  }

  .contact-card {
    align-items: start;
    gap: 24px;
  }

  .qr.qr-image {
    width: min(100%, 300px);
    justify-self: center;
  }

  .work-info {
    padding: 22px;
  }

  .work-meta {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .case-points,
  .image-pair,
  .audience-grid,
  .method-steps {
    grid-template-columns: 1fr;
  }

  .audience-grid article,
  .method-steps article {
    min-height: auto;
  }

  .method-steps strong {
    margin-top: 28px;
  }

  .capability {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer {
    flex-direction: column;
  }
}
