:root {
  --current-gradient: linear-gradient(180deg, #ffeeee, #fcdfdf, #f9cecf, #f8cacb, #f9d2d4, #fad9dc);
  --ink: #0b0b0b;
  --muted: #6b6861;
  --paper: #f7f6f3;
  --paper-deep: #ece9e1;
  --line: rgba(11, 11, 11, 0.16);
  --sakura: linear-gradient(180deg, #ffeeee, #f8cacb, #fad9dc);
  --ocean: linear-gradient(180deg, #2d8abf, #1864a5, #0d3d6a);
  --kyoto: linear-gradient(180deg, #e4a63c, #cc6b3c, #a2221f);
  --zen: linear-gradient(180deg, #b1aaa0, #d5d0c8);
  --plum: linear-gradient(180deg, #c77dff, #591899, #240046);
  --matcha: linear-gradient(180deg, #e4f1e4, #adbf9e, #6f912b);
  --sunrise: linear-gradient(180deg, #fe9d1d, #ec523c, #c0052f);
  --wood: linear-gradient(180deg, #c17f39, #6e3f20);
  --fog: linear-gradient(180deg, #f4f8fe, #c2d0da, #a7bbc7);
  --pearl: linear-gradient(180deg, #dfc3af, #fbf8e9);
  --camellia: linear-gradient(180deg, #ea78a5, #d61363);
  --inkwash: linear-gradient(180deg, #b9bdbe, #121a22);
  --aizome: linear-gradient(180deg, #6d87cc, #0c2345);
  --gold: linear-gradient(180deg, #ffd61c, #ffaf08);
  --yuzu: linear-gradient(180deg, #ffc64c, #ff6d2a);
  --silver: linear-gradient(180deg, #f2f2f2, #868683);
  --rice: linear-gradient(180deg, #f6edd8, #dcc3a4);
  --seal: linear-gradient(180deg, #d72a2a, #eb4a4a, #fe6a6a);
  --twilight: linear-gradient(180deg, #90cfbb, #116c7b, #00121a);
  --hero-progress: 0;
  --hero-copy-color: #0b0b0b;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  text-rendering: geometricPrecision;
}

body::selection {
  color: #f7f6f3;
  background: #0b0b0b;
}

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

img,
canvas {
  display: block;
}

em {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 400;
}

.site-nav {
  position: fixed;
  z-index: 20;
  top: 20px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(470px, calc(100% - 32px));
  height: 52px;
  padding: 0 18px;
  color: #111;
  background: rgba(247, 246, 243, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -14px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.nav-visible .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav a:not(.site-mark) {
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a:last-child {
  justify-self: end;
}

.site-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 26px;
}

.site-mark img {
  width: 100%;
  height: auto;
}

.hero-transition {
  position: relative;
  z-index: 1;
  height: 145svh;
  background: var(--paper);
}

.hero-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  padding: calc(22px * var(--hero-progress));
  background: var(--paper);
}

.hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  isolation: isolate;
  overflow: hidden;
  background: var(--current-gradient);
  border: 0;
  border-radius: calc(18px * var(--hero-progress));
  box-shadow: none;
  transform: scale(calc(1 - (0.035 * var(--hero-progress))));
  transform-origin: center center;
}

#stage {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-note {
  position: absolute;
  z-index: 2;
  bottom: clamp(22px, 4.8vh, 42px);
  left: 50%;
  display: flex;
  width: auto;
  align-items: center;
  color: var(--hero-copy-color);
  color: color-mix(in srgb, var(--hero-copy-color), transparent 34%);
  line-height: 1.1;
  transform: translateX(-50%);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.hero-cta svg {
  width: 11px;
  height: 11px;
}

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

main {
  position: relative;
  z-index: 2;
  background: var(--paper);
}

section[id] {
  scroll-margin-top: 96px;
}

.section-pad {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 92px 20px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.2;
  text-transform: uppercase;
}

.statement {
  display: grid;
  min-height: 78svh;
  align-content: end;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.76fr);
  gap: 24px;
  padding-top: clamp(128px, 13vw, 220px);
  padding-bottom: clamp(74px, 8vw, 132px);
  border-bottom: 1px solid var(--line);
}

.statement .eyebrow {
  margin-top: 0.6em;
}

.statement h1,
.section-heading h2,
.approach-lead h2 {
  max-width: 1220px;
  margin: 0;
  font-size: clamp(76px, 8.4vw, 148px);
  font-weight: 780;
  line-height: 0.86;
  letter-spacing: 0;
  word-spacing: 0;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-wrap: balance;
}

.statement h1,
.statement-grid,
.approach-lead h2 {
  grid-column: 2;
}

.statement h1 em,
.section-heading h2 em,
.approach-lead h2 em {
  word-spacing: 0;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.54fr) minmax(220px, 0.46fr);
  gap: 34px;
  width: min(980px, 100%);
  margin: 58px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 11, 11, 0.24);
}

.statement-grid p,
.case-copy p,
.process-list p,
.approach-grid p {
  margin: 0;
  color: #383832;
  font-size: 20px;
  line-height: 1.32;
}

.approach {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.76fr);
  gap: 24px;
  padding-top: clamp(64px, 8vw, 118px);
  padding-bottom: clamp(58px, 7vw, 104px);
  border-bottom: 1px solid var(--line);
}

.approach-lead {
  display: contents;
}

.approach .eyebrow {
  margin-top: 0.7em;
}

.approach-lead h2 {
  max-width: 960px;
  font-size: clamp(58px, 6.1vw, 108px);
  line-height: 0.88;
  word-spacing: 0;
}

.approach-grid {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 50px;
  background: var(--line);
}

.approach-grid article {
  display: grid;
  min-height: 276px;
  align-content: space-between;
  padding: 20px;
  color: var(--ink);
  background: #efeee9;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.approach-grid article:hover {
  transform: translateY(-2px);
}

.approach-grid article:nth-child(1):hover {
  background: var(--fog);
}

.approach-grid article:nth-child(2):hover {
  color: #f7f6f3;
  background: var(--sunrise);
}

.approach-grid article:nth-child(3):hover {
  color: #f7f6f3;
  background: var(--ocean);
}

.approach-grid span,
.process-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

.approach-grid strong {
  align-self: end;
  margin-top: 72px;
  font-size: clamp(26px, 2.45vw, 40px);
  font-weight: 780;
  line-height: 0.96;
  word-spacing: 0;
}

.approach-grid p {
  margin-top: 18px;
  font-size: 16px;
}

.approach-grid article:hover span,
.approach-grid article:hover p {
  color: currentColor;
  opacity: 0.76;
}

.jump {
  display: grid;
  grid-template-columns: minmax(130px, 0.24fr) repeat(5, minmax(0, 1fr));
  gap: 1px;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.jump-label {
  display: flex;
  min-height: 150px;
  align-items: flex-start;
  margin: 0;
  padding: 18px 18px 0;
  color: var(--muted);
  background: var(--paper);
  font-size: 13px;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

.jump-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 0;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.jump-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

.jump-card strong {
  max-width: 260px;
  font-size: 23px;
  font-weight: 780;
  line-height: 1.02;
  word-spacing: 0;
}

.jump-card:hover {
  color: #f7f6f3;
  background: var(--plum);
  transform: translateY(-3px);
}

.jump-card:hover span {
  color: currentColor;
  opacity: 0.7;
}

.jump-card:nth-of-type(1):hover {
  color: #0b0b0b;
  background: var(--sakura);
}

.jump-card:nth-of-type(2):hover {
  background: var(--ocean);
}

.jump-card:nth-of-type(3):hover {
  color: #221c18;
  background: var(--matcha);
}

.jump-card:nth-of-type(4):hover {
  background: var(--twilight);
}

.jump-card:nth-of-type(5):hover {
  background: var(--seal);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.76fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  margin-top: 0.8em;
}

.section-heading h2 {
  max-width: 980px;
  font-size: clamp(54px, 5.6vw, 104px);
  line-height: 0.9;
  word-spacing: 0;
}

.work {
  padding-top: clamp(56px, 6vw, 92px);
}

.works-page-main {
  min-height: 100svh;
  background: var(--paper);
}

.works-archive {
  padding-top: 142px;
}

.works-header {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 44px;
}

.works-header h1 {
  max-width: 900px;
  margin: 0;
  font-size: 76px;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  word-spacing: 0;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

.case-study {
  margin-bottom: clamp(96px, 13vw, 184px);
}

.work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 42px;
}

.work-filter button {
  min-height: 34px;
  padding: 0 12px;
  color: #383832;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.work-filter button:hover,
.work-filter button[aria-pressed="true"] {
  color: #f7f6f3;
  background: #0b0b0b;
  border-color: #0b0b0b;
}

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

.case-card[hidden] {
  display: none;
}

.case-frame {
  position: relative;
  display: block;
  height: 92svh;
  min-height: 660px;
  overflow: hidden;
  background: #090909;
  border-radius: 6px;
}

.case-frame::after {
  display: none;
}

.case-art {
  position: absolute;
  inset: -9% 0;
  min-height: 118%;
  overflow: hidden;
  will-change: transform;
}

.case-image {
  position: absolute;
  inset: -55% 0;
  width: 100%;
  height: 210%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.case-image-clear {
  object-position: center 46%;
}

.case-copy {
  display: grid;
  grid-template-columns: minmax(42px, 0.12fr) minmax(280px, 0.5fr) minmax(260px, 0.38fr);
  gap: 28px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(11, 11, 11, 0.18);
}

.case-copy > p:not(.case-index) {
  grid-column: 3;
}

.case-index {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.case-copy h3 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 74px);
  font-weight: 780;
  line-height: 0.91;
  letter-spacing: 0;
  word-spacing: 0;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-wrap: balance;
}

.case-tags {
  grid-column: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  align-content: start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-tags li {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.35;
  text-transform: uppercase;
}

.case-tags li:not(:last-child)::after {
  margin-left: 10px;
  content: "/";
  color: rgba(11, 11, 11, 0.3);
}

.works-archive .case-frame {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
}

.works-archive .case-copy {
  grid-template-columns: 34px 1fr;
  gap: 6px 12px;
  padding: 16px 0 0;
  border-top: 0;
}

.works-archive .case-copy > p:not(.case-index) {
  grid-column: 2;
}

.works-archive .case-index {
  grid-row: 1 / span 3;
  margin: 5px 0 0;
  font-size: 12px;
}

.works-archive .case-copy h3 {
  font-size: 26px;
}

.works-archive .case-tags {
  grid-column: 2;
  gap: 0 8px;
  margin: 3px 0 0;
}

.works-archive .case-tags li {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.works-archive .case-tags li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: rgba(11, 11, 11, 0.28);
}

.art-clarity {
  display: grid;
  place-items: center;
  color: #f4f4f1;
  background:
    radial-gradient(circle at 16% 22%, rgba(244, 244, 241, 0.26), transparent 18%),
    radial-gradient(circle at 72% 70%, rgba(54, 225, 205, 0.34), transparent 24%),
    linear-gradient(135deg, #131313 0%, #292929 42%, #d83f31 100%);
}

.signal-grid {
  position: absolute;
  inset: 12%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.signal-grid span {
  display: grid;
  place-items: center;
  color: rgba(244, 244, 241, 0.76);
  border: 1px solid rgba(244, 244, 241, 0.22);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 720;
  text-transform: uppercase;
}

.art-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(520px, calc(100% - 48px));
  min-height: 260px;
  place-content: center;
  padding: 42px;
  color: #0b0b0b;
  background: #f4f4f1;
  border-radius: 8px;
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.35);
}

.art-panel span,
.ai-card span {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
  text-transform: uppercase;
}

.art-panel strong {
  margin-top: 16px;
  font-size: 58px;
  line-height: 0.92;
}

.art-panel em {
  margin-top: 18px;
  color: #454540;
  font-size: 18px;
  font-style: normal;
  line-height: 1.25;
}

.art-launch {
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(135deg, #1855ff 0%, #ff533c 52%, #f6cf4a 100%);
  background-size:
    64px 64px,
    64px 64px,
    auto;
}

.launch-stack {
  position: absolute;
  inset: 10% auto auto 12%;
  display: grid;
  gap: 16px;
}

.launch-stack span {
  display: block;
  width: 230px;
  height: 72px;
  background: rgba(11, 11, 11, 0.88);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.launch-stack span:nth-child(2) {
  margin-left: 72px;
  background: #f4f4f1;
}

.launch-stack span:nth-child(3) {
  margin-left: 28px;
  background: #111;
}

.device-shell {
  position: relative;
  display: grid;
  width: min(440px, calc(100% - 60px));
  aspect-ratio: 0.58;
  place-items: center;
  padding: 22px;
  background: #121212;
  border: 8px solid #242424;
  border-radius: 34px;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(-6deg);
}

.device-shell div {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: end start;
  padding: 28px;
  color: #f4f4f1;
  background:
    radial-gradient(circle at 68% 28%, #36e1cd 0 12%, transparent 13%),
    linear-gradient(160deg, #ff533c 0 46%, #0b0b0b 46% 100%);
  border-radius: 24px;
}

.device-shell strong {
  font-size: 42px;
  line-height: 0.95;
}

.device-shell span {
  max-width: 230px;
  margin-top: 12px;
  color: rgba(244, 244, 241, 0.72);
  font-size: 15px;
  font-weight: 720;
}

.art-ai {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(54, 225, 205, 0.34), transparent 26%),
    linear-gradient(135deg, #050505 0%, #1d2b2b 52%, #baf05c 100%);
}

.ai-map {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(244, 244, 241, 0.18);
  border-radius: 8px;
}

.ai-map span {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  background: #f4f4f1;
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(244, 244, 241, 0.08);
}

.ai-map span:nth-child(1) {
  top: 18%;
  left: 24%;
}

.ai-map span:nth-child(2) {
  top: 36%;
  right: 18%;
  background: #36e1cd;
}

.ai-map span:nth-child(3) {
  right: 30%;
  bottom: 20%;
}

.ai-map span:nth-child(4) {
  bottom: 34%;
  left: 18%;
  background: #baf05c;
}

.ai-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(620px, calc(100% - 56px));
  min-height: 300px;
  place-content: end start;
  padding: 34px;
  color: #f4f4f1;
  background: rgba(11, 11, 11, 0.72);
  border: 1px solid rgba(244, 244, 241, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(20px);
}

.ai-card span {
  color: rgba(244, 244, 241, 0.62);
}

.ai-card strong {
  max-width: 500px;
  margin-top: 18px;
  font-size: 62px;
  line-height: 0.95;
}

.process {
  padding-top: clamp(82px, 9vw, 138px);
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.process-list li {
  position: relative;
  display: grid;
  min-height: clamp(270px, 25vw, 380px);
  align-content: space-between;
  overflow: hidden;
  padding: 20px;
  color: var(--ink);
  background: #efeee9;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.process-list li::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  content: "";
  background: var(--cell-gradient, var(--sakura));
  opacity: 0;
  transform: scaleX(0.22);
  transform-origin: left center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.process-list li:hover {
  color: var(--cell-ink, #0b0b0b);
  background: var(--cell-gradient, var(--sakura));
  transform: translateY(-2px);
}

.process-list li:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.process-list li:nth-child(1) {
  --cell-gradient: var(--sakura);
}

.process-list li:nth-child(2) {
  --cell-gradient: var(--ocean);
  --cell-ink: #f7f6f3;
}

.process-list li:nth-child(3) {
  --cell-gradient: var(--matcha);
}

.process-list li:nth-child(4) {
  --cell-gradient: var(--sunrise);
  --cell-ink: #f7f6f3;
}

.process-list li:nth-child(5) {
  --cell-gradient: var(--inkwash);
  --cell-ink: #f7f6f3;
}

.process-list strong {
  display: block;
  margin-top: clamp(72px, 8vw, 134px);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 780;
  line-height: 0.92;
  word-spacing: 0;
}

.process-list p {
  margin-top: 18px;
  font-size: 16px;
}

.process-list li:hover span,
.process-list li:hover p {
  color: currentColor;
  opacity: 0.76;
}

.capabilities {
  padding-top: clamp(80px, 9vw, 128px);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.capability-grid span {
  display: flex;
  min-height: clamp(118px, 12vw, 188px);
  align-items: flex-end;
  padding: 18px;
  color: var(--ink);
  background: #efeee9;
  font-size: clamp(23px, 2.45vw, 38px);
  font-weight: 780;
  line-height: 0.96;
  word-spacing: 0;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.capability-grid span:hover {
  color: var(--capability-ink, #0b0b0b);
  background: var(--capability-gradient, var(--fog));
  transform: translateY(-2px);
}

.capability-grid span:nth-child(1) {
  --capability-gradient: var(--fog);
}

.capability-grid span:nth-child(2) {
  --capability-gradient: var(--sakura);
}

.capability-grid span:nth-child(3) {
  --capability-gradient: var(--seal);
  --capability-ink: #f7f6f3;
}

.capability-grid span:nth-child(4) {
  --capability-gradient: var(--ocean);
  --capability-ink: #f7f6f3;
}

.capability-grid span:nth-child(5) {
  --capability-gradient: var(--rice);
}

.capability-grid span:nth-child(6) {
  --capability-gradient: var(--plum);
  --capability-ink: #f7f6f3;
}

.capability-grid span:nth-child(7) {
  --capability-gradient: var(--sunrise);
  --capability-ink: #f7f6f3;
}

.capability-grid span:nth-child(8) {
  --capability-gradient: var(--matcha);
}

.capability-grid span:nth-child(9) {
  --capability-gradient: var(--kyoto);
  --capability-ink: #f7f6f3;
}

.capability-grid span:nth-child(10) {
  --capability-gradient: var(--twilight);
  --capability-ink: #f7f6f3;
}

.business-partners {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding-top: clamp(86px, 10vw, 150px);
  padding-bottom: clamp(86px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.business-partners .section-heading {
  width: min(100%, 1480px);
  margin-right: auto;
  margin-left: auto;
}

.business-partners::before {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 7px;
  content: "";
  background: linear-gradient(
    90deg,
    #f8cacb,
    #2d8abf,
    #c77dff,
    #e53845,
    #6f912b,
    #a7bbc7,
    #90cfbb
  );
  border-radius: 0 0 999px 999px;
}

.partner-carousel {
  display: grid;
  gap: 14px;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.logo-track-a {
  animation: logo-marquee 42s linear infinite;
}

.logo-track-b {
  animation: logo-marquee-reverse 38s linear infinite;
}

.logo-set {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.logo-card {
  display: grid;
  width: clamp(168px, 14vw, 238px);
  height: clamp(96px, 8.5vw, 132px);
  flex: 0 0 auto;
  place-items: center;
  padding: 24px 28px;
  background: #efeee9;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.logo-card img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  transition: filter 180ms ease;
}

.logo-card:hover {
  color: var(--logo-hover-ink, #0b0b0b);
  background: var(--logo-hover, var(--sakura));
  border-color: transparent;
  transform: translateY(-2px);
}

.logo-card:hover img {
  filter: var(--logo-hover-filter, grayscale(1) contrast(1.12));
}

.logo-track-a .logo-card:nth-child(1) {
  --logo-hover: var(--sakura);
}

.logo-track-a .logo-card:nth-child(2) {
  --logo-hover: var(--ocean);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-a .logo-card:nth-child(3) {
  --logo-hover: var(--camellia);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-a .logo-card:nth-child(4) {
  --logo-hover: var(--rice);
}

.logo-track-a .logo-card:nth-child(5) {
  --logo-hover: var(--inkwash);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-a .logo-card:nth-child(6) {
  --logo-hover: var(--twilight);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-a .logo-card:nth-child(7) {
  --logo-hover: var(--fog);
}

.logo-track-a .logo-card:nth-child(8) {
  --logo-hover: var(--matcha);
}

.logo-track-a .logo-card:nth-child(9) {
  --logo-hover: var(--yuzu);
}

.logo-track-a .logo-card:nth-child(10) {
  --logo-hover: var(--gold);
}

.logo-track-b .logo-card:nth-child(1) {
  --logo-hover: var(--plum);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-b .logo-card:nth-child(2) {
  --logo-hover: var(--pearl);
}

.logo-track-b .logo-card:nth-child(3) {
  --logo-hover: var(--kyoto);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-b .logo-card:nth-child(4) {
  --logo-hover: var(--aizome);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-b .logo-card:nth-child(5) {
  --logo-hover: var(--seal);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-b .logo-card:nth-child(6) {
  --logo-hover: var(--wood);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-b .logo-card:nth-child(7) {
  --logo-hover: var(--silver);
}

.logo-track-b .logo-card:nth-child(8) {
  --logo-hover: var(--zen);
}

.logo-track-b .logo-card:nth-child(9) {
  --logo-hover: var(--sunrise);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

@keyframes logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes logo-marquee-reverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.contact {
  width: 100%;
  max-width: none;
  padding: clamp(88px, 10vw, 158px) max(20px, calc((100vw - 1480px) / 2 + 20px));
  color: #f7f6f3;
  background:
    linear-gradient(90deg, rgba(247, 246, 243, 0.08) 1px, transparent 1px),
    #0b0b0b;
  background-size: 120px 100%;
  border-top: 0;
}

.contact .eyebrow {
  color: rgba(247, 246, 243, 0.58);
}

.contact-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.76fr);
  gap: 24px;
  margin-bottom: 50px;
}

.contact-heading h2 {
  max-width: 960px;
  margin: 0;
  color: inherit;
  font-size: clamp(58px, 6.8vw, 124px);
  font-weight: 780;
  line-height: 0.88;
  letter-spacing: 0;
  word-spacing: 0;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  background: rgba(247, 246, 243, 0.04);
  border-top: 1px solid rgba(247, 246, 243, 0.2);
  border-left: 1px solid rgba(247, 246, 243, 0.2);
}

.contact-details {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 470px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(247, 246, 243, 0.08), rgba(247, 246, 243, 0));
  border-right: 1px solid rgba(247, 246, 243, 0.2);
  border-bottom: 1px solid rgba(247, 246, 243, 0.2);
  font-style: normal;
}

.contact-details span {
  margin-top: 20px;
  color: rgba(247, 246, 243, 0.56);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.contact-details span:first-child {
  margin-top: 0;
}

.contact-details a {
  width: fit-content;
  color: #f7f6f3;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 780;
  line-height: 1.03;
  word-break: break-word;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid rgba(247, 246, 243, 0.2);
}

.contact-form label {
  display: grid;
  align-content: start;
  min-height: 128px;
  padding: 18px;
  border-right: 1px solid rgba(247, 246, 243, 0.2);
  border-bottom: 1px solid rgba(247, 246, 243, 0.2);
}

.contact-form label:nth-child(2n) {
  border-right: 0;
}

.contact-form label span {
  color: rgba(247, 246, 243, 0.56);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 24px;
  padding: 0;
  color: #f7f6f3;
  caret-color: #f7f6f3;
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 22px;
  font-weight: 680;
  line-height: 1.15;
  resize: vertical;
}

.contact-form textarea {
  min-height: 156px;
}

.contact-message {
  grid-column: 1 / -1;
}

.contact-form button {
  display: inline-flex;
  min-width: 176px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: start;
  margin: 18px;
  color: #0b0b0b;
  background: #f7f6f3;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 780;
}

.contact-form button svg {
  width: 16px;
  height: 16px;
}

.form-status {
  align-self: center;
  margin: 0 18px 0 0;
  color: rgba(247, 246, 243, 0.6);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  color: #f7f6f3;
  background: #0b0b0b;
  border-top: 1px solid rgba(247, 246, 243, 0.16);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .statement,
  .approach {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .statement h1,
  .statement-grid,
  .approach-lead h2,
  .approach-grid {
    grid-column: 1;
  }

  .statement h1,
  .section-heading h2,
  .approach-lead h2 {
    font-size: 58px;
    line-height: 0.94;
  }

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

  .jump-label {
    grid-column: 1 / -1;
    min-height: auto;
    padding-bottom: 18px;
  }

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

  .section-heading,
  .case-copy,
  .works-header,
  .contact-heading {
    grid-template-columns: 1fr;
  }

  .case-copy > p:not(.case-index) {
    grid-column: auto;
  }

  .case-tags {
    grid-column: auto;
    justify-content: flex-start;
  }

  .works-archive .case-copy {
    grid-template-columns: 34px 1fr;
  }

  .works-archive .case-copy > p:not(.case-index),
  .works-archive .case-tags {
    grid-column: 2;
  }

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

  .works-header h1,
  .contact-heading h2 {
    font-size: 58px;
    line-height: 0.94;
  }

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

  .contact-details {
    min-height: 0;
  }

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

@media (max-width: 760px) {
  .site-nav {
    top: 8px;
    width: calc(100% - 16px);
    height: 44px;
    padding: 0 14px;
  }

  .site-mark {
    width: 86px;
  }

  .hero-transition {
    height: 132svh;
  }

  .hero-pin {
    padding: calc(12px * var(--hero-progress));
  }

  .hero {
    min-height: 480px;
    transform: scale(calc(1 - (0.025 * var(--hero-progress))));
  }

  .hero-note {
    bottom: 24px;
  }

  .section-pad {
    padding: 64px 14px;
  }

  .statement {
    padding-top: 84px;
    padding-bottom: 64px;
  }

  .statement h1,
  .section-heading h2,
  .approach-lead h2,
  .works-header h1 {
    font-size: 42px;
    line-height: 0.96;
    word-spacing: 0;
  }

  .statement-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .statement-grid p,
  .case-copy p,
  .approach-grid p {
    font-size: 18px;
  }

  .approach {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .approach-grid article {
    min-height: 210px;
    padding: 16px;
  }

  .approach-grid strong {
    margin-top: 46px;
  }

  .jump {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .jump-card {
    min-height: 126px;
  }

  .work-filter {
    flex-wrap: nowrap;
    width: calc(100% + 28px);
    margin-left: -14px;
    padding: 0 14px 4px;
    overflow-x: auto;
  }

  .work-filter button {
    flex: 0 0 auto;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .case-frame {
    height: 76svh;
    min-height: 520px;
  }

  .case-copy {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px 14px;
  }

  .case-copy > p:not(.case-index),
  .case-tags {
    grid-column: 2;
  }

  .works-archive .case-frame {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

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

  .works-archive .case-copy h3 {
    font-size: 30px;
  }

  .signal-grid {
    inset: 8%;
    grid-template-columns: 1fr;
  }

  .art-panel {
    min-height: 220px;
    padding: 26px;
  }

  .art-panel strong,
  .ai-card strong {
    font-size: 40px;
  }

  .launch-stack {
    left: 8%;
  }

  .launch-stack span {
    width: 170px;
    height: 56px;
  }

  .device-shell {
    width: min(320px, calc(100% - 44px));
  }

  .device-shell strong {
    font-size: 30px;
  }

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

  .process-list li {
    min-height: 190px;
  }

  .process-list strong {
    margin-top: 42px;
  }

  .capability-grid span {
    min-height: 82px;
  }

  .business-partners::before {
    right: 14px;
    left: 14px;
  }

  .logo-card {
    width: 158px;
    height: 92px;
    padding: 18px 20px;
  }

  .logo-card img {
    max-height: 42px;
  }

  .contact-heading h2 {
    font-size: 42px;
    line-height: 0.96;
  }

  .contact-details {
    padding: 16px;
  }

  .contact-details a {
    font-size: 20px;
  }

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

  .contact-form label,
  .contact-form label:nth-child(2n) {
    min-height: 104px;
    border-right: 0;
  }

  .contact-form input,
  .contact-form textarea {
    margin-top: 16px;
    font-size: 18px;
  }

  .contact-form button {
    margin: 14px;
  }

  .form-status {
    margin: 0 14px 14px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

  .hero,
  .jump-card {
    transition: none;
  }

  .case-art,
  .case-image {
    transform: none !important;
  }

  .logo-track {
    animation: none;
  }
}
