:root {
  --paper: #f3f4f6;
  --paper-bright: #fbfbfd;
  --ink: #090a0f;
  --ink-soft: #0e0f16;
  --silver: #c9ccd6;
  --silver-dark: #8e929f;
  --violet: #5d20d2;
  --violet-bright: #7b3bee;
  --violet-light: #b88cff;
  --violet-deep: #210044;
  --line-light: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(9, 10, 15, 0.16);
  --pad: clamp(20px, 5vw, 88px);
  --section-y: clamp(88px, 11vw, 180px);
  --header-height: 68px;
  --maxw: 1600px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-heavy: cubic-bezier(0.65, 0.02, 0.22, 1);
  --display: "Space Grotesk", "Arial Narrow", sans-serif;
  --body: "Archivo", Arial, sans-serif;
}

.lang-ko {
  --display: "Noto Sans KR", "Space Grotesk", "Arial Narrow", sans-serif;
  --body: "Noto Sans KR", "Archivo", Arial, sans-serif;
}

.lang-ko h1,
.lang-ko h2,
.lang-ko h3,
.lang-ko p,
.lang-ko li,
.lang-ko a,
.lang-ko button,
.lang-ko label {
  word-break: keep-all;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: var(--ink);
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 280px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button {
  border: 0;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

::selection {
  background: var(--violet-light);
  color: var(--ink);
}

:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--violet-light);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-pad {
  padding: var(--section-y) var(--pad);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 240ms var(--ease),
    background 240ms var(--ease),
    border-color 240ms var(--ease),
    transform 240ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-dark:hover {
  background: var(--violet);
}

.button-light {
  background: white;
  color: var(--ink);
}

.button-light:hover {
  background: var(--violet-light);
}

.button-violet {
  background: var(--violet);
  color: white;
}

.button-violet:hover {
  background: var(--violet-bright);
}

.button-outline {
  border-color: currentColor;
  background: transparent;
}

.button-outline:hover {
  border-color: var(--violet-light);
  background: var(--violet-light);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 200ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  color: var(--ink);
  transition:
    min-height 300ms var(--ease),
    color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}

.site-header.is-scrolled {
  min-height: 60px;
  background: rgba(243, 244, 246, 0.9);
  box-shadow: 0 1px 0 var(--line-dark);
  color: var(--ink);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle {
  position: relative;
  z-index: 103;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-toggle a {
  display: grid;
  min-width: 30px;
  min-height: 40px;
  place-items: center;
  border-radius: 999px;
  color: inherit;
  opacity: 0.55;
  text-decoration: none;
}

.language-toggle a[aria-current="true"] {
  background: var(--ink);
  color: white;
  opacity: 1;
}

.page-worlds .site-header:not(.is-scrolled) .language-toggle a[aria-current="true"],
.page-project-world .site-header:not(.is-scrolled) .language-toggle a[aria-current="true"],
.page-404 .site-header:not(.is-scrolled) .language-toggle a[aria-current="true"],
.site-ready .site-header:has(.site-nav.is-open) .language-toggle a[aria-current="true"] {
  background: white;
  color: var(--ink);
}

.page-worlds .site-header:not(.is-scrolled),
.page-project-world .site-header:not(.is-scrolled),
.page-404 .site-header:not(.is-scrolled) {
  color: white;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 16px;
  height: 16px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ink);
}

.brand-mark::after {
  position: absolute;
  top: 3px;
  right: -3px;
  width: 14px;
  height: 10px;
  border-radius: 50%;
  background: var(--violet-light);
  content: "";
  transform: rotate(-24deg);
}

.page-worlds .site-header:not(.is-scrolled) .brand-mark,
.page-project-world .site-header:not(.is-scrolled) .brand-mark,
.page-404 .site-header:not(.is-scrolled) .brand-mark {
  background: white;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 34px);
}

.nav-link,
.motion-toggle {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  background: transparent;
  color: inherit;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.motion-toggle {
  min-width: 90px;
  padding-right: 12px;
  padding-left: 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.65;
}

.motion-toggle:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 4vw;
  overflow: hidden;
  padding: 130px var(--pad) 92px;
  background:
    radial-gradient(circle at 72% 42%, rgba(184, 140, 255, 0.13), transparent 31%),
    radial-gradient(circle at 18% 4%, #fff, transparent 42%),
    var(--paper-bright);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(9, 10, 15, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 10, 15, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 75%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 3;
  isolation: isolate;
  max-width: 980px;
}

.hero-copy::before {
  position: absolute;
  z-index: -1;
  inset: -8% -10% -10% -4%;
  background: radial-gradient(ellipse at 35% 52%, rgba(251, 251, 253, 0.96) 0 48%, rgba(251, 251, 253, 0.72) 66%, transparent 86%);
  content: "";
  filter: blur(10px);
  pointer-events: none;
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(55px, 7.7vw, 140px);
  line-height: 0.83;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span:last-child {
  color: var(--violet);
}

.hero-description {
  max-width: 620px;
  margin-bottom: 34px;
  color: #454750;
  font-size: clamp(17px, 1.4vw, 23px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-actions .text-link {
  min-height: 44px;
}

.hero-object {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  perspective: 1000px;
  transform: translateX(clamp(16px, 2.4vw, 38px));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.62) 14%, #000 36%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.62) 14%, #000 36%);
}

.optical-capsule {
  position: relative;
  width: min(34vw, 465px);
  min-width: 310px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(9, 10, 15, 0.22);
  border-radius: 48% 48% 45% 45% / 43% 43% 52% 52%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(201, 204, 214, 0.13) 38%, rgba(255, 255, 255, 0.48) 70%),
    rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 18px 0 34px rgba(255, 255, 255, 0.78),
    inset -18px 0 30px rgba(93, 32, 210, 0.12),
    inset 0 -22px 38px rgba(9, 10, 15, 0.12),
    0 42px 75px rgba(31, 20, 53, 0.2);
  transform: rotateY(-7deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 700ms var(--ease);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-object:hover .optical-capsule {
  transform: rotateY(2deg) rotateX(-2deg) translateY(-8px);
}

.capsule-shine {
  position: absolute;
  z-index: 5;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.78) 38%, transparent 51%),
    radial-gradient(ellipse at 34% 5%, rgba(255, 255, 255, 0.96), transparent 24%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.violet-liquid {
  position: absolute;
  background: linear-gradient(145deg, var(--violet-light), var(--violet) 48%, var(--violet-deep));
  filter: saturate(1.15);
}

.liquid-a {
  right: -13%;
  bottom: -4%;
  width: 112%;
  height: 62%;
  border-radius: 64% 40% 0 0 / 32% 39% 0 0;
  box-shadow: inset 28px 26px 55px rgba(255, 255, 255, 0.26);
  transform: rotate(-9deg);
  animation: liquidDrift 10s var(--ease-heavy) infinite alternate;
}

.liquid-b {
  top: 24%;
  left: -27%;
  width: 78%;
  height: 43%;
  border-radius: 50%;
  opacity: 0.68;
  filter: blur(2px);
  transform: rotate(18deg);
  animation: liquidDrift 13s var(--ease-heavy) -4s infinite alternate-reverse;
}

@keyframes liquidDrift {
  0% {
    transform: translate(-2%, 4%) rotate(-9deg) scale(1);
  }
  100% {
    transform: translate(5%, -5%) rotate(3deg) scale(1.08);
  }
}

.zipper {
  position: absolute;
  z-index: 7;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 24px;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 7px,
    rgba(249, 250, 253, 0.92) 7px 14px,
    rgba(65, 67, 76, 0.76) 14px 17px
  );
  filter: drop-shadow(0 2px 2px rgba(9, 10, 15, 0.35));
  transform: translateX(-50%);
}

.zipper::before,
.zipper::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.75);
  content: "";
}

.zipper::before {
  left: 2px;
}

.zipper::after {
  right: 2px;
}

.zipper-pull {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 40px;
  height: 60px;
  border: 5px solid #d9dbe2;
  border-radius: 18px 18px 24px 24px;
  background: linear-gradient(90deg, #8e929f, #fff 40%, #b5b7c0);
  box-shadow: 0 10px 14px rgba(9, 10, 15, 0.25);
  transform: translateX(-50%);
}

.zipper-pull::after {
  position: absolute;
  inset: 12px 9px;
  border-radius: 999px;
  background: rgba(9, 10, 15, 0.54);
  content: "";
}

.capsule-label {
  position: absolute;
  z-index: 8;
  right: 25px;
  bottom: 23px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(9, 10, 15, 0.32);
  color: white;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.14em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-shadow {
  width: 68%;
  height: 30px;
  margin-top: 28px;
  border-radius: 50%;
  background: rgba(28, 20, 45, 0.23);
  filter: blur(16px);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: var(--pad);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 36px;
  overflow: hidden;
  background: rgba(9, 10, 15, 0.15);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--ink);
  content: "";
  animation: scrollCue 2.2s var(--ease) infinite;
}

@keyframes scrollCue {
  0% {
    transform: translateY(-100%);
  }
  55%,
  100% {
    transform: translateY(100%);
  }
}

.section-heading {
  display: grid;
  max-width: var(--maxw);
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: 30px;
  margin: 0 auto clamp(56px, 7vw, 110px);
}

.section-heading h2 {
  max-width: 1050px;
  margin-bottom: 0;
  font-size: clamp(46px, 6.6vw, 112px);
}

.section-heading .section-description {
  max-width: 590px;
  margin: 26px 0 0;
  color: currentColor;
  font-size: 17px;
  opacity: 0.68;
}

.divisions {
  background: var(--silver);
}

.division-grid {
  display: grid;
  max-width: var(--maxw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
}

.division-panel {
  position: relative;
  min-height: 690px;
  padding: clamp(34px, 5vw, 78px);
}

.division-panel h3 {
  max-width: 620px;
  margin: 100px 0 45px;
  font-size: clamp(35px, 4vw, 67px);
  line-height: 1;
}

.division-panel ul {
  display: grid;
  gap: 0;
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
}

.division-panel li {
  padding: 13px 0;
  border-top: 1px solid currentColor;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.division-index {
  position: absolute;
  top: 30px;
  right: 34px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #3e4048;
}

.division-systems {
  background: var(--paper-bright);
}

.division-worlds {
  background:
    radial-gradient(circle at 82% 10%, rgba(123, 59, 238, 0.28), transparent 30%),
    var(--ink);
  color: white;
}

.division-worlds .division-index {
  color: #e2e3e8;
}

.selected-work {
  background:
    radial-gradient(circle at 70% 0, rgba(93, 32, 210, 0.26), transparent 30%),
    var(--ink);
  color: white;
}

.project-grid {
  display: grid;
  max-width: var(--maxw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(46px, 6vw, 92px) clamp(22px, 3.5vw, 58px);
  margin: 0 auto;
}

.project-card {
  min-width: 0;
}

.project-card-link {
  display: block;
  text-decoration: none;
}

.project-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #171820;
}

.project-card-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  content: "";
  pointer-events: none;
}

.project-card-media img,
.project-card-media picture {
  width: 100%;
  height: 100%;
}

.project-card-media img {
  object-fit: cover;
  object-position: top center;
  transition: transform 700ms var(--ease);
}

.project-card-link:hover .project-card-media img,
.project-card-link:focus-visible .project-card-media img {
  transform: scale(1.025);
}

.project-card-action {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(9, 10, 15, 0.78);
  color: white;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 250ms ease,
    transform 250ms var(--ease);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.project-card-link:hover .project-card-action,
.project-card-link:focus-visible .project-card-action {
  opacity: 1;
  transform: translateY(0);
}

.project-card-copy {
  padding-top: 20px;
}

.project-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.project-card h3 {
  margin-bottom: 10px;
  font-size: clamp(29px, 3vw, 48px);
}

.project-card-copy > p {
  max-width: 590px;
  margin-bottom: 22px;
  color: currentColor;
  opacity: 0.65;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  opacity: 0.68;
}

.status {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 24px;
  align-items: center;
  gap: 7px;
  padding: 4px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
}

.status::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.status-live {
  color: #0b6840;
}

.status-building {
  color: #5523b8;
}

.status-exploring {
  color: #74275f;
}

.selected-work .status-live,
.dark-section .status-live,
.case-hero .status-live {
  color: #a4ffcf;
}

.selected-work .status-building,
.dark-section .status-building,
.case-hero .status-building {
  color: var(--violet-light);
}

.selected-work .status-exploring,
.dark-section .status-exploring,
.case-hero .status-exploring {
  color: #f0caff;
}

.section-link {
  display: flex;
  max-width: var(--maxw);
  justify-content: flex-end;
  margin: clamp(55px, 7vw, 110px) auto 0;
}

.services {
  background: var(--paper-bright);
}

.service-list {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: minmax(60px, 0.25fr) minmax(0, 1fr);
  gap: 26px;
  padding: 34px 0;
  border-top: 1px solid var(--line-dark);
}

.service-list li > span {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.service-list h3 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 62px);
}

.service-list p {
  max-width: 620px;
  margin-bottom: 0;
  color: #555861;
}

.currently {
  padding-top: clamp(78px, 9.5vw, 150px);
  padding-bottom: clamp(78px, 9.5vw, 150px);
  background:
    radial-gradient(circle at 12% 40%, rgba(184, 140, 255, 0.2), transparent 29%),
    linear-gradient(135deg, #d9dbe2, #b9bcc6);
}

.current-list {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.current-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 116px auto 68px;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(9, 10, 15, 0.36);
}

.current-number,
.current-stage,
.current-date,
.current-item > a {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.current-item h3 {
  margin-bottom: 7px;
  font-size: clamp(28px, 3vw, 45px);
}

.current-update {
  max-width: 720px;
  margin-bottom: 0;
  color: #474952;
}

.current-stage {
  margin: 0 0 10px;
  color: var(--violet-deep);
}

.current-date {
  margin: 0;
  color: #3d3f47;
  white-space: nowrap;
}

.current-item > a {
  text-decoration: none;
}

.studio-intro {
  background: var(--paper-bright);
}

.studio-intro > .eyebrow,
.studio-intro-grid {
  max-width: var(--maxw);
  margin-right: auto;
  margin-left: auto;
}

.studio-intro-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: 8vw;
}

.studio-intro h2 {
  margin-bottom: 0;
  font-size: clamp(50px, 7.6vw, 130px);
}

.studio-intro-grid > div p {
  max-width: 600px;
  margin-bottom: 34px;
  font-size: clamp(18px, 1.7vw, 25px);
}

.final-cta {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  padding: clamp(110px, 13vw, 210px) var(--pad) 100px;
  background:
    radial-gradient(circle at 78% 40%, rgba(123, 59, 238, 0.38), transparent 29%),
    var(--ink);
  color: white;
}

.final-cta > *:not(.cta-orbit) {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
}

.final-cta h2 {
  margin-bottom: 30px;
  font-size: clamp(58px, 9.6vw, 166px);
}

.final-cta > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: var(--silver);
  font-size: 19px;
}

.cta-email {
  display: block;
  width: fit-content;
  margin-top: 30px;
  color: var(--silver);
  font-size: 13px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-orbit {
  position: absolute;
  top: 16%;
  right: -5vw;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.cta-orbit::before,
.cta-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: inherit;
  content: "";
}

.cta-orbit::before {
  inset: 14%;
}

.cta-orbit::after {
  inset: 30%;
}

.cta-orbit span {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 10%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--violet-light);
  box-shadow: 0 0 80px 30px rgba(123, 59, 238, 0.5);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  padding: 80px var(--pad) 38px;
  border-top: 1px solid var(--line-light);
  background: var(--ink);
  color: white;
}

.footer-main,
.footer-links,
.footer-meta {
  max-width: var(--maxw);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.footer-main p {
  color: var(--silver);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  padding: 9px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-meta {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
  color: var(--silver);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Shared internal-page hero */
.page-hero {
  position: relative;
  display: flex;
  min-height: 74svh;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 150px var(--pad) clamp(60px, 8vw, 120px);
  background: var(--paper-bright);
}

.page-hero > * {
  position: relative;
  z-index: 2;
  width: min(100%, var(--maxw));
  margin-right: auto;
  margin-left: auto;
}

.page-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(82px, 16vw, 260px);
  line-height: 0.76;
}

.page-hero > p:last-of-type {
  max-width: 730px;
  margin-bottom: 0;
  color: #4e5059;
  font-size: clamp(18px, 2vw, 29px);
  line-height: 1.35;
}

.index-hero {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(9, 10, 15, 0.08) 50%, transparent 50.1%),
    radial-gradient(circle at 74% 20%, rgba(184, 140, 255, 0.28), transparent 26%),
    var(--paper-bright);
}

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

.filter-panel {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}

.filter-group {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line-dark);
}

.filter-group h2 {
  margin: 7px 0 0;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-buttons button {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: transparent;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.filter-buttons button:hover {
  border-color: var(--ink);
}

.filter-buttons button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.index-summary {
  display: flex;
  max-width: var(--maxw);
  align-items: center;
  justify-content: space-between;
  margin: 52px auto 25px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.index-summary p {
  margin-bottom: 0;
}

.reset-link,
.text-button {
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-transform: uppercase;
}

.index-grid [hidden] {
  display: none;
}

.empty-state {
  max-width: var(--maxw);
  min-height: 430px;
  margin: 0 auto;
  padding: 70px 0;
  border-top: 1px solid var(--line-dark);
}

.empty-state h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 90px);
}

.empty-state p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #555861;
}

.noscript-note {
  max-width: var(--maxw);
  margin: 30px auto 0;
  padding: 16px;
  border: 1px solid var(--line-dark);
}

/* Division pages */
.division-hero h1 {
  z-index: 2;
}

.systems-hero {
  background:
    radial-gradient(circle at 75% 40%, rgba(184, 140, 255, 0.3), transparent 27%),
    linear-gradient(135deg, white, var(--silver));
}

.hero-rule {
  position: absolute;
  z-index: 1;
  top: 21%;
  right: 8%;
  width: min(34vw, 500px);
  aspect-ratio: 1;
  border: 1px solid rgba(9, 10, 15, 0.17);
  border-radius: 50%;
}

.hero-rule::before,
.hero-rule::after {
  position: absolute;
  border: 1px solid rgba(9, 10, 15, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-rule::before {
  inset: 18%;
}

.hero-rule::after {
  inset: 37%;
  background: var(--violet);
}

.worlds-hero {
  min-height: 90svh;
  background:
    radial-gradient(circle at 70% 44%, rgba(123, 59, 238, 0.52), transparent 24%),
    var(--ink);
  color: white;
}

.worlds-hero > p:last-of-type {
  color: var(--silver);
}

.worlds-portal {
  position: absolute;
  z-index: 0;
  top: 12%;
  right: 5%;
  width: min(49vw, 710px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.worlds-portal span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.worlds-portal span:nth-child(1) {
  inset: 14%;
}

.worlds-portal span:nth-child(2) {
  inset: 30%;
}

.worlds-portal span:nth-child(3) {
  inset: 45%;
  background: var(--violet-light);
  box-shadow: 0 0 90px 45px rgba(93, 32, 210, 0.42);
}

.division-intro {
  background: var(--paper-bright);
}

.division-intro > .eyebrow,
.editorial-split {
  max-width: var(--maxw);
  margin-right: auto;
  margin-left: auto;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: start;
  gap: clamp(40px, 8vw, 150px);
}

.editorial-split h2 {
  margin-bottom: 0;
  font-size: clamp(47px, 7vw, 118px);
}

.editorial-split > p,
.editorial-split > div > p {
  max-width: 640px;
  font-size: clamp(18px, 1.65vw, 25px);
}

.division-projects {
  background: var(--paper);
}

.compact-services li {
  padding-top: 27px;
  padding-bottom: 27px;
}

.working-method {
  background: var(--silver);
}

.method-grid,
.format-grid {
  display: grid;
  max-width: var(--maxw);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  padding: 0;
  background: rgba(9, 10, 15, 0.18);
  list-style: none;
}

.method-grid li,
.format-grid article {
  min-height: 330px;
  padding: 28px;
  background: var(--paper-bright);
}

.method-grid span,
.format-grid span {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.method-grid h3,
.format-grid h3 {
  margin: 120px 0 15px;
  font-size: clamp(28px, 2.8vw, 44px);
}

.method-grid p,
.format-grid p {
  margin-bottom: 0;
  color: #5a5c65;
}

.dark-section {
  background: var(--ink);
  color: white;
}

.dark-section .section-description,
.dark-section .editorial-split p,
.dark-section .project-card-copy > p {
  color: var(--silver);
}

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

.worlds-grid .project-card-link {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 35px;
}

.formats .format-grid {
  background: var(--line-light);
}

.formats .format-grid article {
  background: #11121a;
}

.formats .format-grid p {
  color: var(--silver);
}

.worlds-current {
  padding-bottom: 180px;
}

.worlds-current .editorial-split {
  padding: 45px 0 80px;
  border-top: 1px solid var(--line-light);
}

.worlds-current .editorial-split > div p {
  color: var(--silver);
}

/* Studio */
.studio-hero {
  background:
    radial-gradient(ellipse at 75% 33%, rgba(123, 59, 238, 0.24), transparent 25%),
    linear-gradient(145deg, white, var(--silver));
}

.studio-statement {
  background: var(--ink);
  color: white;
}

.studio-statement > * {
  max-width: var(--maxw);
  margin-right: auto;
  margin-left: auto;
}

.studio-statement h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 8vw, 136px);
}

.studio-does {
  background: var(--paper-bright);
}

/* Resume */
.resume-hero {
  background:
    radial-gradient(circle at 82% 28%, rgba(123, 59, 238, 0.2), transparent 28%),
    linear-gradient(145deg, var(--paper-bright), var(--silver));
}

.resume-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.resume-sheet {
  background: var(--paper-bright);
}

.resume-profile,
.resume-section {
  display: grid;
  width: min(100%, var(--maxw));
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 150px);
  margin-inline: auto;
  border-top: 1px solid var(--line-dark);
}

.resume-profile {
  align-items: start;
  padding: 0 0 clamp(70px, 10vw, 140px);
  border-top: 0;
}

.resume-profile h2,
.resume-content > h2 {
  margin: 0;
}

.resume-profile h2 {
  font-size: clamp(44px, 6vw, 96px);
}

.resume-profile > div:last-child {
  max-width: 780px;
  font-size: clamp(18px, 1.8vw, 25px);
}

.resume-section {
  padding: clamp(58px, 8vw, 110px) 0;
}

.resume-label {
  margin: 0;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.resume-content > h2 {
  margin-bottom: clamp(36px, 6vw, 76px);
  font-size: clamp(42px, 6vw, 88px);
}

.resume-entry {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(110px, 0.3fr) minmax(260px, 1fr);
  gap: clamp(18px, 3vw, 48px);
  padding: 30px 0;
  border-top: 1px solid var(--line-dark);
}

.resume-entry h3 {
  margin: 0 0 7px;
  font-size: clamp(20px, 2vw, 29px);
}

.resume-entry p {
  margin: 0;
  color: #4d5059;
}

.resume-entry time {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.resume-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.resume-tags li {
  padding: 12px 17px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.resume-credentials {
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.resume-credentials li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.resume-credentials span {
  color: #4d5059;
}

.other-practices {
  background: var(--paper-bright);
}

.practice-grid {
  display: grid;
  width: min(100%, var(--maxw));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-inline: auto;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.practice-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 58px);
  background: var(--paper-bright);
}

.practice-card h3 {
  margin: auto 0 24px;
  overflow-wrap: anywhere;
  font-size: clamp(34px, 4vw, 64px);
}

.practice-card > p:not(.eyebrow) {
  min-height: 4.8em;
  color: #4d5059;
}

.practice-card .text-link {
  align-self: flex-start;
}

.practice-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.capability-cloud {
  display: flex;
  max-width: var(--maxw);
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.capability-cloud li {
  padding: 20px 25px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 40px);
  letter-spacing: -0.035em;
}

.process {
  background: var(--silver);
}

.process-list {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 100px minmax(220px, 0.55fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(9, 10, 15, 0.34);
}

.process-list span {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.process-list h3 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 62px);
}

.process-list p {
  margin-bottom: 0;
  color: #50525b;
}

.about-founder {
  background: var(--paper-bright);
}

.about-founder > .eyebrow {
  max-width: var(--maxw);
  margin-right: auto;
  margin-left: auto;
}

/* Start form */
.start-hero {
  min-height: 86svh;
  background:
    radial-gradient(circle at 76% 42%, rgba(184, 140, 255, 0.45), transparent 26%),
    var(--paper-bright);
}

.start-hero h1 {
  font-size: clamp(78px, 14vw, 230px);
}

.project-form-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 140px);
  background: var(--silver);
}

.form-intro {
  max-width: 480px;
}

.form-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(39px, 4.5vw, 72px);
}

.form-intro > p:not(.eyebrow) {
  color: #4f515a;
}

.direct-email {
  margin-top: 34px;
}

.direct-email span {
  color: #44464e;
  font-size: 0.9em;
}

.project-form {
  display: grid;
  max-width: 940px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 28px 20px;
}

.form-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-field label span:not(.optional) {
  color: var(--violet);
}

.optional {
  color: #3d3f46;
  font-size: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(9, 10, 15, 0.45);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.24);
  outline: 0;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.form-field input,
.form-field select {
  height: 54px;
  padding: 0 12px;
}

.form-field textarea {
  min-height: 156px;
  resize: vertical;
  padding: 15px 12px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--violet);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 0 var(--violet);
}

.form-field [aria-invalid="true"] {
  border-color: #8e1238;
  box-shadow: 0 2px 0 #8e1238;
}

.field-error,
.field-hint {
  margin: 7px 0 0;
  font-size: 11px;
  line-height: 1.4;
}

.field-error {
  min-height: 16px;
  color: #780d31;
  font-weight: 600;
}

.field-hint {
  color: #45474f;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
}

.form-submit button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.68;
}

.form-privacy {
  margin: 0;
  color: #45474f;
  font-size: 11px;
}

.form-status {
  padding: 16px;
  border-left: 3px solid var(--violet);
  background: rgba(255, 255, 255, 0.4);
}

.form-status.is-error {
  border-color: #8e1238;
}

.form-draft {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-draft[hidden],
.form-status[hidden] {
  display: none;
}

/* Project detail */
.case-study {
  background: var(--paper-bright);
}

.case-hero {
  min-height: 86svh;
  padding: 150px var(--pad) 80px;
  background:
    radial-gradient(circle at 78% 38%, rgba(123, 59, 238, 0.35), transparent 26%),
    var(--ink);
  color: white;
}

.case-world .case-hero {
  background:
    radial-gradient(circle at 70% 30%, rgba(184, 140, 255, 0.54), transparent 25%),
    linear-gradient(145deg, var(--violet-deep), var(--ink) 70%);
}

.case-experiment .case-hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(93, 32, 210, 0.4), transparent 28%),
    var(--ink);
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.case-hero > * {
  max-width: var(--maxw);
  margin-right: auto;
  margin-left: auto;
}

.case-kicker {
  display: flex;
  gap: 12px;
  margin-bottom: clamp(80px, 11vw, 180px);
  color: var(--silver);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.case-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.case-title-row h1 {
  min-width: 0;
  max-width: 1200px;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  font-size: clamp(64px, 11vw, 180px);
}

.case-findyourmir .case-title-row h1 {
  font-size: clamp(54px, 9vw, 145px);
}

.case-summary {
  max-width: 880px;
  margin-bottom: clamp(50px, 7vw, 90px);
  color: var(--silver);
  font-size: clamp(19px, 2.2vw, 32px);
}

.case-facts {
  display: grid;
  grid-template-columns: 0.65fr 0.65fr 0.65fr 1.7fr;
  gap: 1px;
  margin-bottom: 0;
  background: var(--line-light);
}

.case-facts div {
  min-width: 0;
  padding: 20px;
  background: rgba(9, 10, 15, 0.7);
}

.case-facts dt {
  margin-bottom: 9px;
  color: var(--silver);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.case-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
}

.case-media {
  width: 100%;
  max-height: 88svh;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  background: var(--ink-soft);
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.case-luck-juup .case-media {
  background: #f2b929;
}

.case-luck-juup .case-media img {
  object-fit: contain;
  object-position: center;
}

.case-gallery {
  padding: clamp(72px, 10vw, 150px) var(--pad);
  background: var(--ink);
  color: var(--paper);
}

.case-gallery-heading,
.case-gallery-grid {
  width: min(100%, var(--maxw));
  margin-inline: auto;
}

.case-gallery-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 110px);
  margin-bottom: clamp(38px, 6vw, 80px);
}

.case-gallery-heading h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 100px);
}

.case-gallery-heading > p:last-child {
  grid-column: 2;
  max-width: 620px;
  margin: 0;
  color: #b8bac3;
}

.case-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 30px);
}

.case-gallery-item {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050b16;
}

.case-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.case-build-record {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 8vw, 140px);
  padding: clamp(72px, 10vw, 150px) var(--pad);
  background: var(--violet);
  color: white;
}

.case-build-record-heading,
.case-build-metrics,
.case-build-record > .text-link {
  min-width: 0;
}

.case-build-record-heading h2 {
  margin: 0;
  font-size: clamp(46px, 7vw, 108px);
}

.case-build-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: end;
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.35);
}

.case-build-metrics div {
  padding: clamp(24px, 4vw, 54px);
  background: rgba(25, 12, 55, 0.68);
}

.case-build-metrics dt {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.case-build-metrics dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 108px);
  font-weight: 600;
  letter-spacing: -0.06em;
}

.case-build-record > .text-link {
  grid-column: 2;
  justify-self: start;
  color: white;
}

.case-body {
  display: grid;
  max-width: var(--maxw);
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 150px);
  margin: 0 auto;
  padding: var(--section-y) var(--pad);
}

.case-services {
  align-self: start;
  position: sticky;
  top: 100px;
}

.case-services ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-services li {
  padding: 10px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
}

.case-sections {
  grid-column: 2;
}

.case-section {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 20px;
  padding: 50px 0;
  border-top: 1px solid var(--line-dark);
}

.case-number {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.case-section h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 78px);
}

.case-section div p {
  max-width: 810px;
  margin-bottom: 0;
  color: #4d5059;
  font-size: clamp(17px, 1.5vw, 21px);
}

.verdict,
.case-links {
  display: flex;
  grid-column: 2;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px 0;
  border-top: 1px solid var(--line-dark);
}

.verdict span {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.verdict strong {
  color: var(--violet);
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 70px);
  letter-spacing: -0.05em;
}

.case-links .eyebrow,
.case-links p {
  margin-bottom: 0;
}

.case-links-muted p:last-child {
  max-width: 520px;
  color: #5a5c65;
}

.project-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--ink);
  color: white;
}

.project-pagination a {
  min-width: 0;
  padding: clamp(45px, 6vw, 90px) var(--pad);
  text-decoration: none;
}

.project-pagination a + a {
  border-left: 1px solid var(--line-light);
  text-align: right;
}

.project-pagination span {
  display: block;
  margin-bottom: 17px;
  color: var(--silver);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.project-pagination strong {
  display: block;
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(24px, 3.8vw, 60px);
  font-weight: 500;
  letter-spacing: -0.05em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-pagination a:hover strong {
  color: var(--violet-light);
}

/* 404 */
.page-404 .site-footer {
  display: none;
}

.not-found {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-content: center;
  overflow: hidden;
  padding: 120px var(--pad) 70px;
  background:
    radial-gradient(circle at 50% 35%, rgba(123, 59, 238, 0.42), transparent 33%),
    var(--ink);
  color: white;
  text-align: center;
}

.not-found > *:not(.error-code) {
  position: relative;
  z-index: 2;
  margin-right: auto;
  margin-left: auto;
}

.error-code {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--display);
  font-size: min(45vw, 640px);
  font-weight: 700;
  letter-spacing: -0.08em;
  transform: translate(-50%, -51%);
}

.not-found h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(46px, 7vw, 106px);
}

.not-found > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: var(--silver);
}

/* Progressive motion */
.js.motion-ready:not([data-motion="reduce"]) .reveal:not(.is-visible) {
  opacity: 1;
  transform: translateY(26px);
}

.reveal {
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .header-controls {
    gap: 8px;
  }

  .site-nav {
    gap: 12px;
  }

  .nav-link,
  .motion-toggle {
    font-size: 11px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  }

  .hero h1 {
    font-size: clamp(54px, 7.6vw, 92px);
  }

  .division-panel {
    min-height: 610px;
  }

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

@media (max-width: 900px) {
  :root {
    --section-y: clamp(78px, 15vw, 120px);
  }

  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    min-height: 68px;
  }

  .site-ready .menu-toggle {
    position: relative;
    z-index: 103;
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0 10px 10px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-family: var(--display);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.13em;
  }

  .menu-toggle-lines {
    display: grid;
    width: 22px;
    gap: 5px;
  }

  .menu-toggle-lines i {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 240ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-ready .site-nav {
    position: fixed;
    z-index: 102;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 100px var(--pad) 60px;
    background:
      radial-gradient(circle at 85% 10%, rgba(123, 59, 238, 0.42), transparent 31%),
      var(--ink);
    color: white;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 240ms ease,
      transform 350ms var(--ease);
  }

  .site-ready .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    min-height: 52px;
    justify-content: flex-start;
    padding: 10px 0;
    font-size: clamp(31px, 8vw, 54px);
    font-weight: 500;
    letter-spacing: -0.045em;
  }

  .nav-link::after {
    bottom: 4px;
  }

  .motion-toggle {
    min-width: 120px;
    min-height: 44px;
    margin-top: 25px;
    padding: 11px 14px;
  }

  .site-ready .site-header:has(.site-nav.is-open) {
    color: white;
  }

  .site-ready .site-header:has(.site-nav.is-open) .brand-mark {
    background: white;
  }

  html:not(.site-ready) .site-header {
    position: relative;
    flex-wrap: wrap;
    gap: 4px 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  html:not(.site-ready) .header-controls {
    width: 100%;
    flex-wrap: wrap;
  }

  html:not(.site-ready) .site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 4px 16px;
  }

  html:not(.site-ready) .motion-toggle {
    margin-top: 0;
  }

  .hero {
    min-height: 860px;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    padding-top: 120px;
  }

  .resume-profile,
  .resume-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .resume-entry {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .resume-credentials li {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

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

  .hero h1 {
    font-size: clamp(56px, 12.3vw, 106px);
  }

  .hero-object {
    position: absolute;
    right: -9vw;
    bottom: -120px;
    opacity: 0.6;
  }

  .optical-capsule {
    width: 300px;
    min-width: 0;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-heading h2 {
    font-size: clamp(45px, 10vw, 78px);
  }

  .division-grid,
  .project-grid,
  .practice-grid,
  .studio-intro-grid,
  .editorial-split,
  .project-form-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .practice-card {
    min-height: 310px;
  }

  .division-panel {
    min-height: 510px;
  }

  .project-grid {
    gap: 62px;
  }

  .current-item {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: start;
  }

  .current-date {
    grid-column: 2;
  }

  .current-item > .status {
    grid-column: 3;
    grid-row: 1;
  }

  .current-item > a {
    grid-column: 3;
    grid-row: 2;
  }

  .studio-intro-grid {
    gap: 50px;
  }

  .cta-orbit {
    width: 65vw;
    opacity: 0.6;
  }

  .page-hero {
    min-height: 67svh;
  }

  .page-hero h1 {
    font-size: clamp(78px, 19vw, 160px);
  }

  .worlds-grid .project-card-link {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-list li {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .process-list p {
    grid-column: 2;
  }

  .project-form-section {
    gap: 70px;
  }

  .form-intro {
    max-width: 650px;
  }

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

  .case-services {
    position: static;
  }

  .case-sections,
  .verdict,
  .case-links {
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  :root {
    --pad: 20px;
  }

  body {
    font-size: 15px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 104px;
    padding-bottom: 40px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(30px, 10.5vw, 49px);
    line-height: 0.92;
    letter-spacing: -0.065em;
  }

  .hero-description {
    max-width: 340px;
    font-size: 16px;
  }

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

  .hero-object {
    right: -110px;
    bottom: -58px;
    opacity: 0.5;
  }

  .optical-capsule {
    width: 270px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading h2,
  .studio-intro h2,
  .editorial-split h2 {
    font-size: clamp(40px, 12.4vw, 58px);
  }

  .division-panel {
    min-height: 450px;
    padding: 32px 24px;
  }

  .division-panel h3 {
    margin-top: 80px;
    font-size: 34px;
  }

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

  .project-card h3 {
    font-size: 31px;
  }

  .service-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .service-list h3 {
    font-size: 29px;
  }

  .current-item {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
  }

  .current-date,
  .current-item .status {
    grid-column: 2;
    grid-row: auto;
    justify-self: start;
  }

  .current-item > a {
    grid-column: 2;
    grid-row: auto;
  }

  .final-cta {
    min-height: 720px;
  }

  .final-cta h2 {
    font-size: clamp(51px, 15vw, 72px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 60px;
  }

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

  .page-hero {
    min-height: 620px;
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .page-hero h1,
  .start-hero h1 {
    font-size: clamp(66px, 21vw, 100px);
  }

  .page-hero > p:last-of-type {
    font-size: 17px;
  }

  .filter-group {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .filter-group h2 {
    margin-top: 0;
  }

  .filter-buttons {
    gap: 6px;
  }

  .filter-buttons button {
    min-height: 44px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .method-grid,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .method-grid li,
  .format-grid article {
    min-height: 250px;
  }

  .method-grid h3,
  .format-grid h3 {
    margin-top: 90px;
  }

  .capability-cloud li {
    padding: 14px 17px;
    font-size: 20px;
  }

  .process-list li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .process-list h3 {
    font-size: 34px;
  }

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

  .form-field-wide {
    grid-column: 1;
  }

  .form-submit,
  .form-draft {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-hero {
    min-height: 760px;
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .case-kicker {
    flex-wrap: wrap;
    margin-bottom: 80px;
  }

  .case-title-row {
    flex-direction: column-reverse;
    gap: 18px;
  }

  .case-title-row h1 {
    font-size: clamp(57px, 17vw, 92px);
  }

  .case-findyourmir .case-title-row h1 {
    font-size: clamp(44px, 12vw, 72px);
  }

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

  .case-media {
    aspect-ratio: 4 / 3;
  }

  .case-gallery-heading,
  .case-gallery-grid {
    grid-template-columns: 1fr;
  }

  .case-build-record,
  .case-build-metrics {
    grid-template-columns: 1fr;
  }

  .case-build-record > .text-link {
    grid-column: 1;
  }

  .case-gallery-heading > p:last-child {
    grid-column: 1;
  }

  .case-body {
    padding-right: var(--pad);
    padding-left: var(--pad);
  }

  .case-section {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 12px;
    padding: 38px 0;
  }

  .case-section h2 {
    font-size: 38px;
  }

  .verdict,
  .case-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-pagination {
    grid-template-columns: 1fr;
  }

  .project-pagination a + a {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .project-pagination strong {
    font-size: 30px;
  }
}

@media (max-width: 350px) {
  .menu-toggle-label {
    display: none;
  }

  .lang-ko .case-title-row h1 {
    font-size: 16vw;
  }

  .lang-ko .case-findyourmir .case-title-row h1 {
    font-size: 12vw;
  }

  .hero-description {
    max-width: 260px;
  }

  .hero-object {
    top: 430px;
    right: -110px;
    bottom: auto;
    opacity: 0.46;
  }

  .button {
    padding-right: 17px;
    padding-left: 17px;
  }

  .project-meta {
    gap: 7px 12px;
  }

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

  .case-hero {
    min-height: 820px;
  }
}

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

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

  .reveal,
  .js.motion-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .resume-actions,
  .language-toggle,
  .skip-link {
    display: none !important;
  }

  .resume-hero {
    min-height: 0;
    padding: 32px 0;
    background: white;
  }

  .resume-sheet {
    padding: 20px 0;
  }

  .resume-profile,
  .resume-section {
    break-inside: avoid;
  }

  .resume-entry {
    break-inside: avoid;
  }
}

html[data-motion="reduce"] {
  scroll-behavior: auto;
}

html[data-motion="reduce"] *,
html[data-motion="reduce"] *::before,
html[data-motion="reduce"] *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

html[data-motion="reduce"] .reveal {
  opacity: 1 !important;
  transform: none !important;
}
