:root {
  --bg: #322724;
  --ink: #F77F3F;
  --line: #F77F3F;
  --headline: var(--line);
  --display-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display-weight: 700;
  --stroke: 1px;
  --project-info-heading-size: clamp(1.561rem, 2.779vw, 2.779rem);
  --page-x: clamp(28px, 8vw, 132px);
  --page-top: clamp(54px, 5vw, 82px);
  --masthead-top: clamp(12px, 2vw, 22px);
  --masthead-spacer: clamp(96px, 10vw, 132px);
  --content-overhang: clamp(22px, 2.8vw, 48px);
  --line-step: clamp(5px, 0.48vw, 7px);
  --line-field-right-inset: 0px;
  --home-marquee-reclaim: clamp(58px, 5.7vw, 78px);
  --drum-clickable-fill: #463027;
  --masthead-frame-inset: clamp(10px, 1.05vw, 18px);
  --mobile-masthead-frame-inset: clamp(8px, 2.4vw, 12px);
}


@font-face {
  font-family: "IBM Plex Sans Variable";
  src: url("./assets/fonts/IBMPlexSans-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 700;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("./assets/fonts/IBMPlexMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: clip;
  scrollbar-color: var(--line) var(--bg);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--bg);
  border-radius: 0;
  background: var(--line);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--headline);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  font-weight: 400;
  transition: background-color 280ms ease;
}

h1,
h2,
h3,
.project-sticky-title,
.additional-creative h3 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.fonts-loading h1,
html.fonts-loading .masthead-copy p,
html.fonts-loading .selected-work-heading h2,
html.fonts-loading .site-menu-title,
html.fonts-loading .puck-label,
html.fonts-loading .playground-type-label,
html.fonts-loading .project-build-title,
html.fonts-loading .project-compact-title,
html.fonts-loading .project-hero h2,
html.fonts-loading .project-device-heading,
html.fonts-loading .project-process h3,
html.fonts-loading .module-one-process-title,
html.fonts-loading .project-overview-copy h3,
html.fonts-loading .module-one-title,
html.fonts-loading .additional-creative h3 {
  visibility: hidden;
}

.page {
  width: min(100% - (var(--page-x) * 2), 1320px);
  margin: 0 auto;
  padding: var(--page-top) 0 clamp(48px, 7vw, 96px);
}

.page > :not(.masthead) {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.data-rail {
  position: fixed;
  left: calc((100vw - min(100% - (var(--page-x) * 2), 1320px)) / 2 - clamp(10px, 1.1vw, 18px) - 5px);
  top: var(--data-rail-top, var(--masthead-top));
  height: var(--data-rail-initial-height, calc(100svh - var(--data-rail-top, var(--masthead-top)) - var(--masthead-top)));
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: var(--line);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(0.48rem, 0.58vw, 0.62rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  opacity: 0.72;
  pointer-events: none;
  text-transform: none;
  transform: translateX(-100%);
  transition:
    color 280ms ease,
    opacity 180ms ease;
}

.data-rail::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(clamp(10px, 1.1vw, 18px) * -0.5);
  width: var(--stroke);
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    var(--line) 0 4px,
    transparent 4px 9px
  );
  background-size: var(--stroke) 9px;
  opacity: 0.9;
  animation: data-rail-dash-flow 900ms linear infinite;
}

.data-rail span {
  display: block;
  height: auto;
  text-orientation: mixed;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

@keyframes data-rail-dash-flow {
  to {
    background-position: 0 9px;
  }
}

.masthead {
  position: fixed;
  top: var(--masthead-top);
  left: 50%;
  z-index: 10;
  display: flex;
  width: min(100% - (var(--page-x) * 2), 1320px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.4vw, 32px);
  min-height: clamp(58px, 6vw, 78px);
  margin: 0 0 clamp(12px, 2vw, 22px);
  padding: clamp(8px, 1.1vw, 15px) 0;
  border-top: 0;
  border-bottom: var(--stroke) solid var(--line);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  backface-visibility: hidden;
  contain: layout paint;
  isolation: isolate;
  transition:
    background-color 280ms ease,
    border-color 280ms ease,
    min-height 360ms cubic-bezier(0.76, 0, 0.24, 1),
    padding 360ms cubic-bezier(0.76, 0, 0.24, 1);
  transform: translate3d(-50%, 0, 0);
  will-change: min-height, padding;
}

body.is-scrolled .masthead {
  top: var(--masthead-top);
  min-height: 0;
  padding: clamp(9px, 1.15vw, 14px) 0;
  border-top: var(--stroke) solid var(--line);
}

body:not(.project-page):not(.playground-page).is-scrolled .masthead {
  min-height: clamp(72px, 7.4vw, 98px);
  padding: clamp(10px, 1.25vw, 16px) 0;
}

body:not(.project-page):not(.playground-page) {
  --masthead-spacer: clamp(175px, calc(27vw - 35px), 345px);
}

body:not(.project-page):not(.playground-page):not(.is-scrolled) .masthead {
  min-height: clamp(145px, calc(26vw - 35px), 315px);
  align-items: end;
  padding: clamp(8px, 1vw, 14px) 0 clamp(18px, 2vw, 28px);
}

body:not(.project-page):not(.playground-page):not(.is-scrolled) .masthead-copy {
  align-items: end;
  gap: clamp(15px, 2vw, 24px);
  overflow: visible;
}

body:not(.project-page):not(.playground-page):not(.is-scrolled) h1 {
  flex: 0 0 7.15ch;
  width: 7.15ch;
  font-size: clamp(4.55rem, 12.28vw, 11.09rem);
  line-height: 0.78;
  white-space: normal;
}

body:not(.project-page):not(.playground-page):not(.is-scrolled) .title-full {
  display: block;
  width: 7.15ch;
}

body:not(.project-page):not(.playground-page):not(.is-scrolled) .masthead-copy p {
  flex: 0 1 clamp(320px, 32vw, 480px);
  display: grid;
  gap: 0.12em;
  padding-bottom: 0.36em;
  overflow: visible;
  font-size: clamp(1.16rem, 1.95vw, 1.67rem);
  line-height: 1.08;
  text-overflow: clip;
  white-space: normal;
  transform: translate(12px, 5px);
}

body:not(.project-page):not(.playground-page):not(.is-scrolled) .masthead-copy p span {
  display: block;
}

body:not(.project-page):not(.playground-page):not(.is-scrolled) .site-nav {
  align-self: end;
  padding-bottom: clamp(6px, 0.9vw, 14px);
}

.home-intro {
  margin: 0 0 max(0px, calc(clamp(18px, 2vw, 32px) - 15px));
  padding: 0 0 clamp(12px, 1.2vw, 20px);
  border-bottom: var(--stroke) solid var(--line);
  transition:
    transform 360ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 240ms ease;
  transform-origin: center top;
}

.home-intro p {
  column-count: 2;
  column-gap: clamp(17px, 1.38vw, 24px);
  margin: 0;
  color: var(--line);
  font-family: var(--body-font);
  font-size: clamp(0.847rem, 1.127vw, 1.059rem);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
}

.home-intro-toggle {
  display: none;
}

.home-intro-shelf {
  position: fixed;
  top: calc(var(--masthead-bottom) - var(--stroke));
  left: var(--masthead-left, var(--page-x));
  z-index: 44;
  width: var(--masthead-width, 1320px);
  margin: 0;
  display: grid;
  grid-template-columns: max-content max-content;
  gap: clamp(16px, 1.2vw, 24px);
  align-items: center;
  justify-content: start;
  min-height: clamp(58px, 4.45vw, 76px);
  padding: clamp(11px, 1.05vw, 16px) 0 clamp(13px, 1.18vw, 18px);
  border-top: 0;
  border-bottom: var(--stroke) solid var(--line);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  backface-visibility: hidden;
  contain: layout paint;
  isolation: isolate;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 220ms ease,
    transform 360ms cubic-bezier(0.76, 0, 0.24, 1);
}

.home-intro-shelf-roles {
  display: block;
  color: var(--line);
  font-family: var(--display-font);
  font-size: clamp(1.06rem, 1.62vw, 1.48rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 0.98;
}

.home-intro-shelf-bio {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: clamp(10px, 0.9vw, 16px);
  width: auto;
  max-height: none;
  overflow: hidden;
  opacity: 0.95;
}

.home-intro-shelf-bio p {
  margin: 0;
  color: var(--line);
  font-family: var(--body-font);
  font-size: clamp(0.18rem, 0.25vw, 0.27rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  overflow: hidden;
}

.home-intro-shelf-bio p span {
  display: block;
  width: 100%;
  text-align: justify;
  text-align-last: justify;
  text-justify: inter-word;
  white-space: nowrap;
}

.home-intro-shelf-bio p:last-child span:last-child {
  text-align-last: left;
}

html.is-safari .masthead {
  transition:
    background-color 220ms ease,
    border-color 220ms ease;
  will-change: auto;
}

html.is-safari .home-intro-shelf {
  transition:
    opacity 240ms ease,
    transform 280ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: opacity, transform;
}

html.is-safari .title-full,
html.is-safari .title-compact,
html.is-safari h1,
html.is-safari .masthead-copy p,
html.is-safari .site-nav,
html.is-safari .nav-menu {
  transition-duration: 280ms;
}

html.is-safari body.is-safari-restoring-home:not(.project-page):not(.playground-page) .masthead {
  align-items: end;
}

html.is-safari body.is-safari-restoring-home:not(.project-page):not(.playground-page) .masthead-copy {
  align-items: end;
}

html.is-safari body.is-safari-restoring-home:not(.project-page):not(.playground-page) h1 {
  line-height: 0.78 !important;
  transform: translate3d(0, 0, 0) !important;
  transition: none;
}

html.is-safari body.is-safari-restoring-home:not(.project-page):not(.playground-page) .title-full {
  opacity: 1 !important;
  line-height: inherit !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  transition:
    opacity 160ms ease,
    transform 300ms cubic-bezier(0.76, 0, 0.24, 1);
}

html.is-safari body.is-safari-restoring-home:not(.project-page):not(.playground-page) .title-compact {
  opacity: 0 !important;
  transform: translate3d(0, 0, 0) scale(0.78) !important;
  transition:
    opacity 140ms ease,
    transform 240ms cubic-bezier(0.76, 0, 0.24, 1);
}

html.is-safari body.is-safari-restoring-home:not(.project-page):not(.playground-page) .site-nav {
  align-self: end;
}

@media (min-width: 901px) {
  html.is-safari body:not(.project-page):not(.playground-page).is-scrolled .masthead {
    height: clamp(72px, 7.4vw, 98px);
    min-height: clamp(72px, 7.4vw, 98px);
  }

  html.is-safari body.is-scrolled:not(.project-page):not(.playground-page):not(.drum-page) .home-intro-shelf {
    top: calc(var(--masthead-top) + clamp(72px, 7.4vw, 98px)) !important;
  }

  html.is-safari body.is-safari-restoring-home:not(.project-page):not(.playground-page) .masthead {
    height: clamp(145px, calc(26vw - 35px), 315px);
    max-height: clamp(145px, calc(26vw - 35px), 315px);
    overflow: hidden;
  }
}

@media (min-width: 1025px) {
  html.is-safari body.is-safari-restoring-home:not(.project-page):not(.playground-page) h1 {
    transform: translate3d(-5px, 0, 0) !important;
  }

  html.is-safari body.is-safari-restoring-home:not(.project-page):not(.playground-page) .masthead {
    height: clamp(138px, calc(24.7vw - 33px), 299px);
    max-height: clamp(138px, calc(24.7vw - 33px), 299px);
  }
}

.home-feature-row {
  --home-module-gap: clamp(17px, 1.38vw, 24px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: var(--home-module-gap);
  row-gap: clamp(20px, 2.2vw, 36px);
  align-items: start;
  margin-top: 0;
}

.home-selected-list,
.home-additional-list {
  position: relative;
  grid-column: 1;
  width: 100%;
}

.home-selected-list::after,
.home-additional-list::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(var(--home-module-gap) / -2);
  bottom: 0;
  width: var(--stroke);
  background: var(--line);
  pointer-events: none;
}

.home-selected-list {
  grid-row: 1;
  transform: translateY(15px);
}

.home-additional-list {
  grid-row: 2;
}

.home-selected-work {
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 0;
}

.home-wheel-module {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  transform: translateY(15px);
}

.home-playground-grid {
  grid-column: 1 / -1;
  grid-row: 3;
}

.selected-work-heading.home-selected-heading {
  display: block;
  margin: 0 0 clamp(8px, 0.9vw, 14px);
  padding: 0;
  border: 0;
  background: none;
  overflow: visible;
}

.selected-work-heading.home-selected-heading h2 {
  display: block;
  width: auto;
  min-width: 0;
  color: var(--line);
  font-size: clamp(1.592rem, 2.834vw, 2.834rem);
  animation: none;
}

.selected-work-heading.home-selected-heading h2 a {
  color: inherit;
  text-decoration: none;
}

.home-selected-list-items {
  display: grid;
  gap: 0;
  border-top: var(--stroke) solid var(--line);
}

.home-selected-list-item {
  position: relative;
  display: grid;
  grid-template-columns: clamp(18px, 1.7vw, 26px) minmax(0, 1fr) clamp(28px, 3.2vw, 40px);
  gap: clamp(8px, 0.85vw, 14px);
  align-items: center;
  min-height: clamp(33px, 3.75vw, 50px);
  padding: clamp(6px, 0.68vw, 10px) 13px clamp(6px, 0.68vw, 10px) 14px;
  border-bottom: var(--stroke) dotted var(--line);
  background: var(--drum-clickable-fill, #463027);
  color: var(--line);
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}

.home-selected-list-item::before,
.home-selected-list-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, var(--line) 18%, transparent) 0 var(--stroke),
      transparent var(--stroke) var(--line-step)
    );
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  pointer-events: none;
}

.home-selected-list-item::after {
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 calc(var(--line-step) * 0.5),
      color-mix(in srgb, var(--line) 12%, transparent) calc(var(--line-step) * 0.5) calc(var(--line-step) * 0.5 + var(--stroke)),
      transparent calc(var(--line-step) * 0.5 + var(--stroke)) var(--line-step)
    );
}

.home-selected-list-item > * {
  position: relative;
  z-index: 1;
}

.home-selected-list-title {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--display-font);
  font-size: clamp(0.918rem, 1.743vw, 1.743rem);
  font-weight: var(--display-weight);
  line-height: 0.94;
  letter-spacing: 0;
  transform: scale(1);
  transform-origin: left center;
  transition: transform 620ms cubic-bezier(0.76, 0, 0.24, 1);
}

.home-selected-list-number {
  align-self: start;
  display: block;
  padding-top: 0.12em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.4rem, 0.72vw, 0.72rem);
  font-weight: 300;
  line-height: 1;
  color: var(--line);
  opacity: 0.88;
  letter-spacing: 0;
}

.home-selected-preview {
  justify-self: end;
  grid-column: 3;
  width: clamp(25px, 2.8vw, 36px);
  margin: 0;
}

.home-selected-list-item:hover,
.home-selected-list-item:focus-visible {
  outline: 0;
}

.home-selected-list-item:hover::before,
.home-selected-list-item:focus-visible::before {
  animation: selected-row-line-cascade 560ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.home-selected-list-item:hover::after,
.home-selected-list-item:focus-visible::after {
  animation: selected-row-line-cascade-offset 660ms cubic-bezier(0.76, 0, 0.24, 1) 80ms both;
}

.home-selected-list-item:hover .home-selected-list-title,
.home-selected-list-item:focus-visible .home-selected-list-title {
  transform: scale(0.94);
}

@keyframes selected-row-line-cascade {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: translateY(-12%);
  }

  18% {
    opacity: 1;
  }

  62% {
    transform: translateY(5%);
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes selected-row-line-cascade-offset {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: translateY(-22%) translateX(calc(var(--line-step) * 0.5));
  }

  24% {
    opacity: 1;
  }

  65% {
    transform: translateY(7%) translateX(calc(var(--line-step) * -0.2));
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

.home-wheel-preview {
  display: block;
  width: 100%;
  height: clamp(260px, 24vw, 390px);
  border-top: var(--stroke) solid var(--line);
  color: var(--line);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.home-wheel-preview-canvas,
.home-wheel-preview-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-wheel-preview-svg {
  overflow: visible;
}

.home-wheel-preview-ring,
.home-wheel-preview-halo,
.home-wheel-preview-note,
.home-wheel-preview-pad-halo,
.home-wheel-preview-pad,
.home-wheel-preview-handle,
.home-wheel-preview-cog circle,
.home-wheel-preview-cog line {
  vector-effect: non-scaling-stroke;
}

.home-wheel-preview-ring,
.home-wheel-preview-halo,
.home-wheel-preview-note,
.home-wheel-preview-pad-halo,
.home-wheel-preview-pad,
.home-wheel-preview-background,
.home-wheel-preview-cog circle,
.home-wheel-preview-cog line,
.home-wheel-preview-handle {
  stroke: currentColor;
  stroke-width: 1.25;
}

.home-wheel-preview-ring,
.home-wheel-preview-note,
.home-wheel-preview-pad-halo,
.home-wheel-preview-pad,
.home-wheel-preview-cog line {
  fill: none;
}

.home-wheel-preview-background {
  fill: var(--drum-clickable-fill, #463027);
  stroke: none;
}

.home-wheel-preview-cog circle {
  fill: var(--bg);
}

.home-wheel-preview-cog-drum circle {
  fill: var(--drum-clickable-fill, #463027);
}

.home-wheel-preview-cog-synth circle {
  fill: var(--drum-clickable-fill, #463027);
}

.home-wheel-preview-ring {
  opacity: 0.9;
}

.home-wheel-preview-note {
  fill: var(--drum-clickable-fill, #463027);
}

.home-wheel-preview-halo {
  fill: var(--bg);
  stroke: none;
}

.home-wheel-preview-note.is-active {
  fill: currentColor;
}

.home-wheel-preview-pad {
  stroke-linecap: round;
  stroke-width: 4.2;
  opacity: 0.78;
}

.home-wheel-preview-pad-halo {
  stroke: var(--bg);
  stroke-linecap: round;
  stroke-width: 7.2;
}

.home-wheel-preview-pad.is-active {
  stroke: currentColor;
  opacity: 1;
}

.home-wheel-preview-handle {
  fill: var(--drum-clickable-fill, #463027);
}

.home-wheel-preview-cog {
  color: var(--line);
}

.home-selected-work .line-field {
  --home-smudge-top-gap: 16px;
  flex: 1 1 auto;
  height: auto;
  min-height: clamp(170px, 18.2vw, 252px);
  border-top: var(--stroke) solid var(--line);
  overflow: hidden;
}

.home-selected-work .line-field[data-smudge-link] {
  cursor: pointer;
}

.home-selected-work .line-field[data-smudge-link]:focus-visible {
  outline: var(--stroke) solid var(--line);
  outline-offset: 4px;
}

.home-selected-work .smudge-canvas {
  left: 0;
  width: 100%;
}

.home-selected-work .portfolio-puck {
  --leader-length: clamp(42px, 6vw, 84px);
  --leader-run: clamp(30px, 4.3vw, 60px);
  width: clamp(54px, 6vw, 92px);
  padding: 0;
  border-color: transparent;
  font: inherit;
  appearance: none;
  cursor: grab;
}

.home-selected-work .portfolio-puck-one {
  left: 30%;
  top: 39%;
}

.home-selected-work .portfolio-puck-two {
  left: 67%;
  top: 64%;
}

.home-selected-work .portfolio-puck::before,
.home-selected-work .puck-label {
  display: none;
}

.home-selected-work .portfolio-puck::after {
  display: block;
  inset: -12%;
}

.home-selected-work .portfolio-puck:hover::after,
.home-selected-work .portfolio-puck:focus-visible::after {
  opacity: 1;
  scale: 1;
  animation: puck-orbit-ring 1800ms linear infinite;
}

.home-selected-work .puck-shell {
  background: color-mix(in srgb, var(--drum-clickable-fill, #463027) 88%, var(--bg));
  border-color: var(--line);
}

.smudge-page .masthead + .smudge-detail {
  margin-top: max(
    0px,
    calc(var(--masthead-spacer) + var(--masthead-top) - var(--page-top) - clamp(12px, 1vw, 20px))
  );
}

.smudge-detail {
  display: grid;
  gap: clamp(10px, 1.1vw, 18px);
}

.smudge-detail-copy {
  display: block;
  padding-bottom: clamp(8px, 0.9vw, 14px);
  border-bottom: var(--stroke) solid var(--line);
}

.smudge-detail-copy h2 {
  margin: 0;
  color: var(--line);
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  font-weight: var(--display-weight);
  line-height: 0.92;
  letter-spacing: 0;
}

.smudge-page .line-field {
  height: clamp(520px, calc(100svh - var(--masthead-bottom, 96px) - clamp(112px, 12vw, 180px)), 820px);
  min-height: 420px;
  overflow: hidden;
  touch-action: none;
}

.smudge-page .portfolio-puck {
  padding: 0;
  border-color: transparent;
  font: inherit;
  appearance: none;
}

.smudge-page .portfolio-puck::before,
.smudge-page .puck-label {
  display: none;
}

.smudge-page .puck-shell {
  background: color-mix(in srgb, var(--drum-clickable-fill, #463027) 88%, var(--bg));
  border-color: var(--line);
}

.smudge-page .portfolio-puck::after {
  inset: -12%;
}

@media (hover: none), (max-width: 700px) {
  .home-selected-work .portfolio-puck.is-puck-ready::after {
    animation:
      mobile-puck-orbit-on 360ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--puck-reveal-delay, 180ms) + 500ms) both,
      puck-orbit-ring 1800ms linear calc(var(--puck-reveal-delay, 180ms) + 860ms) infinite;
  }
}

@media (min-width: 1025px) {
  body:not(.project-page):not(.playground-page) {
    --masthead-spacer: clamp(166px, calc(25.65vw - 33px), 328px);
  }

  body:not(.project-page):not(.playground-page):not(.is-scrolled) .masthead {
    min-height: clamp(138px, calc(24.7vw - 33px), 299px);
  }

  body:not(.project-page):not(.playground-page):not(.is-scrolled) .masthead-copy {
    gap: 15px;
  }

  body:not(.project-page):not(.playground-page):not(.is-scrolled) h1 {
    font-size: clamp(4.323rem, 11.666vw, 10.536rem);
    transform: translateX(-5px);
  }

  body:not(.project-page):not(.playground-page):not(.is-scrolled) .masthead-copy p {
    transform: translateY(5px);
  }
}

@media (min-width: 901px) {
  body.is-scrolled:not(.project-page):not(.playground-page):not(.drum-page) .home-intro {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.985);
  }

  body.is-scrolled:not(.project-page):not(.playground-page):not(.drum-page) .home-intro-shelf {
    opacity: 1;
    transform: translateY(0);
  }

  body.is-scrolled:not(.project-page):not(.playground-page):not(.drum-page) .masthead,
  body.is-scrolled:not(.project-page):not(.playground-page):not(.drum-page) .home-intro-shelf {
    border-right: var(--stroke) solid var(--line);
    border-left: var(--stroke) solid var(--line);
    padding-right: var(--masthead-frame-inset);
    padding-left: var(--masthead-frame-inset);
  }
}

@media (max-width: 900px) {
  .home-intro-shelf {
    display: none;
  }

  .home-intro {
    position: fixed;
    top: var(--masthead-bottom, calc(var(--masthead-top) + 112px));
    left: var(--masthead-left, var(--page-x));
    z-index: 39;
    width: var(--masthead-width, calc(var(--visual-width, 100vw) - (var(--page-x) * 2)));
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-10px) scaleY(0.96);
    transform-origin: top right;
    clip-path: inset(0 0 100% 0);
    transition:
      clip-path 320ms cubic-bezier(0.76, 0, 0.24, 1),
      opacity 160ms ease,
      transform 320ms cubic-bezier(0.76, 0, 0.24, 1);
  }

  .home-intro.is-expanded,
  .home-intro.is-collapsing {
    margin-bottom: 0;
    padding: clamp(8px, 2.2vw, 12px) var(--mobile-masthead-frame-inset) clamp(12px, 2.8vw, 16px);
    border-right: var(--stroke) solid var(--line);
    border-left: var(--stroke) solid var(--line);
    border-bottom: var(--stroke) solid var(--line);
    background: color-mix(in srgb, var(--bg) 75%, transparent);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    pointer-events: auto;
    max-height: calc(100dvh - var(--masthead-bottom, calc(var(--masthead-top) + 112px)) - 18px);
    overflow-y: auto;
  }

  .home-intro.is-expanded {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    clip-path: inset(0 0 0 0);
  }

  .home-intro.is-collapsing {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scaleY(0.96);
    clip-path: inset(0 0 100% 0);
  }

  .home-intro p {
    --home-intro-mobile-line-height: 1.62;
    column-count: 1;
    white-space: normal;
    overflow-wrap: normal;
    line-height: var(--home-intro-mobile-line-height);
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    max-height: 0;
    overflow: hidden;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.76, 0, 0.24, 1);
    opacity: 0;
    transform: translateY(-6px);
  }

  .home-intro:not(.is-expanded) p {
    display: block;
    max-height: 0;
    overflow: hidden;
  }

  .home-intro:not(.is-expanded)::after {
    content: none;
  }

  .home-intro.is-expanded p,
  .home-intro.is-collapsing p {
    max-height: none;
    overflow: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .home-intro-toggle {
    display: none;
    place-items: center;
    width: 28px;
    aspect-ratio: 1;
    margin: clamp(4px, 1.25vw, 6px) 0 0 auto;
    padding: 0;
    border: var(--stroke) solid var(--line);
    border-radius: 50%;
    background: var(--drum-clickable-fill, #463027);
    color: var(--line);
    cursor: pointer;
    position: relative;
    z-index: 2;
  }

  .home-intro:not(.is-expanded) .home-intro-toggle {
    display: none;
  }

  .home-intro.is-expanded .home-intro-toggle-bottom {
    display: none;
  }

  .home-intro-toggle span[aria-hidden="true"] {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
  }

  .home-intro-toggle-label {
    display: none;
  }

  .home-intro-toggle span[aria-hidden="true"]::before,
  .home-intro-toggle span[aria-hidden="true"]::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: var(--stroke);
    background: currentColor;
    transform: translate(-50%, -50%);
  }

  .home-intro-toggle span[aria-hidden="true"]::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 180ms ease;
  }

  .home-intro.is-expanded .home-intro-toggle span[aria-hidden="true"]::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .home-feature-row {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .home-selected-list::after,
  .home-additional-list::after {
    display: none;
  }

  .home-selected-list,
  .home-additional-list,
  .home-wheel-module,
  .home-playground-grid {
    grid-column: 1;
    grid-row: auto;
  }

  .home-selected-list {
    order: 1;
  }

  .home-wheel-module {
    order: 2;
    margin-top: 10px;
  }

  .home-additional-list {
    order: 3;
  }

  .home-selected-work {
    order: 4;
  }

  .home-playground-grid {
    order: 5;
  }

  .home-wheel-preview {
    height: clamp(240px, 58vw, 380px);
  }

  .home-selected-work {
    grid-column: 1;
    grid-row: auto;
    display: block;
  }

  .home-selected-work .line-field {
    display: block;
    flex: none;
    height: clamp(210px, 50vw, 320px);
    min-height: 0;
  }
}

.masthead + * {
  margin-top: max(
    0px,
    calc(var(--masthead-spacer) + var(--masthead-top) - var(--page-top) + clamp(16px, 1.4vw, 28px))
  );
}

.masthead + .home-intro {
  margin-top: max(
    0px,
    calc(var(--masthead-spacer) + var(--masthead-top) - var(--page-top) - clamp(4px, 0.45vw, 10px))
  );
}

.masthead + .selected-work-heading {
  margin-top: max(
    0px,
    calc(var(--masthead-spacer) + var(--masthead-top) - var(--page-top) + clamp(16px, 1.4vw, 28px) - 28px)
  );
}

@media (max-width: 900px) {
  .masthead + .home-intro {
    margin-top: 0 !important;
  }

  body:not(.project-page):not(.playground-page) .home-feature-row {
    margin-top: max(
      0px,
      calc(var(--masthead-spacer) + var(--masthead-top) - var(--page-top) + clamp(16px, 1.4vw, 28px))
    );
  }
}

.masthead-copy {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: baseline;
  gap: clamp(12px, 1.4vw, 20px);
  overflow: visible;
}

h1 {
  display: inline-grid;
  width: 14ch;
  align-items: center;
  margin: 0;
  color: var(--headline);
  font-family: var(--display-font);
  font-size: clamp(1.757rem, 3.479vw, 3.815rem);
  font-weight: var(--display-weight);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transition:
    font-size 360ms cubic-bezier(0.76, 0, 0.24, 1),
    line-height 360ms cubic-bezier(0.76, 0, 0.24, 1),
    width 380ms cubic-bezier(0.76, 0, 0.24, 1);
  transform-origin: left top;
}

body.is-scrolled h1 {
  width: 3.2ch;
  font-size: var(--project-info-heading-size);
}

.home-link {
  display: inline-grid;
  position: relative;
  align-items: center;
  width: 100%;
  color: inherit;
  overflow: visible;
  text-decoration: none;
}

.title-full,
.title-compact {
  grid-area: 1 / 1;
  transition:
    letter-spacing 360ms cubic-bezier(0.76, 0, 0.24, 1),
    line-height 360ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 360ms ease,
    transform 380ms cubic-bezier(0.76, 0, 0.24, 1);
  transform-origin: left top;
  will-change: opacity, transform;
}

.title-full {
  display: grid;
  width: max-content;
  opacity: 1;
  line-height: inherit;
  transform: translateX(0) scale(1);
}

.title-line {
  display: block;
}

.title-compact {
  opacity: 0;
  letter-spacing: -0.15em;
  transform: translateX(0) scale(0.78);
}

body.is-scrolled .title-full {
  opacity: 0;
  transform: translateX(0.28em) scale(0.42);
}

body.is-scrolled .title-compact {
  opacity: 1;
  letter-spacing: 0.06em;
  transform: translateX(0) scale(1);
}

body:not(.project-page):not(.playground-page).is-scrolled h1 {
  width: 6.9ch;
  font-size: clamp(2.342rem, 4.169vw, 4.169rem);
  line-height: 0.32;
}

body:not(.project-page):not(.playground-page).is-scrolled .title-full {
  opacity: 0;
  line-height: 0.11;
  transform: translate(0, 0) scale(0.42);
}

body:not(.project-page):not(.playground-page).is-scrolled .title-compact {
  opacity: 1;
  letter-spacing: 0.06em;
  transform: translate(0, 0) scale(1);
}

.masthead-copy p {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--line);
  font-family: var(--display-font);
  font-size: clamp(0.672rem, 0.945vw, 0.896rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition:
    max-width 300ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 220ms ease,
    transform 300ms cubic-bezier(0.76, 0, 0.24, 1);
}

body.is-scrolled:not(.project-page):not(.playground-page):not(.drum-page) .masthead-copy p {
  flex-basis: 0;
  max-width: 0;
  opacity: 0;
  transform: translateY(4px);
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  min-height: 0;
  color: var(--line);
  overflow: visible;
}

.palette-switcher {
  display: none;
  gap: 6px;
  align-items: center;
}

.palette-swatch {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: var(--stroke) solid var(--line);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.palette-swatch span {
  display: block;
  width: 10px;
  height: 10px;
}

.palette-swatch[aria-pressed="true"] {
  background: color-mix(in srgb, var(--line) 10%, transparent);
}

.nav-menu {
  display: grid;
  position: relative;
  z-index: 2;
  gap: 9px;
  align-content: center;
  justify-content: center;
  width: clamp(52px, 4.8vw, 58px);
  height: clamp(52px, 4.8vw, 58px);
  margin-left: auto;
  margin-right: 0;
  padding: 0;
  border: var(--stroke) solid var(--line);
  border-radius: 50%;
  background: var(--drum-clickable-fill);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--line);
  cursor: pointer;
  transform-origin: right center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    width 360ms cubic-bezier(0.76, 0, 0.24, 1),
    height 360ms cubic-bezier(0.76, 0, 0.24, 1),
    gap 360ms cubic-bezier(0.76, 0, 0.24, 1),
    transform 180ms cubic-bezier(0.32, 0.72, 0.32, 1);
}

.nav-menu span {
  display: block;
  width: 32px;
  height: var(--stroke);
  background: var(--line);
  transform-origin: center;
  transition:
    background-color 180ms ease,
    width 360ms cubic-bezier(0.76, 0, 0.24, 1),
    transform 240ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 160ms ease;
}

body.is-scrolled .nav-menu {
  gap: 6px;
  width: clamp(42px, 3.7vw, 48px);
  height: clamp(42px, 3.7vw, 48px);
}

body.is-scrolled .nav-menu span {
  width: clamp(22px, 2vw, 24px);
}

.nav-menu:hover,
.nav-menu:focus-visible,
.site-nav.is-menu-open .nav-menu {
  outline: 0;
  background: color-mix(in srgb, var(--drum-clickable-fill) 84%, var(--line));
}

.site-nav.is-menu-open .nav-menu span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

body.is-scrolled .site-nav.is-menu-open .nav-menu span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.is-menu-open .nav-menu span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.site-nav.is-menu-open .nav-menu span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

body.is-scrolled .site-nav.is-menu-open .nav-menu span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-menu-panel {
  position: fixed;
  top: var(--masthead-bottom, calc(var(--masthead-top) + 110px));
  left: var(--masthead-left, var(--page-x));
  right: var(--masthead-right, var(--page-x));
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: auto;
  max-height: none;
  padding: 0;
  border: var(--stroke) solid var(--line);
  border-top: 0;
  background:
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, var(--line) 8%, transparent) 0 var(--stroke),
      transparent var(--stroke) var(--line-step)
    ),
    color-mix(in srgb, var(--bg) 60%, transparent);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0 22px 54px color-mix(in srgb, #000 22%, transparent);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-10px) scaleY(0.96);
  transform-origin: top center;
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 320ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 160ms ease,
    transform 320ms cubic-bezier(0.76, 0, 0.24, 1);
}

body.site-menu-open .site-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scaleY(1);
  clip-path: inset(0 0 0 0);
}

.site-menu-panel a {
  position: relative;
  display: grid;
  grid-template-columns: 3.4ch minmax(0, 1fr);
  gap: clamp(8px, 1.1vw, 15px);
  align-items: baseline;
  padding: clamp(9px, 0.95vw, 13px) clamp(12px, 1.35vw, 18px);
  border-bottom: var(--stroke) solid color-mix(in srgb, var(--line) 62%, transparent);
  border-right: var(--stroke) solid color-mix(in srgb, var(--line) 62%, transparent);
  color: var(--line);
  font-family: var(--body-font);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0;
  text-decoration: none;
  transform: translateY(-8px);
  transition:
    color 160ms ease,
    opacity 260ms ease,
    transform 320ms cubic-bezier(0.32, 0.72, 0.32, 1);
  transition-delay: calc(var(--menu-index) * 34ms);
}

.site-menu-panel a:last-child {
  border-bottom: 0;
}

.site-menu-panel a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.site-menu-panel a:nth-child(2n) {
  border-right: 0;
}

body.site-menu-open .site-menu-panel a {
  opacity: 1;
  transform: translateY(0);
}

.site-menu-panel a::before,
.site-menu-panel a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, var(--line) 18%, transparent) 0 var(--stroke),
      transparent var(--stroke) var(--line-step)
    );
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transition:
    clip-path 360ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 120ms ease;
}

.site-menu-panel a::after {
  background: color-mix(in srgb, var(--line) 9%, transparent);
}

.site-menu-panel a:hover,
.site-menu-panel a:focus-visible,
.site-menu-panel a[aria-current="page"] {
  color: var(--headline);
  outline: 0;
}

.site-menu-panel a:hover::before,
.site-menu-panel a:focus-visible::before,
.site-menu-panel a[aria-current="page"]::after {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.site-menu-count {
  color: color-mix(in srgb, var(--line) 68%, transparent);
  font-size: clamp(0.68rem, 0.84vw, 0.82rem);
  text-transform: none;
}

.site-menu-title {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--display-font);
  font-size: clamp(0.7rem, 1.106vw, 1.092rem);
  font-weight: var(--display-weight);
  line-height: 0.9;
}

.mobile-nav-glyph {
  display: none;
}

.mobile-menu-mark {
  display: grid;
  position: fixed;
  top: calc(var(--masthead-top) + clamp(33px, 10vw, 46px));
  left: calc(var(--visual-width, 100vw) - var(--page-x) - 26px);
  z-index: 80;
  align-content: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  gap: 4px;
  border: var(--stroke) solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  transform: translateY(-50%);
  transition:
    top 360ms cubic-bezier(0.76, 0, 0.24, 1),
    border-color 280ms ease,
    background 280ms ease;
}

body.is-scrolled .mobile-menu-mark {
  top: calc(var(--masthead-top) + clamp(13px, 3.8vw, 17px));
}

.mobile-menu-mark span {
  display: block;
  width: 13px;
  height: var(--stroke);
  background: var(--line);
  transition: background-color 280ms ease;
}

@media (min-width: 701px) {
  .mobile-menu-mark {
    display: none;
  }
}

.can-field::after,
.shape-field::after {
  content: "";
  position: absolute;
  inset: calc(var(--stroke) * -1);
  border: var(--stroke) solid var(--line);
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  pointer-events: none;
}

body.has-screen-texture::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 3px,
      color-mix(in srgb, var(--line) 5%, transparent) 3px 4px
    );
  opacity: 0.18;
  pointer-events: none;
}

@media (max-width: 700px), (prefers-reduced-motion: reduce) {
  body.has-screen-texture::after {
    display: none;
  }
}

.masthead-copy,
.site-nav,
.selected-work-heading,
.smudge-canvas,
.secondary-projects,
.playground-heading,
.playground-grid,
.can-field,
.shape-field {
  opacity: 1;
}

body.palette-exit .masthead-copy,
body.palette-exit .site-nav,
body.palette-exit .selected-work-heading,
body.palette-exit .smudge-canvas,
body.palette-exit .secondary-projects,
body.palette-exit .playground-heading,
body.palette-exit .playground-grid,
body.palette-exit .can-field,
body.palette-exit .shape-field {
  animation: palette-content-out 180ms ease both;
}

body.palette-exit .masthead-copy,
body.palette-enter .masthead-copy {
  animation-delay: 0ms;
}

body.palette-exit .site-nav,
body.palette-enter .site-nav {
  animation-delay: 50ms;
}

body.palette-exit .smudge-canvas,
body.palette-enter .smudge-canvas {
  animation-delay: 100ms;
}

body.palette-exit .selected-work-heading,
body.palette-enter .selected-work-heading {
  animation-delay: 100ms;
}

body.palette-exit .secondary-projects,
body.palette-enter .secondary-projects {
  animation-delay: 150ms;
}

body.palette-exit .playground-grid,
body.palette-enter .playground-grid,
body.palette-exit .playground-heading,
body.palette-enter .playground-heading {
  animation-delay: 200ms;
}

body.palette-enter .masthead-copy,
body.palette-enter .site-nav,
body.palette-enter .selected-work-heading,
body.palette-enter .smudge-canvas,
body.palette-enter .secondary-projects,
body.palette-enter .playground-heading,
body.palette-enter .playground-grid,
body.palette-enter .can-field,
body.palette-enter .shape-field {
  opacity: 0;
  animation-name: palette-content-in;
  animation-duration: 180ms;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

body.palette-enter .can-field,
body.palette-enter .shape-field {
  border-color: transparent;
}

body.palette-exit .can-field,
body.palette-exit .shape-field {
  border-color: transparent;
}

body.palette-exit .can-field::after,
body.palette-exit .shape-field::after {
  opacity: 1;
  animation: palette-border-trim-out 360ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

body.palette-enter .can-field::after,
body.palette-enter .shape-field::after {
  opacity: 1;
  animation: palette-border-trim 520ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

body.palette-exit .can-field::after,
body.palette-enter .can-field::after {
  animation-delay: 150ms;
}

body.palette-exit .shape-field::after,
body.palette-enter .shape-field::after {
  animation-delay: 200ms;
}

.project-build-transition {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--line) 18%, transparent) 0 1px,
      transparent 1px 7px
    ),
    linear-gradient(
      0deg,
      color-mix(in srgb, var(--line) 12%, transparent) 0 1px,
      transparent 1px 7px
    ),
    color-mix(in srgb, var(--bg) 92%, transparent);
  color: var(--line);
  pointer-events: none;
  animation: project-build-shell 1180ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.project-build-title {
  position: relative;
  width: min(100% - (var(--page-x) * 2), 1320px);
  color: transparent;
  font-family: var(--display-font);
  font-size: clamp(3.605rem, 10.36vw, 9.8rem);
  font-weight: var(--display-weight);
  line-height: 0.66;
  letter-spacing: 0;
  text-align: left;
}

.project-build-title::before,
.project-build-title::after {
  content: attr(data-build-title);
  display: block;
}

.project-build-title::before {
  color: transparent;
  -webkit-text-stroke: var(--stroke) var(--line);
  opacity: 0.72;
  animation: project-build-outline 1180ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.project-build-title::after {
  position: absolute;
  inset: 0;
  color: var(--line);
  clip-path: inset(0 100% 0 0);
  animation: project-build-fill 1180ms steps(12, end) both;
}

.project-build-cursor {
  position: absolute;
  top: 50%;
  left: calc((100vw - min(100% - (var(--page-x) * 2), 1320px)) / 2);
  width: clamp(14px, 1.7vw, 28px);
  height: clamp(56px, 8vw, 110px);
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--bg) 13%, transparent) 0 1px,
      transparent 1px 4px
    ),
    linear-gradient(
      0deg,
      color-mix(in srgb, var(--bg) 11%, transparent) 0 1px,
      transparent 1px 4px
    ),
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, white 10%, transparent) 0 2px,
      transparent 2px 6px
    ),
    var(--line);
  background-size: 4px 4px, 4px 4px, 12px 100%, auto;
  transform: translateY(-50%);
  animation:
    project-build-cursor 1180ms steps(12, end) both,
    playground-cursor-blink 360ms steps(1, end) infinite;
}

@keyframes project-build-shell {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  72% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@keyframes project-build-outline {
  0% {
    opacity: 0;
    transform: translateY(18px) scaleY(0.92);
    filter: blur(1px);
  }

  18%,
  74% {
    opacity: 0.74;
    transform: translateY(0) scaleY(1);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes project-build-fill {
  0%,
  18% {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }

  56%,
  74% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 0;
  }
}

@keyframes project-build-cursor {
  0%,
  18% {
    transform: translate(0, -50%);
  }

  56%,
  74% {
    transform: translate(min(62vw, 760px), -50%);
  }

  100% {
    opacity: 0;
    transform: translate(min(62vw, 760px), calc(-50% - 8px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-build-transition {
    display: none;
  }
}

@keyframes palette-content-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes palette-content-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes palette-border-trim {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes palette-border-trim-out {
  from {
    clip-path: inset(0 0 0 0);
  }

  to {
    clip-path: inset(0 0 0 100%);
  }
}

.line-field {
  position: relative;
  width: 100%;
  height: clamp(440px, calc(100vh - var(--page-top) - clamp(82px, 7vw, 126px) - var(--home-marquee-reclaim)), 820px);
  min-height: 0;
  overflow: visible;
  user-select: none;
  touch-action: pan-y;
}

.smudge-canvas {
  position: absolute;
  top: 0;
  left: calc((100vw - 100%) / -2);
  display: block;
  width: 100vw;
  height: 100%;
}

.portfolio-puck {
  position: absolute;
  z-index: 2;
  display: block;
  --leader-length: clamp(72px, 12vw, 170px);
  --leader-run: clamp(51px, 8.5vw, 120px);
  width: clamp(67px, 9.2vw, 138px);
  aspect-ratio: 1;
  border: var(--stroke) solid transparent;
  border-radius: 50%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--line);
  cursor: grab;
  outline: none;
  touch-action: none;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: transform 260ms cubic-bezier(0.32, 0.72, 0.32, 1);
}

.portfolio-puck-one {
  --puck-reveal-delay: 180ms;
}

.portfolio-puck-three {
  --puck-reveal-delay: 280ms;
}

.portfolio-puck-two {
  --puck-reveal-delay: 380ms;
}

.portfolio-puck-four {
  --puck-reveal-delay: 480ms;
}

.portfolio-puck:not(.is-puck-ready) .puck-shell,
.portfolio-puck:not(.is-puck-ready) .puck-lottie,
.portfolio-puck:not(.is-puck-ready) .puck-video {
  visibility: hidden;
}

.portfolio-puck.is-puck-ready .puck-shell,
.portfolio-puck.is-puck-ready .puck-lottie,
.portfolio-puck.is-puck-ready .puck-video {
  animation: puck-visual-scale-on 520ms cubic-bezier(0.18, 0.82, 0.24, 1) backwards;
  animation-delay: var(--puck-reveal-delay, 180ms);
}

@keyframes puck-visual-scale-on {
  0% {
    visibility: hidden;
    transform: scale(0.72);
  }

  1% {
    visibility: visible;
    transform: scale(0.72);
  }

  100% {
    visibility: visible;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-puck {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .portfolio-puck .puck-shell,
  .portfolio-puck .puck-lottie,
  .portfolio-puck .puck-video {
    animation: none;
    visibility: visible;
  }
}

.portfolio-puck:active,
.portfolio-puck.is-dragging {
  cursor: grabbing;
}

.portfolio-puck:hover,
.portfolio-puck:focus-visible {
  transform: translate(-50%, -50%) scale(1);
}

.portfolio-puck.is-dragging {
  transform: translate(-50%, -50%) scale(1);
}

.puck-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.puck-shell {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  border: var(--stroke) solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--bg) 48%, transparent);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: none;
  transform: scale(1);
  transform-origin: center;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-puck:hover .puck-shell,
.portfolio-puck:focus-visible .puck-shell {
  transform: scale(0.9);
}

.puck-lottie {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.puck-lottie-animation {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.puck-lottie svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.puck-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.portfolio-puck-one .puck-lottie,
.portfolio-puck-two .puck-lottie {
  inset: 15%;
}

.portfolio-puck-four .puck-lottie {
  inset: 10%;
}

.portfolio-puck-one {
  left: 22%;
  top: 26%;
  animation-delay: 260ms;
}

.portfolio-puck-two {
  left: 62%;
  top: 36%;
  animation-delay: 380ms;
}

.portfolio-puck-three {
  left: 42%;
  top: 62%;
  animation-delay: 500ms;
}

.portfolio-puck-four {
  left: 78%;
  top: 72%;
  animation-delay: 620ms;
}

.portfolio-puck::before {
  content: "";
  position: absolute;
  left: 28%;
  top: 30%;
  z-index: 2;
  width: var(--leader-length);
  height: var(--stroke);
  background: var(--line);
  opacity: 0;
  pointer-events: none;
  transform: rotate(225deg) scaleX(0);
  transform-origin: left center;
  transition:
    opacity 80ms ease,
    transform 360ms cubic-bezier(0.76, 0, 0.24, 1);
}

.portfolio-puck::after {
  content: "";
  position: absolute;
  inset: -7%;
  z-index: 0;
  border: var(--stroke) dashed var(--line);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  rotate: 0deg;
  scale: 0.76;
  transition:
    opacity 220ms ease,
    scale 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-puck:hover::after,
.portfolio-puck:focus-visible::after {
  opacity: 1;
  scale: 1;
  animation: puck-orbit-ring 1800ms linear infinite;
}

.puck-label {
  position: absolute;
  z-index: 3;
  right: calc(72% + var(--leader-run));
  top: calc(30% - var(--leader-run));
  display: block;
  width: max-content;
  max-width: min(52vw, 460px);
  padding: 5px 9px 6px;
  border: var(--stroke) solid var(--line);
  background: var(--bg);
  color: var(--line);
  font-family: var(--display-font);
  font-size: clamp(0.7rem, 1.225vw, 1.092rem);
  font-weight: var(--display-weight);
  line-height: 0.86;
  overflow: visible;
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  pointer-events: none;
  transform: translateY(-50%) translateX(6px);
  transition:
    clip-path 180ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 120ms ease,
    transform 160ms cubic-bezier(0.32, 0.72, 0.32, 1);
  white-space: nowrap;
}

.portfolio-puck:hover::before,
.portfolio-puck:focus-visible::before {
  opacity: 1;
  transform: rotate(225deg) scaleX(1);
}

.portfolio-puck:hover .puck-label,
.portfolio-puck:focus-visible .puck-label {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transition:
    clip-path 260ms cubic-bezier(0.76, 0, 0.24, 1) 300ms,
    opacity 160ms ease 300ms,
    transform 240ms cubic-bezier(0.32, 0.72, 0.32, 1) 300ms;
}

.portfolio-puck:hover .puck-label,
.portfolio-puck:focus-visible .puck-label {
  transform: translateY(-50%) translateX(0);
}

@media (hover: none), (max-width: 700px) {
  .portfolio-puck .puck-shell {
    transform: scale(0.9);
  }

  .portfolio-puck::after {
    opacity: 0;
    scale: 0.76;
    animation: none;
  }

  .portfolio-puck::before,
  .portfolio-puck .puck-label {
    opacity: 0;
  }

  .portfolio-puck::before {
    transform: rotate(225deg) scaleX(0);
  }

  .portfolio-puck .puck-label {
    clip-path: inset(0 0 0 100%);
    transform: translateY(-50%) translateX(6px);
  }

  .portfolio-puck.is-puck-ready::after {
    animation:
      mobile-puck-orbit-on 360ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--puck-reveal-delay, 180ms) + 500ms) both,
      puck-orbit-ring 1800ms linear calc(var(--puck-reveal-delay, 180ms) + 860ms) infinite;
  }

  .portfolio-puck.is-puck-ready::before {
    opacity: 1;
    transform: rotate(225deg) scaleX(1);
    transition:
      opacity 80ms ease calc(var(--puck-reveal-delay, 180ms) + 610ms),
      transform 300ms cubic-bezier(0.76, 0, 0.24, 1) calc(var(--puck-reveal-delay, 180ms) + 610ms);
  }

  .portfolio-puck.is-puck-ready .puck-label {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(-50%) translateX(0);
    transition:
      clip-path 240ms cubic-bezier(0.76, 0, 0.24, 1) calc(var(--puck-reveal-delay, 180ms) + 760ms),
      opacity 120ms ease calc(var(--puck-reveal-delay, 180ms) + 760ms),
      transform 220ms cubic-bezier(0.32, 0.72, 0.32, 1) calc(var(--puck-reveal-delay, 180ms) + 760ms);
  }
}

@keyframes puck-orbit-ring {
  to {
    rotate: 360deg;
  }
}

@keyframes mobile-puck-orbit-on {
  from {
    opacity: 0;
    scale: 0.76;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-puck::after {
    opacity: 1;
    scale: 1;
    animation: none;
  }

  .portfolio-puck::before,
  .portfolio-puck .puck-label {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transition: none;
  }

  .portfolio-puck::before {
    transform: rotate(225deg) scaleX(1);
  }

  .portfolio-puck .puck-label {
    transform: translateY(-50%) translateX(0);
  }
}

.secondary-projects {
  display: grid;
  gap: 0;
  margin-top: 10px;
  border-top: var(--stroke) solid var(--line);
  border-bottom: var(--stroke) solid var(--line);
}

.selected-work-heading,
.secondary-projects-heading,
.playground-heading {
  display: grid;
  place-items: center start;
  padding: clamp(8px, 1.13vw, 15px) clamp(14px, 2vw, 28px);
  border-bottom: var(--stroke) solid var(--line);
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--bg) 13%, transparent) 0 1px,
      transparent 1px 4px
    ),
    linear-gradient(
      0deg,
      color-mix(in srgb, var(--bg) 11%, transparent) 0 1px,
      transparent 1px 4px
    ),
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, white 10%, transparent) 0 2px,
      transparent 2px 6px
    ),
    var(--line);
  background-size: 4px 4px, 4px 4px, 12px 100%, auto;
  overflow: hidden;
}

.playground-heading {
  margin-top: 10px;
  border: var(--stroke) solid var(--line);
}

.selected-work-heading {
  margin-bottom: 10px;
  border: var(--stroke) solid var(--line);
}

.secondary-projects-heading h2,
.selected-work-heading h2,
.playground-heading h2,
.secondary-project-list a,
.secondary-project-list strong,
.secondary-project-list span,
.secondary-project-list em {
  font-family: var(--body-font);
  font-weight: 700;
  letter-spacing: 0;
}

.secondary-projects-heading h2,
.selected-work-heading h2,
.playground-heading h2 {
  display: flex;
  width: max-content;
  min-width: max-content;
  align-items: center;
  margin: 0;
  color: var(--bg);
  font-family: var(--display-font);
  font-size: clamp(1.561rem, 2.779vw, 2.779rem);
  font-weight: var(--display-weight);
  line-height: 0.9;
  text-align: left;
  text-transform: none;
  white-space: nowrap;
  --marquee-distance: 50%;
  --marquee-duration: 34s;
  animation: heading-marquee 34s linear infinite;
  animation-duration: var(--marquee-duration);
  will-change: transform;
}

.secondary-projects-heading .marquee-set,
.selected-work-heading .marquee-set,
.playground-heading .marquee-set {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(18px, 2.4vw, 38px);
  align-items: center;
}

.playground-heading h2 {
  --marquee-duration: 26s;
}

.selected-work-heading h2 {
  --marquee-duration: 28s;
}

@keyframes heading-marquee {
  from {
    transform: translateX(calc(var(--marquee-distance) * -1));
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .secondary-projects-heading h2,
  .selected-work-heading h2,
  .playground-heading h2 {
    animation: none;
    transform: translateY(clamp(-14px, -3vw, -10px));
  }
}

.secondary-project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(20px, 4vw, 72px);
}

.secondary-project-list a {
  position: relative;
  display: grid;
  grid-template-columns: 4ch minmax(0, 1fr) minmax(150px, 0.38fr);
  gap: clamp(12px, 2vw, 34px);
  align-items: stretch;
  min-height: clamp(58px, 6vw, 84px);
  padding: clamp(13px, 1.7vw, 21px) 0;
  border-bottom: var(--stroke) solid var(--line);
  color: var(--line);
  text-decoration: none;
  overflow: hidden;
}

.secondary-project-list a::before,
.secondary-project-list a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, var(--line) 18%, transparent) 0 var(--stroke),
      transparent var(--stroke) var(--line-step)
    );
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
}

.secondary-project-list a::after {
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 calc(var(--line-step) * 0.48),
      color-mix(in srgb, var(--line) 12%, transparent) calc(var(--line-step) * 0.48) calc(var(--line-step) * 0.48 + var(--stroke)),
      transparent calc(var(--line-step) * 0.48 + var(--stroke)) var(--line-step)
    );
}

.secondary-project-list a > * {
  position: relative;
  z-index: 1;
}

.secondary-project-list a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.secondary-project-list em {
  display: none;
  color: color-mix(in srgb, var(--line) 68%, transparent);
  font-size: clamp(0.7rem, 0.92vw, 0.84rem);
  font-style: normal;
  line-height: 1;
  text-transform: none;
}

.secondary-project-list a > span {
  color: color-mix(in srgb, var(--line) 68%, transparent);
  font-size: clamp(0.7rem, 0.92vw, 0.84rem);
  font-style: normal;
  line-height: 1;
  text-transform: none;
  align-self: start;
  padding-left: clamp(6px, 0.8vw, 12px);
}

.secondary-project-aside {
  position: relative;
  display: grid;
  min-height: 100%;
  align-items: center;
  justify-items: end;
  padding-right: clamp(15px, 1.4vw, 20px);
}

.secondary-project-aside em {
  align-self: end;
  width: max-content;
  min-width: clamp(92px, 8vw, 120px);
  text-align: center;
  white-space: nowrap;
}

.secondary-project-preview {
  position: relative;
  right: auto;
  bottom: auto;
  width: clamp(48px, 5.2vw, 76px);
  margin: 0;
  aspect-ratio: 1;
  pointer-events: none;
}

.home-selected-list-item .home-selected-preview {
  width: clamp(28px, 3.15vw, 41px);
}

.secondary-project-preview-media {
  position: absolute;
  inset: 4%;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 34% 34%,
      color-mix(in srgb, var(--line) 28%, transparent) 0 1px,
      transparent 1.5px
    ),
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, var(--line) 34%, transparent) 0 var(--stroke),
      transparent var(--stroke) 7px
    ),
    var(--bg);
  background-size: 13px 13px, auto, auto;
  opacity: 1;
  transform: scale(0.82);
  transition:
    opacity 220ms ease 260ms,
    transform 380ms cubic-bezier(0.32, 0.72, 0.32, 1) 220ms;
}

.secondary-project-preview-media.has-video {
  background: var(--bg);
}

.secondary-project-preview-media :is(img, video) {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secondary-project-preview svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-110deg);
  transform-origin: center;
}

.secondary-project-preview circle {
  fill: none;
  stroke: var(--line);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 302 0;
  stroke-dashoffset: 0;
  vector-effect: non-scaling-stroke;
}

.secondary-project-preview .preview-ring-trail {
  opacity: 0.62;
  stroke-width: 1;
}

.secondary-project-preview .preview-ring-main {
  opacity: 0;
  stroke-dasharray: 0 302;
  stroke-dashoffset: 302;
  stroke-width: 1;
}

.secondary-project-list a:hover .secondary-project-preview svg,
.secondary-project-list a:focus-visible .secondary-project-preview svg,
.home-selected-list-item:hover .secondary-project-preview svg,
.home-selected-list-item:focus-visible .secondary-project-preview svg {
  animation: project-preview-orbit 680ms cubic-bezier(0.32, 0.72, 0.32, 1) forwards;
}

.secondary-project-list a:hover .preview-ring-main,
.secondary-project-list a:focus-visible .preview-ring-main,
.home-selected-list-item:hover .preview-ring-main,
.home-selected-list-item:focus-visible .preview-ring-main {
  animation: project-preview-trim-main 620ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.secondary-project-list a:hover .secondary-project-preview-media,
.secondary-project-list a:focus-visible .secondary-project-preview-media,
.home-selected-list-item:hover .secondary-project-preview-media,
.home-selected-list-item:focus-visible .secondary-project-preview-media {
  opacity: 1;
  transform: scale(1);
}

.secondary-project-list strong {
  display: inline-block;
  align-self: stretch;
  color: var(--line);
  font-family: var(--display-font);
  font-size: clamp(0.658rem, 1.848vw, 2.023rem);
  font-weight: var(--display-weight);
  line-height: 0.84;
  text-transform: none;
  transform: scale(1);
  transform-origin: left center;
  transition:
    color 180ms ease,
    transform 750ms cubic-bezier(0.76, 0, 0.24, 1);
}

.secondary-project-list .secondary-project-long-title strong {
  align-self: center;
  font-size: clamp(0.518rem, 1.4vw, 1.533rem);
}

.secondary-project-list .secondary-project-long-title .keep-together {
  font-family: inherit;
  font-weight: inherit;
  white-space: nowrap;
}

.secondary-project-list a:hover,
.secondary-project-list a:focus-visible {
  outline: 0;
}

.secondary-project-list a:hover::before,
.secondary-project-list a:focus-visible::before {
  animation: project-line-trim-down 520ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.secondary-project-list a:hover::after,
.secondary-project-list a:focus-visible::after {
  animation: project-line-trim-wave 620ms cubic-bezier(0.76, 0, 0.24, 1) 70ms both;
}

.secondary-project-list a:hover strong,
.secondary-project-list a:focus-visible strong {
  color: var(--headline);
  transform: scale(0.9);
}

@keyframes project-line-trim-down {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transform: translateY(-10%);
  }

  16% {
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes project-line-trim-wave {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transform: translateY(-18%) translateX(calc(var(--line-step) * 0.45));
  }

  24% {
    opacity: 1;
  }

  58% {
    transform: translateY(3%) translateX(calc(var(--line-step) * -0.12));
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

@keyframes project-preview-orbit {
  0% {
    transform: rotate(-110deg);
  }

  58% {
    transform: rotate(34deg);
  }

  100% {
    transform: rotate(-90deg);
  }
}

@keyframes project-preview-trim-main {
  0% {
    opacity: 0;
    stroke-dasharray: 0 302;
    stroke-dashoffset: 302;
  }

  4% {
    opacity: 1;
  }

  34% {
    opacity: 1;
    stroke-dasharray: 92 210;
    stroke-dashoffset: 244;
  }

  72% {
    stroke-dasharray: 238 64;
    stroke-dashoffset: 82;
  }

  100% {
    opacity: 1;
    stroke-dasharray: 302 0;
    stroke-dashoffset: 0;
  }
}

@keyframes project-preview-trim-trail {
  0% {
    opacity: 0;
    stroke-dasharray: 0 302;
    stroke-dashoffset: 314;
  }

  24% {
    opacity: 0.42;
    stroke-dasharray: 38 264;
    stroke-dashoffset: 274;
  }

  64% {
    opacity: 0.22;
    stroke-dasharray: 118 184;
    stroke-dashoffset: 124;
  }

  100% {
    opacity: 0;
    stroke-dasharray: 42 260;
    stroke-dashoffset: -24;
  }
}

.playground-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--stroke);
  margin-top: 0;
  border: var(--stroke) solid var(--line);
  border-top: 0;
  background: var(--line);
}

.can-field,
.shape-field {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1;
  border: 0;
  background: var(--bg);
  overflow: hidden;
  user-select: none;
}

.can-field {
  display: grid;
  place-items: center;
  cursor: grab;
  touch-action: none;
}

.playground-tile {
  position: relative;
  display: grid;
  color: var(--line);
  text-decoration: none;
  cursor: pointer;
}

.home-playground-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(17px, 1.38vw, 24px);
  row-gap: clamp(20px, 2.2vw, 36px);
  margin-top: clamp(12px, 1.25vw, 22px);
  border: 0;
  background: transparent;
}

.home-playground-module {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.home-playground-module .selected-work-heading.home-selected-heading {
  flex: 0 0 auto;
}

.home-playground-module .playground-tile {
  flex: 1 1 auto;
  min-height: clamp(210px, 22vw, 344px);
  aspect-ratio: 1.24;
  border: 0;
  border-top: var(--stroke) solid var(--line);
}

.home-playground-module .shape-field {
  border-bottom: var(--stroke) solid var(--line);
}

.home-playground-module .playground-type-label {
  display: none;
}

.home-playground-module .cylinder-canvas,
.home-playground-module .shape-preview-svg {
  transform: translateY(clamp(-28px, -2vw, -14px));
}

.playground-type-label {
  position: absolute;
  top: clamp(10px, 1.5vw, 22px);
  left: clamp(10px, 1.5vw, 22px);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - clamp(20px, 3vw, 44px));
  padding: 0;
  color: var(--line);
  font-family: var(--display-font);
  font-size: clamp(1.155rem, 2.17vw, 2.1rem);
  font-weight: var(--display-weight);
  line-height: 0.9;
  letter-spacing: 0;
  pointer-events: none;
}

.playground-type-text {
  display: inline-block;
  width: 0;
  max-width: var(--type-ch);
  overflow: hidden;
  white-space: nowrap;
}

.playground-tile.is-type-ready .playground-type-text {
  animation: playground-type-on 940ms steps(var(--type-steps, 12), end) both;
}

.playground-type-label::after {
  content: "";
  display: block;
  width: 0.42em;
  height: 0.82em;
  margin-left: 0.08em;
  border: var(--stroke) solid var(--line);
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--bg) 13%, transparent) 0 1px,
      transparent 1px 4px
    ),
    linear-gradient(
      0deg,
      color-mix(in srgb, var(--bg) 11%, transparent) 0 1px,
      transparent 1px 4px
    ),
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, white 10%, transparent) 0 2px,
      transparent 2px 6px
    ),
    var(--line);
  background-size: 4px 4px, 4px 4px, 12px 100%, auto;
  opacity: 0;
}

.playground-tile.is-type-ready .playground-type-label::after {
  opacity: 1;
  animation: playground-cursor-blink 780ms steps(1, end) infinite;
}

.playground-type-label[style*="8ch"] {
  --type-steps: 8;
}

.playground-type-label[style*="12ch"] {
  --type-steps: 12;
}

@keyframes playground-type-on {
  from {
    width: 0;
  }

  to {
    width: var(--type-ch);
  }
}

@keyframes playground-cursor-blink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

.can-field[data-cylinder-mode="preview"],
.shape-field[data-shape-mode="preview"] {
  cursor: pointer;
  touch-action: pan-y;
}

.can-field[data-cylinder-mode="preview"] .cylinder-canvas {
  pointer-events: none;
}

.can-field.is-dragging {
  cursor: grabbing;
}

.cylinder-canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: auto;
}

.skin-toggle {
  position: absolute;
  right: clamp(12px, 1.4vw, 20px);
  bottom: clamp(12px, 1.4vw, 20px);
  z-index: 5;
  padding: 7px 10px 8px;
  border: var(--stroke) solid var(--line);
  border-radius: 0;
  background: color-mix(in srgb, var(--bg) 68%, transparent);
  color: var(--line);
  font-family: var(--display-font);
  font-size: clamp(0.7rem, 0.945vw, 0.875rem);
  font-weight: var(--display-weight);
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms cubic-bezier(0.32, 0.72, 0.32, 1);
}

.skin-toggle:hover,
.skin-toggle:focus-visible {
  background: var(--line);
  color: var(--bg);
  outline: none;
  transform: translateY(-1px);
}

.skin-toggle[aria-pressed="true"] {
  background: var(--line);
  color: var(--bg);
}

.shape-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(28px, 3.4vw, 46px);
  height: clamp(38px, 4.7vw, 64px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--line);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    color 180ms ease,
    transform 180ms cubic-bezier(0.32, 0.72, 0.32, 1);
}

.shape-carousel-button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
}

.shape-carousel-button-prev {
  left: clamp(12px, 1.8vw, 22px);
}

.shape-carousel-button-prev::before {
  clip-path: polygon(
    100% 0,
    100% 18%,
    72% 18%,
    72% 34%,
    46% 34%,
    46% 50%,
    72% 50%,
    72% 66%,
    100% 66%,
    100% 84%,
    72% 84%,
    72% 100%,
    0 50%,
    72% 0
  );
}

.shape-carousel-button-next {
  right: clamp(12px, 1.8vw, 22px);
}

.shape-carousel-button-next::before {
  clip-path: polygon(
    0 0,
    28% 0,
    100% 50%,
    28% 100%,
    28% 84%,
    0 84%,
    0 66%,
    28% 66%,
    28% 50%,
    54% 50%,
    54% 34%,
    28% 34%,
    28% 18%,
    0 18%
  );
}

.shape-carousel-button:hover,
.shape-carousel-button:focus-visible {
  transform: translateY(-50%) scale(1.08);
}

.shape-carousel-button:active {
  transform: translateY(-50%) scale(0.94);
}

.shape-field {
  cursor: crosshair;
  touch-action: none;
}

.shape-field[data-shape-mode="preview"] {
  cursor: pointer;
}

.shape-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.shape-trace {
  fill: none;
  stroke: var(--line);
  stroke-width: var(--stroke);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.shape-object {
  stroke: var(--line);
  stroke-width: var(--stroke);
  vector-effect: non-scaling-stroke;
}

.shape-pixel-fill-base {
  fill: var(--line);
}

.shape-pixel-fill-grid {
  fill: none;
  stroke: var(--bg);
  stroke-width: 0.8;
  opacity: 0.22;
}

.shape-preview-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.shape-preview-live-trace {
  opacity: 1;
  transition: opacity 140ms ease;
}

.shape-preview-live-trace.is-resolving {
  opacity: 0;
}

.shape-field[data-shape-mode="preview"] .shape-object {
  transition: opacity 300ms ease;
}

.shape-field[data-shape-mode="preview"] .shape-object.is-clearing {
  opacity: 0;
}

.shape-preview-trace {
  fill: none;
  stroke: var(--line);
  stroke-width: var(--stroke);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: shape-preview-draw 6.2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.shape-preview-object {
  fill: url("#shape-preview-pixel-fill");
  stroke: var(--line);
  stroke-width: var(--stroke);
  vector-effect: non-scaling-stroke;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: shape-preview-drop 6.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.shape-preview-trace-two,
.shape-preview-object-two {
  animation-delay: 1.35s;
}

.shape-preview-trace-three,
.shape-preview-object-three {
  animation-delay: 2.7s;
}

@keyframes shape-preview-draw {
  0%,
  8% {
    opacity: 0;
    stroke-dashoffset: 420;
  }

  18%,
  44% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  54%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes shape-preview-drop {
  0%,
  18% {
    opacity: 0;
    transform: translateY(-16px) rotate(0deg);
  }

  24% {
    opacity: 1;
  }

  42% {
    opacity: 1;
    transform: translateY(58px) rotate(10deg);
  }

  50% {
    opacity: 1;
    transform: translateY(44px) rotate(8deg);
  }

  66% {
    opacity: 1;
    transform: translateY(54px) rotate(12deg);
  }

  78%,
  100% {
    opacity: 0;
    transform: translateY(54px) rotate(12deg);
  }
}

.playground-shell {
  padding-bottom: clamp(64px, 8vw, 120px);
}

body.playground-page {
  height: 100svh;
  overflow: hidden;
}

.playground-page .page {
  height: 100svh;
  padding-bottom: 0;
  overflow: hidden;
}

.playground-page .playground-shell {
  padding-bottom: 0;
}

.playground-page .playground-detail {
  --playground-detail-gap: clamp(10px, 1vw, 18px);
  --playground-bottom-gap: clamp(16px, 2vw, 30px);
  grid-template-columns:
    minmax(0, 1fr)
    minmax(260px, min(40vw, calc(100svh - var(--masthead-spacer) - var(--masthead-top) - var(--playground-detail-gap) - var(--playground-bottom-gap) - clamp(34px, 3vw, 54px))));
  align-items: start;
  height: calc(100svh - var(--masthead-spacer) - var(--masthead-top) - var(--playground-detail-gap) - var(--playground-bottom-gap));
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.playground-page .masthead + .playground-detail {
  margin-top: max(
    0px,
    calc(var(--masthead-spacer) + var(--masthead-top) - var(--page-top) + var(--playground-detail-gap))
  );
}

.playground-page .playground-detail-copy {
  position: static;
  align-self: start;
}

.playground-page .playground-detail-module {
  align-self: start;
  width: 100%;
}

.playground-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  min-height: calc(100svh - var(--masthead-spacer) - var(--masthead-top) - 42px);
  padding: clamp(18px, 2.8vw, 38px) 0 clamp(34px, 5vw, 76px);
  border-top: var(--stroke) solid var(--line);
}

.playground-page .playground-detail {
  border-top: 0;
}

.playground-detail + .playground-detail {
  min-height: 0;
}

.playground-detail-copy {
  position: sticky;
  top: calc(var(--masthead-bottom, 96px) + clamp(18px, 2vw, 28px));
  display: grid;
  gap: clamp(10px, 1.4vw, 18px);
  color: var(--line);
}

.playground-kicker {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(0.63rem, 0.84vw, 0.826rem);
  font-weight: var(--display-weight);
  line-height: 1;
}

.playground-detail-copy h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.24rem, 4.9vw, 5.04rem);
  font-weight: var(--display-weight);
  line-height: 0.82;
  letter-spacing: 0;
}

.playground-detail-copy p:not(.playground-kicker) {
  max-width: 36rem;
  margin: 0;
  color: var(--line);
  font-family: var(--body-font);
  font-weight: 400;
  font-size: clamp(0.88rem, 1.17vw, 1.1rem);
  line-height: 1.62;
  letter-spacing: 0;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

.playground-detail-module {
  position: relative;
  border: var(--stroke) solid var(--line);
}

.playground-page .playground-detail-module {
  border-color: var(--line);
}

.playground-page .playground-detail-module::before,
.playground-page .playground-detail-module::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  background:
    linear-gradient(var(--line), var(--line)) left top / 0 var(--stroke) no-repeat,
    linear-gradient(var(--line), var(--line)) right top / var(--stroke) 0 no-repeat,
    linear-gradient(var(--line), var(--line)) right bottom / 0 var(--stroke) no-repeat,
    linear-gradient(var(--line), var(--line)) left bottom / var(--stroke) 0 no-repeat;
  opacity: 1;
  pointer-events: none;
}

.playground-page .playground-detail-module::before {
  animation: playground-frame-trim-main 980ms cubic-bezier(0.76, 0, 0.24, 1) 180ms both;
}

.playground-page .playground-detail-module::after {
  opacity: 0;
  animation: playground-frame-trim-trail 1180ms cubic-bezier(0.76, 0, 0.24, 1) 60ms both;
}

.drum-page {
  overflow-x: hidden;
}

.drum-machine {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 2vw, 24px);
  align-items: start;
  min-height: calc(100svh - var(--masthead-top) - clamp(22px, 4vw, 52px));
  padding-top: 0;
  padding-bottom: clamp(18px, 3vw, 42px);
}

.drum-page .masthead + .drum-machine {
  margin-top: clamp(54px, 5.8vw, 78px);
}

.drum-copy {
  color: var(--line);
  padding-bottom: clamp(8px, 0.9vw, 14px);
  border-bottom: var(--stroke) solid var(--line);
}

.drum-copy h2 {
  margin: 0;
  color: var(--line);
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  font-weight: var(--display-weight);
  line-height: 0.92;
  letter-spacing: 0;
}

.drum-copy p:not(.playground-kicker) {
  max-width: min(74rem, 100%);
  margin: 0;
  font-family: var(--body-font);
  font-size: clamp(0.98rem, 1.22vw, 1.28rem);
  line-height: 1.38;
}

.drum-stage {
  --drum-clickable-fill: #463027;
  display: grid;
  grid-template-columns: minmax(0, 1080px);
  gap: 0;
  align-self: start;
  align-items: center;
  justify-content: center;
  justify-items: stretch;
  color: var(--line);
  margin-top: 0;
}

.drum-wheel-field {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: minmax(380px, max-content) max-content;
  align-items: center;
  justify-items: center;
  justify-content: start;
  gap: clamp(42px, 4.6vw, 72px);
  width: min(100%, 1080px);
  min-width: 0;
  padding-top: 0;
  margin-top: -72px;
  transform: translateX(calc(-3vw - 25px));
}

.drum-dial {
  position: relative;
  --drum-step-size: 16px;
  --drum-empty-step-scale: 0.625;
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
}

.drum-dial-drums {
  grid-column: 1;
  grid-row: 1;
  width: min(31vw, 330px, calc(100svh - 460px));
  min-width: 290px;
  transform: translateY(-26px);
}

.drum-dial-synth {
  position: relative;
  z-index: 8;
  width: min(19.2vw, 216px);
  min-width: 168px;
}

.drum-synth-stack {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: clamp(14px, 1.35vw, 22px);
  align-items: center;
  justify-items: center;
  width: auto;
  transform: translateY(-26px);
}

.drum-synth-cell {
  display: grid;
  grid-template-columns: auto;
  align-items: center;
  justify-items: center;
  opacity: 0.54;
  transition:
    opacity 180ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.drum-synth-cell.is-active {
  opacity: 1;
  transform: scale(1.04);
}

.drum-orbit {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: 50%;
  transform-origin: center;
  pointer-events: none;
}

.drum-halo-orbit,
.drum-note-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-origin: center;
  pointer-events: none;
}

.drum-halo-orbit {
  z-index: 6;
}

.drum-note-orbit {
  z-index: 8;
}

.drum-ring {
  position: absolute;
  inset: 27%;
  border: calc(var(--stroke) * 1.5) solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}

.drum-ring-kick {
  inset: 27%;
}

.drum-ring-snare {
  inset: 14.5%;
}

.drum-ring-hat {
  inset: 2%;
}

.drum-ring-tom {
  inset: -10.5%;
}

.drum-ring-pad {
  inset: 8.25%;
}

.drum-ring-lead {
  inset: 2%;
}

.drum-dial-synth .drum-ring-pad {
  inset: 4%;
}

.drum-dial-synth .drum-ring-lead {
  inset: 17%;
}

.drum-pad-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.drum-label-layer {
  position: absolute;
  inset: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.drum-label-layer text {
  fill: var(--line);
  font-family: var(--display-font);
  font-size: clamp(0.504rem, 0.756vw, 0.784rem);
  font-weight: var(--display-weight);
  line-height: 1;
  dominant-baseline: middle;
}

.drum-dial-drums > .drum-orbit-label {
  display: none;
}

.drum-pad-segment {
  cursor: pointer;
  outline: none;
  pointer-events: none;
}

.drum-pad-hit {
  fill: transparent;
  stroke: none;
  pointer-events: auto;
  touch-action: none;
}

.drum-pad-visual {
  fill: var(--drum-clickable-fill);
  stroke: var(--line);
  stroke-width: calc(var(--stroke) * 1.5);
  pointer-events: none;
  transform-box: fill-box;
  transform-origin: center;
  transition:
    fill 140ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.drum-pad-segment:hover .drum-pad-visual,
.drum-pad-segment:focus-visible .drum-pad-visual {
  outline: none;
  transform: scale(1.04);
}

.drum-pad-segment:focus,
.drum-pad-segment:focus-visible {
  outline: none;
}

.drum-pad-segment.has-hit .drum-pad-visual {
  fill: var(--line);
  animation: drum-pad-fill 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.drum-playhead {
  position: absolute;
  left: 50%;
  top: calc(50% - clamp(15px, 1.88vw, 22px));
  z-index: 7;
  width: 60%;
  height: clamp(30px, 3.76vw, 45px);
  border: var(--stroke) solid var(--line);
  border-radius: 0 999px 999px 0;
  background: var(--bg);
  pointer-events: none;
}

.drum-dial-synth .drum-playhead {
  display: none;
}

.drum-dial-drums .drum-playhead {
  width: 68%;
}

.drum-playhead-dot {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: clamp(28px, 3.4vw, 42px);
  aspect-ratio: 1;
  border: var(--stroke) solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  transform: translate(-50%, -50%);
}

.drum-dial-synth .drum-playhead-dot {
  width: clamp(13px, 1.5vw, 17px);
}

.drum-orbit-label {
  position: absolute;
  z-index: 5;
  color: var(--line);
  font-family: var(--display-font);
  font-size: clamp(0.7rem, 1.015vw, 1.05rem);
  font-weight: var(--display-weight);
  line-height: 1;
  pointer-events: none;
}

.drum-dial-synth .drum-orbit-label {
  font-size: clamp(0.385rem, 0.518vw, 0.504rem);
  text-align: center;
  transform: translate(-50%, -100%);
}

.drum-orbit-label-kick {
  left: 39%;
  top: 31%;
  transform: translate(-120%, -58%) rotate(-38deg);
}

.drum-orbit-label-snare {
  left: 29%;
  top: 21%;
  transform: translate(-124%, -58%) rotate(-38deg);
}

.drum-orbit-label-hat {
  left: 19%;
  top: 11%;
  transform: translate(-126%, -58%) rotate(-38deg);
}

.drum-orbit-label-tom {
  left: 9%;
  top: 1%;
  transform: translate(-126%, -58%) rotate(-38deg);
}

.drum-orbit-label-pad {
  left: 24%;
  top: 16%;
  transform: translate(-126%, -58%) rotate(-38deg);
}

.drum-orbit-label-lead {
  left: 19%;
  top: 11%;
  transform: translate(-126%, -58%) rotate(-38deg);
}

.drum-dial-synth .drum-orbit-label-pad {
  left: 50%;
  top: 1%;
}

.drum-dial-synth .drum-orbit-label-lead {
  left: 50%;
  top: 13%;
}

.drum-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 23.8%;
  aspect-ratio: 1;
  z-index: 8;
  display: grid;
  place-items: center;
  align-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: default;
  transform: translate(-50%, -50%);
}

.drum-center.is-transport-pulsing {
  animation: drum-center-press 220ms cubic-bezier(0.32, 0.72, 0.32, 1) both;
}

.drum-center::before {
  display: none;
}

.drum-center-cog {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  display: block;
  width: 177%;
  height: 177%;
  overflow: visible;
  color: var(--line);
  fill: none;
  stroke: currentColor;
  stroke-width: calc(var(--stroke) * 1.5);
  stroke-linecap: butt;
  stroke-linejoin: round;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.drum-center-spindle {
  transform: rotate(var(--drum-cog-rotation, 0deg));
  transform-box: view-box;
  transform-origin: 50% 50%;
}

.drum-center-spindle * {
  vector-effect: non-scaling-stroke;
}

.drum-center-cog circle {
  fill: var(--bg);
}

.drum-center-synth {
  left: 50%;
  top: 50%;
}

.drum-dial-synth .drum-center {
  width: clamp(48px, 5.6vw, 68px);
  border: 0;
  background: transparent;
}

.drum-dial-synth .drum-center-cog {
  fill: none;
}

.drum-dial-synth .drum-center-cog circle {
  fill: var(--drum-clickable-fill);
}

.drum-dial-synth .drum-center::before {
  display: none;
}

.drum-meter {
  font-family: var(--display-font);
  font-size: clamp(0.805rem, 1.33vw, 1.225rem);
  font-weight: var(--display-weight);
  line-height: 0.82;
}

.drum-tempo {
  margin-top: 0.16em;
  font-family: var(--body-font);
  font-size: clamp(0.62rem, 0.82vw, 0.82rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.drum-step {
  position: absolute;
  display: grid;
  place-items: center;
  width: calc(var(--drum-step-size) + 4px);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--line);
  font: inherit;
  cursor: pointer;
  overflow: hidden;
  pointer-events: auto;
  touch-action: none;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition:
    background 120ms ease,
    box-shadow 120ms ease;
}

.drum-step-halo {
  position: absolute;
  display: block;
  width: calc(var(--drum-step-size) + 4px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bg);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition: transform 180ms ease-in-out;
}

.drum-step::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--drum-step-size);
  aspect-ratio: 1;
  border-radius: inherit;
  background: var(--line);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  transition: transform 180ms cubic-bezier(0.32, 0.72, 0.32, 1);
}

.drum-step::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--drum-step-size) * var(--drum-empty-step-scale));
  aspect-ratio: 1;
  border: calc(var(--stroke) * 1.5) solid var(--line);
  border-radius: 50%;
  background: var(--drum-clickable-fill);
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition:
    opacity 120ms ease,
    transform 180ms cubic-bezier(0.32, 0.72, 0.32, 1);
}

.drum-step:hover,
.drum-step:focus-visible,
.drum-step.is-active {
  background: transparent;
  box-shadow: none;
  outline: none;
}

.drum-step.is-hovered::after {
  transform: translate(-50%, -50%) scale(1.2);
}

.drum-step.has-hit.is-hovered::before {
  animation: none;
  transform: translate(-50%, -50%) scale(1.2);
}

.drum-step-halo.is-hovered {
  transform: translate(-50%, -50%) scale(1.2);
}

.drum-step.has-hit {
  background: transparent;
  box-shadow: none;
  color: var(--line);
}

.drum-step.has-hit::before {
  transform: translate(-50%, -50%) scale(1);
  animation: drum-note-fill 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.drum-step.has-hit::after {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.drum-step-index {
  display: none;
}

@keyframes drum-note-fill {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }

  68% {
    transform: translate(-50%, -50%) scale(1.12);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes drum-pad-fill {
  0% {
    transform: scale(0.96);
  }

  70% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes drum-center-press {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  42% {
    transform: translate(-50%, -50%) scale(0.9);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.drum-step-stack {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2px;
  justify-content: center;
  align-content: center;
}

.drum-hit {
  display: inline-grid;
  place-items: center;
  min-width: 1.78em;
  height: 1.18em;
  border: var(--stroke) solid currentColor;
  font-family: var(--display-font);
  font-size: clamp(0.546rem, 0.63vw, 0.672rem);
  font-weight: var(--display-weight);
  line-height: 1;
}

.drum-hit-hat,
.drum-hit-tom {
  opacity: 0.76;
}

.drum-controls,
.drum-instruments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  width: min(62vw, 700px);
}

.drum-controls {
  --drum-toolbar-width: clamp(42px, 3.45vw, 52px);
  --drum-play-size: calc(var(--drum-toolbar-width) * 1.5);
  grid-column: auto;
  grid-row: auto;
  position: absolute;
  left: auto;
  right: 72px;
  top: calc(50% - 16px);
  z-index: 12;
  align-self: auto;
  justify-self: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: var(--drum-play-size) repeat(2, var(--drum-toolbar-width)) clamp(178px, 24svh, 228px);
  gap: 8px;
  width: var(--drum-play-size);
  height: auto;
  margin-top: 0;
  pointer-events: auto;
  transform: translateY(-50%);
}

.drum-random,
.drum-transport,
.drum-clear,
.drum-instrument {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: var(--stroke) solid var(--line);
  border-radius: 50%;
  background: var(--drum-clickable-fill);
  color: var(--line);
  box-sizing: border-box;
  font-family: var(--display-font);
  font-size: clamp(0.805rem, 1.12vw, 1.085rem);
  font-weight: var(--display-weight);
  line-height: 1;
  cursor: pointer;
}

.drum-random {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  width: var(--drum-toolbar-width);
  height: var(--drum-toolbar-width);
}

.drum-clear {
  grid-column: 1;
  grid-row: 3;
  justify-self: center;
  width: var(--drum-toolbar-width);
  height: var(--drum-toolbar-width);
}

.drum-transport {
  grid-column: 1;
  grid-row: 1;
  width: var(--drum-play-size);
  height: var(--drum-play-size);
}

.drum-range {
  justify-self: center;
  width: var(--drum-toolbar-width);
}

.drum-control-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.drum-control-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  max-width: 68%;
  max-height: 68%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.drum-control-icon-random img {
  max-width: 64%;
  max-height: 64%;
}

.drum-control-icon-clear img {
  max-width: 72%;
  max-height: 72%;
}

.drum-control-icon-play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid currentColor;
  transform: translate(-38%, -50%);
}

.drum-transport.is-playing .drum-control-icon-play::before {
  width: 8px;
  height: 24px;
  border: 0;
  border-left: calc(var(--stroke) * 2.2) solid currentColor;
  border-right: calc(var(--stroke) * 2.2) solid currentColor;
  transform: translate(-50%, -50%);
}

.drum-readout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  width: 100%;
  min-height: 34px;
  padding: 5px 10px;
  border: var(--stroke) solid var(--line);
  color: var(--line);
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  line-height: 1;
}

.drum-readout-meter {
  font-size: clamp(1.02rem, 1.28vw, 1.32rem);
}

.drum-readout-tempo {
  font-family: var(--body-font);
  font-size: clamp(0.56rem, 0.76vw, 0.76rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.drum-transport.is-playing,
.drum-instrument.is-selected {
  background: var(--line);
  color: var(--bg);
}

.drum-range {
  --drum-meter-size: clamp(104px, 15svh, 136px);
  grid-column: 1;
  grid-row: 4;
  display: inline-flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: var(--drum-toolbar-width);
  min-height: 0;
  padding: 14px 6px 15px;
  border: var(--stroke) solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  box-sizing: border-box;
  font-family: var(--display-font);
  font-size: clamp(0.336rem, 0.476vw, 0.476rem);
  font-weight: var(--display-weight);
  line-height: 1;
  cursor: pointer;
}

.drum-range > span {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 0.18em;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.drum-range input {
  order: -1;
  position: absolute;
  left: 50%;
  top: 14px;
  z-index: 10;
  min-width: 0;
  width: 28px;
  height: var(--drum-meter-size);
  margin: 0;
  accent-color: var(--line);
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  writing-mode: vertical-lr;
  direction: rtl;
  opacity: 0;
  pointer-events: auto;
  transform: translateX(-50%);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.drum-range input::-webkit-slider-runnable-track {
  border: 0;
  background: transparent;
}

.drum-range input::-webkit-slider-thumb {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.drum-range input::-moz-range-track {
  border: 0;
  background: transparent;
}

.drum-range input::-moz-range-progress {
  border: 0;
  background: transparent;
}

.drum-range input::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
}

.drum-range-meter {
  order: -1;
  position: relative;
  display: block;
  width: 10px;
  height: var(--drum-meter-size);
  margin: 0 0 8px;
  border: var(--stroke) solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  box-sizing: border-box;
  overflow: visible;
  pointer-events: none;
}

.drum-range-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--drum-bpm-progress, 52.63%);
  border-radius: 999px;
  background: var(--line);
}

.drum-range-thumb {
  position: absolute;
  left: 50%;
  bottom: var(--drum-bpm-progress, 52.63%);
  width: 21px;
  aspect-ratio: 1;
  border: var(--stroke) solid var(--line);
  border-radius: 50%;
  background: var(--drum-clickable-fill);
  box-sizing: border-box;
  transform: translate(-50%, 50%);
}

.drum-range.is-open input,
.drum-range:focus-within input {
  opacity: 0;
  pointer-events: auto;
  transform: translateX(-50%);
}

.drum-chord-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.22em;
  min-width: 0;
  padding: 0;
  color: var(--line);
  font-family: var(--display-font);
  font-size: clamp(0.63rem, 0.875vw, 0.896rem);
  font-weight: var(--display-weight);
  line-height: 1;
  cursor: pointer;
}

.drum-chord-select::after {
  content: "";
  position: relative;
  z-index: 2;
  width: 0.38em;
  aspect-ratio: 1;
  border-right: calc(var(--stroke) * 1.25) solid currentColor;
  border-bottom: calc(var(--stroke) * 1.25) solid currentColor;
  pointer-events: none;
  transform: translateY(-0.14em) rotate(45deg);
}

.drum-chord-select span {
  display: none;
}

.drum-chord-select select {
  position: relative;
  z-index: 2;
  width: auto;
  min-width: 0;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  color: var(--line);
  font: inherit;
  line-height: 1;
  outline: none;
  text-align: center;
  text-align-last: center;
}

@keyframes playground-frame-trim-main {
  0% {
    background-size:
      0 var(--stroke),
      var(--stroke) 0,
      0 var(--stroke),
      var(--stroke) 0;
    opacity: 0;
  }

  6% {
    opacity: 1;
  }

  30% {
    background-size:
      100% var(--stroke),
      var(--stroke) 0,
      0 var(--stroke),
      var(--stroke) 0;
  }

  54% {
    background-size:
      100% var(--stroke),
      var(--stroke) 100%,
      0 var(--stroke),
      var(--stroke) 0;
  }

  78% {
    background-size:
      100% var(--stroke),
      var(--stroke) 100%,
      100% var(--stroke),
      var(--stroke) 0;
  }

  100% {
    background-size:
      100% var(--stroke),
      var(--stroke) 100%,
      100% var(--stroke),
      var(--stroke) 100%;
    opacity: 1;
  }
}

@keyframes playground-frame-trim-trail {
  0% {
    background-size:
      0 var(--stroke),
      var(--stroke) 0,
      0 var(--stroke),
      var(--stroke) 0;
    opacity: 0;
  }

  10% {
    opacity: 0.42;
  }

  24% {
    background-size:
      42% var(--stroke),
      var(--stroke) 0,
      0 var(--stroke),
      var(--stroke) 0;
  }

  44% {
    background-size:
      92% var(--stroke),
      var(--stroke) 38%,
      0 var(--stroke),
      var(--stroke) 0;
    opacity: 0.3;
  }

  66% {
    background-size:
      100% var(--stroke),
      var(--stroke) 92%,
      48% var(--stroke),
      var(--stroke) 0;
    opacity: 0.2;
  }

  86% {
    background-size:
      100% var(--stroke),
      var(--stroke) 100%,
      100% var(--stroke),
      var(--stroke) 54%;
    opacity: 0.12;
  }

  100% {
    background-size:
      100% var(--stroke),
      var(--stroke) 100%,
      100% var(--stroke),
      var(--stroke) 100%;
    opacity: 0;
  }
}

.project-shell {
  padding-bottom: clamp(64px, 8vw, 120px);
}

.project-page .masthead {
  min-height: clamp(58px, 6vw, 78px);
  margin-bottom: 0;
  padding: clamp(8px, 1.1vw, 15px) 0;
}

.project-page.is-scrolled .masthead {
  min-height: clamp(58px, 6vw, 78px);
  padding: clamp(8px, 1.1vw, 15px) 0;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.project-page h1,
.project-page.is-scrolled h1 {
  width: 3.2ch;
  font-size: var(--project-info-heading-size);
}

.project-page .title-full,
.project-page.is-scrolled .title-full {
  opacity: 0;
  transform: translateX(0.28em) scale(0.42);
}

.project-page .title-compact,
.project-page.is-scrolled .title-compact {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.project-detail {
  display: grid;
  gap: clamp(16px, 1.4vw, 20px);
  margin-top: 0;
}

.project-content-loading .project-hero h2,
.project-content-loading .project-hero p,
.project-content-loading .project-content-grid,
.project-content-loading .project-media-frame,
.project-content-loading .module-one-process-title,
.project-content-loading .module-one-copy,
.project-content-loading .module-one-meta,
.project-content-loading .module-one-circle,
.project-content-loading .project-process-grid figure,
.project-content-loading .additional-creative h3,
.project-content-loading .creative-frame,
.project-content-loading .project-support-grid > div,
.project-content-loading .editorial-alternate-copy,
.project-content-loading .editorial-alternate-player {
  opacity: 0;
  transform: translateY(18px);
}

.project-content-ready .project-hero h2,
.project-content-ready .project-hero p,
.project-content-ready .project-content-grid,
.project-content-ready .project-media-frame,
.project-content-ready .module-one-process-title,
.project-content-ready .module-one-copy,
.project-content-ready .module-one-meta,
.project-content-ready .module-one-circle,
.project-content-ready .project-process-grid figure,
.project-content-ready .additional-creative h3,
.project-content-ready .creative-frame,
.project-content-ready .project-support-grid > div,
.project-content-ready .editorial-alternate-copy,
.project-content-ready .editorial-alternate-player {
  animation: project-content-rise 760ms cubic-bezier(0.18, 0.82, 0.24, 1) both;
  animation-delay: var(--project-content-delay, 0ms);
}

.project-content-ready .project-hero h2 {
  --project-content-delay: 40ms;
}

.project-content-ready .project-hero p {
  --project-content-delay: 110ms;
}

.project-content-ready .project-media-frame {
  --project-content-delay: 180ms;
}

.project-content-ready .project-content-grid {
  --project-content-delay: 230ms;
}

.project-content-ready .module-one-process-title {
  --project-content-delay: 300ms;
}

.project-content-ready .module-one-copy {
  --project-content-delay: 360ms;
}

.project-content-ready .module-one-meta {
  --project-content-delay: 410ms;
}

.project-content-ready .module-one-circle:nth-child(1),
.project-content-ready .project-process-grid figure:nth-child(1),
.project-content-ready .creative-frame:nth-child(1),
.project-content-ready .project-support-grid > div:nth-child(1),
.project-content-ready .editorial-alternate-copy {
  --project-content-delay: 470ms;
}

.project-content-ready .module-one-circle:nth-child(2),
.project-content-ready .project-process-grid figure:nth-child(2),
.project-content-ready .creative-frame:nth-child(2),
.project-content-ready .project-support-grid > div:nth-child(2),
.project-content-ready .editorial-alternate-player {
  --project-content-delay: 535ms;
}

.project-content-ready .module-one-circle:nth-child(3),
.project-content-ready .project-process-grid figure:nth-child(3),
.project-content-ready .creative-frame:nth-child(3),
.project-content-ready .project-support-grid > div:nth-child(3) {
  --project-content-delay: 600ms;
}

.project-content-ready .additional-creative h3 {
  --project-content-delay: 420ms;
}

.project-content-ready .creative-frame:nth-child(n + 4) {
  --project-content-delay: 660ms;
}

@keyframes project-content-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  72% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-content-loading .project-hero h2,
  .project-content-loading .project-hero p,
  .project-content-loading .project-content-grid,
  .project-content-loading .project-media-frame,
  .project-content-loading .module-one-process-title,
  .project-content-loading .module-one-copy,
  .project-content-loading .module-one-meta,
  .project-content-loading .module-one-circle,
  .project-content-loading .project-process-grid figure,
  .project-content-loading .additional-creative h3,
  .project-content-loading .creative-frame,
  .project-content-loading .project-support-grid > div,
  .project-content-loading .editorial-alternate-copy,
  .project-content-loading .editorial-alternate-player,
  .project-content-ready .project-hero h2,
  .project-content-ready .project-hero p,
  .project-content-ready .project-content-grid,
  .project-content-ready .project-media-frame,
  .project-content-ready .module-one-process-title,
  .project-content-ready .module-one-copy,
  .project-content-ready .module-one-meta,
  .project-content-ready .module-one-circle,
  .project-content-ready .project-process-grid figure,
  .project-content-ready .additional-creative h3,
  .project-content-ready .creative-frame,
  .project-content-ready .project-support-grid > div,
  .project-content-ready .editorial-alternate-copy,
  .project-content-ready .editorial-alternate-player {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.project-compact-title {
  position: sticky;
  top: var(--masthead-bottom, 82px);
  z-index: 9;
  display: flex;
  align-items: center;
  min-height: 0;
  margin: 0 0 clamp(10px, 1.4vw, 18px);
  padding: clamp(9px, 1.15vw, 14px) var(--masthead-frame-inset);
  border-right: var(--stroke) solid var(--line);
  border-bottom: var(--stroke) solid var(--line);
  border-left: var(--stroke) solid var(--line);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  color: var(--headline);
  font-family: var(--display-font);
  font-size: clamp(0.95rem, 1.45vw, 1.32rem);
  font-weight: var(--display-weight);
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    background-color 280ms ease,
    border-color 280ms ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.project-page .page > .project-compact-title {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.project-compact-title::after {
  content: none;
}

.project-compact-title span {
  display: block;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

body.is-project-title-pinned .project-compact-title {
  opacity: 1;
}

.project-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(18px, 3vw, 44px);
  row-gap: clamp(20px, 4vw, 72px);
  align-items: end;
  min-height: clamp(75px, 11vw, 160px);
  padding: clamp(13px, 2.25vw, 32px) 0 0;
  padding-top: clamp(7px, 1.125vw, 16px);
}

.project-hero h2 {
  grid-column: 1 / -1;
  max-width: 100%;
  margin: 0;
  color: var(--headline);
  font-family: var(--display-font);
  font-size: clamp(2.284rem, 6.116vw, 5.828rem);
  font-weight: var(--display-weight);
  line-height: 0.908;
  letter-spacing: 0;
  padding-bottom: clamp(14px, 1.6vw, 24px);
  border-bottom: var(--stroke) solid var(--line);
  text-transform: none;
  transform-origin: left top;
  will-change: opacity, transform;
}

.project-hero h2 .title-keep-together {
  white-space: nowrap;
}

.project-hero h2 .title-line {
  display: block;
  white-space: nowrap;
}

.project-hero h2 .title-mobile-break {
  white-space: nowrap;
}

body[data-project="skimmu-money"].is-project-building .project-hero h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  overflow: visible;
  white-space: nowrap;
  color: transparent;
}

body[data-project="skimmu-money"].is-project-building .project-hero h2::before {
  content: attr(data-type-title);
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  line-height: 0.92;
  color: var(--headline);
  overflow: hidden;
  transform: translateY(-0.13em);
  clip-path: inset(-0.12em 100% -0.38em 0);
  animation: skimmu-title-type-on 680ms steps(12, end) 120ms both;
}

body[data-project="skimmu-money"].is-project-building .project-hero h2::after,
body[data-project="skimmu-money"].is-project-building .project-overview-copy h3::after,
body[data-project="skimmu-money"].is-project-building .module-one-copy h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.17em;
  height: 0.68em;
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--bg) 13%, transparent) 0 1px,
      transparent 1px 4px
    ),
    linear-gradient(
      0deg,
      color-mix(in srgb, var(--bg) 11%, transparent) 0 1px,
      transparent 1px 4px
    ),
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, white 10%, transparent) 0 2px,
      transparent 2px 6px
    ),
    var(--line);
  background-size: 4px 4px, 4px 4px, 12px 100%, auto;
  animation:
    skimmu-title-cursor 3.72s steps(12, end) 120ms forwards,
    playground-cursor-blink 520ms steps(1, end) infinite;
}

body[data-project="skimmu-money"].is-project-building .project-hero h2::after {
  top: -0.1em;
  left: 0;
}

body[data-project="skimmu-money"].is-project-building .project-overview-copy h3,
body[data-project="skimmu-money"].is-project-building .module-one-copy h3 {
  position: relative;
  max-width: 100%;
  overflow: visible;
  color: transparent;
}

body[data-project="skimmu-money"].is-project-building .project-overview-copy h3 {
  width: 100%;
}

body[data-project="skimmu-money"].is-project-building .module-one-copy h3 {
  width: max-content;
}

body[data-project="skimmu-money"].is-project-building .project-overview-copy h3::before,
body[data-project="skimmu-money"].is-project-building .module-one-copy h3::before {
  content: attr(data-type-title);
  position: absolute;
  inset: 0 auto auto 0;
  color: var(--headline);
  clip-path: inset(-0.12em 100% -0.18em 0);
  animation: skimmu-section-title-type-on 540ms steps(18, end) 220ms both;
}

body[data-project="skimmu-money"].is-project-building .project-overview-copy h3::after,
body[data-project="skimmu-money"].is-project-building .module-one-copy h3::after {
  top: 0.1em;
  left: 0;
  animation:
    skimmu-section-cursor 540ms steps(18, end) 220ms forwards,
    playground-cursor-blink 520ms steps(1, end) infinite;
}

body[data-project="skimmu-money"].is-project-building .project-overview-copy h3 {
  transform-origin: left top;
  border-bottom-color: transparent;
  background-image: linear-gradient(var(--line), var(--line));
  background-repeat: no-repeat;
  background-origin: border-box;
  background-clip: border-box;
  background-position: left bottom;
  background-size: 0 var(--stroke);
  animation: skimmu-overview-rule-load 760ms steps(12, end) 180ms both;
}

body[data-project="skimmu-money"].is-project-building .project-meta div {
  opacity: 0;
  transform: translateY(10px);
  animation: skimmu-line-item-in 520ms cubic-bezier(0.32, 0.72, 0.32, 1) 340ms both;
}

body[data-project="skimmu-money"].is-project-building .project-meta div:nth-child(1) {
  animation-delay: 260ms;
}

body[data-project="skimmu-money"].is-project-building .project-meta div:nth-child(2) {
  animation-delay: 320ms;
}

body[data-project="skimmu-money"].is-project-building .project-meta div:nth-child(3) {
  animation-delay: 380ms;
}

body[data-project="skimmu-money"].is-project-building .project-overview-copy p,
body[data-project="skimmu-money"].is-project-building .module-one-copy p {
  opacity: 0;
  transform: translateY(14px);
  animation: skimmu-body-copy-in 880ms steps(6, end) 320ms both;
}

body[data-project="skimmu-money"].is-project-building .project-media-frame,
body[data-project="skimmu-money"].is-project-building .module-one-meta div {
  opacity: 0;
  transform: translateY(16px);
  animation: skimmu-line-item-in 680ms cubic-bezier(0.32, 0.72, 0.32, 1) 420ms both;
}

body[data-project="skimmu-money"].is-project-building .project-overview-circles {
  opacity: 1;
}

body[data-project="skimmu-money"].is-project-building .project-overview-circle {
  overflow: visible;
  border-color: transparent;
}

body[data-project="skimmu-money"].is-project-building .project-overview-circle::before,
body[data-project="skimmu-money"].is-project-building .project-overview-circle::after {
  content: "";
  position: absolute;
  inset: calc(-1 * var(--stroke));
  z-index: 3;
  border-radius: 50%;
  pointer-events: none;
}

body[data-project="skimmu-money"].is-project-building .project-overview-circle::before {
  border: var(--stroke) solid color-mix(in srgb, var(--line) 38%, transparent);
  opacity: 0;
  transform: scale(0.82);
  animation: skimmu-circle-ring-in 760ms cubic-bezier(0.76, 0, 0.24, 1) 260ms both;
}

body[data-project="skimmu-money"].is-project-building .project-overview-circle::after {
  border: var(--stroke) solid var(--line);
  clip-path: polygon(50% 50%, 50% 0, 50% 0, 50% 50%);
  animation: skimmu-circle-trim 880ms cubic-bezier(0.76, 0, 0.24, 1) 260ms both;
}

body[data-project="skimmu-money"].is-project-building .project-overview-circle video {
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.82);
  animation: skimmu-circle-media-in 760ms cubic-bezier(0.32, 0.72, 0.32, 1) 420ms both;
}

@keyframes skimmu-title-type-on {
  0% {
    clip-path: inset(-0.12em 100% -0.38em 0);
  }

  100% {
    clip-path: inset(-0.12em -0.1em -0.38em 0);
  }
}

@keyframes skimmu-section-title-type-on {
  0% {
    clip-path: inset(-0.12em 100% -0.18em 0);
  }

  100% {
    clip-path: inset(-0.12em -0.14em -0.18em 0);
  }
}

@keyframes skimmu-title-cursor {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  18%,
  82% {
    opacity: 1;
    transform: translateX(var(--title-cursor-x, 11.15ch));
  }

  100% {
    opacity: 0;
    transform: translateX(var(--title-cursor-x, 11.15ch));
  }
}

@keyframes skimmu-section-cursor {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(var(--section-cursor-x, 9.1ch));
  }
}

@keyframes skimmu-overview-rule-load {
  0% {
    background-size: 0 var(--stroke);
  }

  100% {
    background-size: 100% var(--stroke);
  }
}

@keyframes skimmu-line-item-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes skimmu-body-copy-in {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(14px);
  }

  34% {
    opacity: 1;
    clip-path: inset(0 0 54% 0);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes skimmu-circle-ring-in {
  0% {
    opacity: 0;
    transform: scale(0.82) rotate(-18deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes skimmu-circle-trim {
  0% {
    opacity: 0;
    clip-path: polygon(50% 50%, 50% 0, 50% 0, 50% 50%);
    transform: rotate(-90deg);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 100%, 0 100%, 0 0, 50% 0, 50% 50%);
    transform: rotate(0deg);
  }
}

@keyframes skimmu-circle-media-in {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-project="skimmu-money"].is-project-building .project-hero h2,
  body[data-project="skimmu-money"].is-project-building .project-hero h2::before,
  body[data-project="skimmu-money"].is-project-building .project-hero h2::after,
  body[data-project="skimmu-money"].is-project-building .project-overview-copy h3,
  body[data-project="skimmu-money"].is-project-building .project-overview-copy h3::before,
  body[data-project="skimmu-money"].is-project-building .project-overview-copy h3::after,
  body[data-project="skimmu-money"].is-project-building .module-one-copy h3,
  body[data-project="skimmu-money"].is-project-building .module-one-copy h3::before,
  body[data-project="skimmu-money"].is-project-building .module-one-copy h3::after,
  body[data-project="skimmu-money"].is-project-building .project-meta div,
  body[data-project="skimmu-money"].is-project-building .project-overview-copy p,
  body[data-project="skimmu-money"].is-project-building .module-one-copy p,
  body[data-project="skimmu-money"].is-project-building .project-media-frame,
  body[data-project="skimmu-money"].is-project-building .project-overview-circles,
  body[data-project="skimmu-money"].is-project-building .project-overview-circle,
  body[data-project="skimmu-money"].is-project-building .project-overview-circle::before,
  body[data-project="skimmu-money"].is-project-building .project-overview-circle::after,
  body[data-project="skimmu-money"].is-project-building .project-overview-circle video,
  body[data-project="skimmu-money"].is-project-building .module-one-meta div {
    animation: none;
    opacity: 1;
    transform: none;
  }

  body[data-project="skimmu-money"].is-project-building .project-hero h2,
  body[data-project="skimmu-money"].is-project-building .project-overview-copy h3,
  body[data-project="skimmu-money"].is-project-building .module-one-copy h3 {
    color: var(--headline);
  }
}

.project-hero p {
  grid-column: 2;
  display: none;
  margin: 0;
  color: var(--line);
  font-family: var(--body-font);
  font-size: clamp(1rem, 1.75vw, 1.62rem);
  font-weight: 700;
  line-height: 1.03;
  transform-origin: left top;
  will-change: opacity, transform;
}

.project-hero-circles {
  display: flex;
  justify-content: flex-start;
  gap: clamp(8px, 1.25vw, 18px);
  width: 100%;
}

.project-hero-circle {
  position: relative;
  display: block;
  width: clamp(78px, 8.8vw, 138px);
  aspect-ratio: 1;
  overflow: hidden;
  border: var(--stroke) solid var(--line);
  border-radius: 50%;
  background: var(--bg);
}

.project-hero-circle video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-detail > section:not(.project-hero) {
  transform-origin: center top;
  will-change: opacity, transform;
}

.project-media-frame {
  position: relative;
  min-height: 0;
  overflow: visible;
  background:
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, var(--line) 78%, transparent) 0 var(--stroke),
      transparent var(--stroke) var(--line-step)
    );
}

.project-player-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  transform-origin: center top;
  will-change: opacity, transform;
}

.project-device-stage {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

body:not([data-project="skimm-money-newsletter"]) .project-media-frame.has-video .project-device-stage {
  background:
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, var(--line) 78%, transparent) 0 var(--stroke),
      transparent var(--stroke) var(--line-step)
    );
}

.project-phone-shell,
.project-phone-screen {
  display: contents;
}

.project-device-copy {
  display: none;
}

.project-phone-shell-secondary {
  display: none;
}

.phone-island,
.phone-button {
  display: none;
}

.project-media-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: var(--stroke) solid var(--line);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
}

.project-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  width: 100%;
  height: 100%;
  border: var(--stroke) solid var(--line);
  background: var(--bg);
  object-fit: contain;
}

.project-video-controls {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 4;
  display: none;
  grid-template-columns: auto auto minmax(70px, 1fr) auto auto clamp(48px, 7vw, 88px) auto;
  align-items: center;
  gap: clamp(7px, 1vw, 14px);
  min-height: 40px;
  padding: 7px 9px;
  border: var(--stroke) solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  color: var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1;
  transition:
    opacity 220ms ease,
    background-color 280ms ease,
    border-color 280ms ease;
}

.project-media-frame.has-video .project-video-controls {
  display: grid;
}

.project-media-frame:fullscreen {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background: var(--bg);
}

.project-media-frame:fullscreen .project-player-group {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.project-media-frame:fullscreen .project-device-stage {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.project-media-frame:fullscreen .project-video {
  object-fit: contain;
}

.project-media-frame:fullscreen .project-video-controls {
  position: absolute;
  right: clamp(18px, 3vw, 44px);
  bottom: clamp(18px, 3vw, 44px);
  left: clamp(18px, 3vw, 44px);
}

.project-media-frame:fullscreen.controls-hidden .project-video-controls {
  opacity: 0;
  pointer-events: none;
}

.project-media-frame:not(:fullscreen).controls-hidden .project-video-controls {
  opacity: 1;
  pointer-events: auto;
}

.project-media-frame.has-video:focus-within .project-video-controls {
  opacity: 1;
  pointer-events: auto;
}

.video-control-button {
  display: grid;
  width: 26px;
  height: 26px;
  padding: 0;
  border: var(--stroke) solid var(--line);
  border-radius: 0;
  background: var(--drum-clickable-fill, #463027);
  color: var(--line);
  font: inherit;
  line-height: 1;
  place-items: center;
  cursor: pointer;
  transition:
    background-color 120ms ease,
    color 120ms ease;
}

.video-control-button:hover,
.video-control-button:focus-visible {
  background: var(--line);
  color: var(--bg);
  outline: none;
}

.video-volume-icon {
  width: 15px;
  height: 15px;
}

.video-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.video-play-toggle.is-playing .video-play-icon {
  width: 10px;
  height: 12px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(currentColor, currentColor) left center / 3px 12px no-repeat,
    linear-gradient(currentColor, currentColor) right center / 3px 12px no-repeat;
}

.video-fullscreen-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
}

.video-fullscreen-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(currentColor, currentColor) left top / 5px var(--stroke) no-repeat,
    linear-gradient(currentColor, currentColor) left top / var(--stroke) 5px no-repeat,
    linear-gradient(currentColor, currentColor) right top / 5px var(--stroke) no-repeat,
    linear-gradient(currentColor, currentColor) right top / var(--stroke) 5px no-repeat,
    linear-gradient(currentColor, currentColor) left bottom / 5px var(--stroke) no-repeat,
    linear-gradient(currentColor, currentColor) left bottom / var(--stroke) 5px no-repeat,
    linear-gradient(currentColor, currentColor) right bottom / 5px var(--stroke) no-repeat,
    linear-gradient(currentColor, currentColor) right bottom / var(--stroke) 5px no-repeat;
}

.video-control-button.is-fullscreen .video-fullscreen-icon {
  transform: rotate(180deg);
}

.video-volume-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.video-volume-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.video-volume-icon .volume-mute-mark {
  opacity: 0;
}

.video-volume-icon.is-muted .volume-wave {
  opacity: 0;
}

.video-volume-icon.is-muted .volume-mute-mark {
  opacity: 1;
}

.video-time {
  min-width: 3.2ch;
  color: var(--line);
  font-family: var(--body-font);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1;
}

.video-timeline,
.video-volume {
  width: 100%;
  height: 14px;
  margin: 0;
  padding: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
  --range-progress: 0%;
}

.video-timeline::-webkit-slider-runnable-track,
.video-volume::-webkit-slider-runnable-track {
  height: var(--stroke);
  background:
    linear-gradient(
      to right,
      var(--line) 0 var(--range-progress),
      color-mix(in srgb, var(--line) 35%, transparent) var(--range-progress) 100%
    );
}

.video-timeline::-webkit-slider-thumb,
.video-volume::-webkit-slider-thumb {
  width: 9px;
  height: 9px;
  margin-top: -4px;
  border: var(--stroke) solid var(--line);
  border-radius: 50%;
  appearance: none;
  background: var(--bg);
}

.video-timeline::-moz-range-track,
.video-volume::-moz-range-track {
  height: var(--stroke);
  background: color-mix(in srgb, var(--line) 35%, transparent);
}

.video-timeline::-moz-range-progress,
.video-volume::-moz-range-progress {
  height: var(--stroke);
  background: var(--line);
}

.video-timeline::-moz-range-thumb,
.video-volume::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border: var(--stroke) solid var(--line);
  border-radius: 50%;
  background: var(--bg);
}

.project-media-frame.has-video .project-video {
  display: block;
}

.project-media-frame.has-video .project-media-placeholder {
  display: none;
}

body[data-project="skimm-money-newsletter"] .project-media-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, 1fr) auto;
  gap: clamp(16px, 2vw, 32px);
  min-height: 0;
  margin-bottom: clamp(34px, 4.5vw, 70px);
  padding: 0;
  background: none;
  align-items: start;
  justify-items: stretch;
}

body[data-project="skimm-money-newsletter"] .project-device-heading {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: min(calc(var(--visual-width, 100vw) - (var(--page-x) * 2)), 1320px);
  margin: 0;
  padding-bottom: clamp(5px, 0.7vw, 9px);
  border-bottom: var(--stroke) solid var(--line);
  color: var(--headline);
  font-family: var(--display-font);
  font-size: var(--project-info-heading-size);
  font-weight: var(--display-weight);
  line-height: 0.96;
  letter-spacing: 0;
}

body[data-project="skimm-money-newsletter"] .project-device-copy {
  display: block;
  align-self: start;
  max-width: 85ch;
}

.project-device-meta {
  display: none;
}

body[data-project="skimm-money-newsletter"] .project-device-meta {
  display: grid;
  gap: 0;
  margin: 0 0 clamp(22px, 3vw, 38px);
}

body[data-project="skimm-money-newsletter"] .project-device-meta div {
  display: grid;
  gap: 4px;
  padding: 10px 0 12px;
  border-bottom: var(--stroke) solid var(--line);
}

body[data-project="skimm-money-newsletter"] .project-device-meta dt,
body[data-project="skimm-money-newsletter"] .project-device-meta dd {
  margin: 0;
  font-family: var(--body-font);
  font-weight: 700;
  letter-spacing: 0;
}

body[data-project="skimm-money-newsletter"] .project-device-meta dt {
  color: var(--line);
  font-size: 0.68rem;
  line-height: 1;
  text-transform: none;
}

body[data-project="skimm-money-newsletter"] .project-device-meta dd {
  color: var(--ink);
  font-size: clamp(0.86rem, 1.15vw, 1.08rem);
  line-height: 1.08;
}

body[data-project="skimm-money-newsletter"] .project-device-copy p {
  margin: 0;
  color: var(--line);
  font-family: var(--body-font);
  font-size: clamp(0.85rem, 1.23vw, 1.15rem);
  font-weight: 400;
  line-height: 1.62;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  --module-copy-line-height: 1.62;
}

body[data-project="skimm-money-newsletter"] .project-content-grid {
  display: none;
}

body[data-project="flashpoint-mdlinx"] .project-media-frame {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  min-height: 0;
  padding: clamp(18px, 3vw, 44px) 0 0;
  overflow: visible;
  background: none;
}

body[data-project="flashpoint-mdlinx"] .project-device-copy {
  display: none;
  grid-row: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(18px, 3vw, 44px);
  row-gap: clamp(6px, 0.8vw, 12px);
  align-items: start;
  margin-bottom: clamp(22px, 3vw, 44px);
}

body[data-project="flashpoint-mdlinx"] .project-device-heading {
  display: none;
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0;
  padding-bottom: clamp(5px, 0.7vw, 9px);
  border-bottom: var(--stroke) solid var(--line);
  color: var(--headline);
  font-family: var(--display-font);
  font-size: var(--project-info-heading-size);
  font-weight: var(--display-weight);
  line-height: 0.96;
  letter-spacing: 0;
}

body[data-project="flashpoint-mdlinx"] .project-device-meta {
  display: grid;
  grid-column: 1;
  grid-row: 2;
  gap: 0;
  margin: 0;
}

body[data-project="flashpoint-mdlinx"] .project-device-meta div {
  display: grid;
  gap: 4px;
  padding: 10px 0 12px;
  border-top: var(--stroke) solid var(--line);
}

body[data-project="flashpoint-mdlinx"] .project-device-meta div:first-child {
  border-top: 0;
}

body[data-project="flashpoint-mdlinx"] .project-device-meta div:last-child {
  border-bottom: var(--stroke) solid var(--line);
}

body[data-project="flashpoint-mdlinx"] .project-device-meta dt,
body[data-project="flashpoint-mdlinx"] .project-device-meta dd {
  margin: 0;
  font-family: var(--body-font);
  font-weight: 700;
  letter-spacing: 0;
}

body[data-project="flashpoint-mdlinx"] .project-device-meta dt {
  color: var(--line);
  font-size: 0.68rem;
  line-height: 1;
  text-transform: none;
}

body[data-project="flashpoint-mdlinx"] .project-device-meta dd {
  color: var(--ink);
  font-size: clamp(0.86rem, 1.15vw, 1.08rem);
  line-height: 1.08;
}

body[data-project="flashpoint-mdlinx"] .project-device-copy p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--line);
  font-family: var(--body-font);
  font-size: clamp(0.88rem, 1.17vw, 1.1rem);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  --module-copy-line-height: 1.62;
}

body[data-project="flashpoint-mdlinx"] .project-player-group {
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  transform-origin: center top;
  will-change: opacity, transform;
}

body[data-project="flashpoint-mdlinx"] .project-device-stage {
  grid-row: 1;
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

body[data-project="flashpoint-mdlinx"] .project-phone-shell,
body[data-project="flashpoint-mdlinx"] .project-phone-screen {
  display: block;
  position: absolute;
  inset: 0;
}

body[data-project="flashpoint-mdlinx"] .project-phone-shell-secondary {
  display: none;
}

body[data-project="flashpoint-mdlinx"] .project-video,
body[data-project="flashpoint-mdlinx"] .project-media-placeholder {
  inset: 0;
  width: 100%;
  height: 100%;
}

body[data-project="flashpoint-mdlinx"] .project-video-controls {
  grid-row: 2;
  grid-column: 1;
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 5;
  align-self: start;
  justify-self: stretch;
  margin: 0;
}

body[data-project="flashpoint-mdlinx"] .project-content-grid {
  display: none;
}

body[data-project="flashpoint-mdlinx"].has-overview-circles .project-content-grid {
  display: grid;
}

.project-process {
  display: none;
}

body[data-project="skimm-money-newsletter"] .project-process {
  display: grid;
  gap: clamp(10px, 1.6vw, 20px);
  padding-top: 0;
  padding-bottom: clamp(14px, 2vw, 28px);
  border-bottom: var(--stroke) solid var(--line);
}

.project-process h3 {
  margin: 0;
  color: var(--headline);
  font-family: var(--display-font);
  font-size: var(--project-info-heading-size);
  font-weight: var(--display-weight);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
}

.module-one-process-title {
  display: none;
}

.project-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.3vw, 18px);
  align-items: start;
  padding-top: 0;
}

.project-process-grid figure {
  margin: 0;
  overflow: hidden;
  border: var(--stroke) solid var(--line);
  background: var(--bg);
  aspect-ratio: 1 / 0.72;
}

.process-lightbox-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.process-lightbox-trigger:focus-visible {
  outline: calc(var(--stroke) * 2) solid var(--line);
  outline-offset: calc(var(--stroke) * -3);
}

.project-process-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.process-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
  padding: clamp(22px, 3vw, 48px);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.process-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.process-lightbox-bar {
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.process-lightbox.is-image-visible .process-lightbox-bar {
  opacity: 1;
  transform: translateY(0);
}

.process-lightbox-close {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: var(--stroke) solid var(--line);
  border-radius: 0;
  background: var(--bg);
  color: var(--line);
  font-family: var(--body-font);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  place-items: center;
  cursor: pointer;
}

.process-lightbox-frame {
  --frame-stroke: var(--stroke);
  display: grid;
  position: relative;
  min-height: 0;
  border: 0;
  background:
    linear-gradient(var(--line), var(--line)) left top / 0 var(--frame-stroke) no-repeat,
    linear-gradient(var(--line), var(--line)) right top / var(--frame-stroke) 0 no-repeat,
    linear-gradient(var(--line), var(--line)) right bottom / 0 var(--frame-stroke) no-repeat,
    linear-gradient(var(--line), var(--line)) left bottom / var(--frame-stroke) 0 no-repeat,
    var(--bg);
  place-items: center;
  overflow: auto;
}

.process-lightbox.is-frame-visible .process-lightbox-frame {
  animation: processLightboxFrameDraw 440ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.process-lightbox.is-closing .process-lightbox-frame {
  animation: processLightboxFrameDraw 260ms cubic-bezier(0.76, 0, 0.24, 1) reverse forwards;
}

.process-lightbox img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 240ms ease,
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-lightbox.is-image-visible img {
  opacity: 1;
  transform: translateY(0);
}

@keyframes processLightboxFrameDraw {
  0% {
    background-size:
      0 var(--frame-stroke),
      var(--frame-stroke) 0,
      0 var(--frame-stroke),
      var(--frame-stroke) 0,
      auto;
  }

  30% {
    background-size:
      100% var(--frame-stroke),
      var(--frame-stroke) 0,
      0 var(--frame-stroke),
      var(--frame-stroke) 0,
      auto;
  }

  56% {
    background-size:
      100% var(--frame-stroke),
      var(--frame-stroke) 100%,
      0 var(--frame-stroke),
      var(--frame-stroke) 0,
      auto;
  }

  78% {
    background-size:
      100% var(--frame-stroke),
      var(--frame-stroke) 100%,
      100% var(--frame-stroke),
      var(--frame-stroke) 0,
      auto;
  }

  100% {
    background-size:
      100% var(--frame-stroke),
      var(--frame-stroke) 100%,
      100% var(--frame-stroke),
      var(--frame-stroke) 100%,
      auto;
  }
}

body[data-project="skimm-money-newsletter"] .project-device-stage {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: clamp(18px, 3vw, 42px);
  width: auto;
  height: 100%;
  align-items: start;
  justify-content: end;
}

body[data-project="skimm-money-newsletter"] .module-one {
  border-bottom: 0;
}

body[data-project="skimmu-money"] .module-one-process-title,
body[data-project="launch-cutdowns"] .module-one-process-title,
body[data-project="interface-studies"] .module-one-process-title,
body[data-project="social-system"] .module-one-process-title,
body[data-project="kaplan-virtual-spelling-bee"] .module-one-process-title,
body[data-project="skimm-money-newsletter"] .module-one-process-title,
body[data-project="flashpoint-mdlinx"] .module-one-process-title,
body[data-project="event-graphics"] .module-one-process-title,
body[data-project="brand-transitions"] .module-one-process-title {
  display: block;
  grid-column: 1 / -1;
  margin: 0;
  padding-bottom: clamp(5px, 0.7vw, 9px);
  border-bottom: var(--stroke) solid var(--line);
  color: var(--headline);
  font-family: var(--display-font);
  font-size: var(--project-info-heading-size);
  font-weight: var(--display-weight);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
}

body[data-project="skimm-money-newsletter"] .project-process + .project-support-grid {
  border-top: 0;
}

body[data-project="skimm-money-newsletter"] .project-phone-shell {
  position: relative;
  display: block;
  width: clamp(173px, 20.6vw, 270px);
  margin-left: clamp(4px, 0.45vw, 6px);
  aspect-ratio: 9 / 16;
  border: var(--stroke) solid var(--line);
  border-radius: 12.4% / 5.7%;
  background:
    linear-gradient(var(--line), var(--line)) 50% calc(100% - 12px) / 32% var(--stroke) no-repeat,
    color-mix(in srgb, var(--bg) 94%, transparent);
}

body[data-project="skimm-money-newsletter"] .project-phone-shell-secondary {
  display: block;
}

body[data-project="skimm-money-newsletter"] .project-phone-screen {
  position: absolute;
  inset: clamp(8px, 0.85vw, 12px);
  display: block;
  overflow: hidden;
  border: var(--stroke) solid var(--line);
  border-radius: 10.2% / 4.7%;
  background: var(--bg);
}

body[data-project="skimm-money-newsletter"] .project-video,
body[data-project="skimm-money-newsletter"] .project-media-placeholder {
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body[data-project="skimm-money-newsletter"] .project-video {
  object-fit: cover;
}

body[data-project="skimm-money-newsletter"] .phone-island,
body[data-project="skimm-money-newsletter"] .phone-button {
  position: absolute;
  z-index: 4;
  display: block;
  background: var(--bg);
  pointer-events: none;
}

body[data-project="skimm-money-newsletter"] .phone-island {
  top: 3.7%;
  left: 50%;
  z-index: 3;
  width: 26%;
  height: 3.7%;
  border: var(--stroke) solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  transform: translateX(-50%);
}

body[data-project="skimm-money-newsletter"] .phone-button {
  z-index: 5;
  width: clamp(4px, 0.45vw, 6px);
  border: var(--stroke) solid var(--line);
  border-radius: 2px 0 0 2px;
  background: var(--bg);
}

body[data-project="skimm-money-newsletter"] .phone-button-volume-up {
  top: 19%;
  left: clamp(-6px, -0.45vw, -4px);
  height: 9%;
}

body[data-project="skimm-money-newsletter"] .phone-button-volume-down {
  top: 30%;
  left: clamp(-6px, -0.45vw, -4px);
  height: 11%;
}

body[data-project="skimm-money-newsletter"] .phone-button-power {
  top: 25%;
  right: clamp(-6px, -0.45vw, -4px);
  height: 15%;
  border-radius: 0 2px 2px 0;
}

body[data-project="skimm-money-newsletter"] .project-video-controls {
  display: none !important;
}

.project-media-placeholder span {
  position: relative;
  z-index: 1;
  color: var(--line);
  font-family: var(--body-font);
  font-size: clamp(0.9rem, 1.5vw, 1.4rem);
  font-weight: 700;
}

.project-media-signal {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 38%, color-mix(in srgb, var(--line) 28%, transparent) 0 1px, transparent 2px),
    linear-gradient(135deg, transparent 0 48%, var(--line) 48% calc(48% + var(--stroke)), transparent calc(48% + var(--stroke)));
  background-size: 22px 22px, 100% 100%;
  opacity: 0.6;
}

.project-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(18px, 3vw, 44px);
  row-gap: clamp(14px, 1.8vw, 24px);
  align-items: start;
  padding-top: 0;
}

.project-meta {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}

.project-meta dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
}

.project-meta div {
  display: grid;
  gap: 4px;
  padding: 10px 0 12px;
  border-top: var(--stroke) solid var(--line);
}

.project-meta div:first-child {
  border-top: 0;
  padding-top: 0;
}

.project-meta div:last-child {
  border-bottom: var(--stroke) solid var(--line);
}

.project-meta dt,
.project-meta dd {
  margin: 0;
  font-family: var(--body-font);
  font-weight: 700;
  letter-spacing: 0;
}

.project-meta dt {
  color: var(--line);
  font-size: 0.68rem;
  line-height: 1;
  text-transform: none;
}

.project-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.86rem, 1.15vw, 1.08rem);
  line-height: 1.08;
}

.project-overview-copy {
  display: contents;
}

.project-overview-copy h3 {
  display: none;
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0;
  padding-bottom: clamp(5px, 0.7vw, 9px);
  border-bottom: var(--stroke) solid var(--line);
  color: var(--headline);
  font-family: var(--display-font);
  font-size: var(--project-info-heading-size);
  font-weight: var(--display-weight);
  line-height: 0.96;
  letter-spacing: 0;
}

.project-overview-copy p {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--line);
  font-family: var(--body-font);
  font-size: clamp(0.88rem, 1.17vw, 1.1rem);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  --module-copy-line-height: 1.62;
}

body.has-module-meta .project-meta {
  display: none;
}

body.has-overview-circles .project-overview-copy p {
  grid-column: 1;
  grid-row: 1;
}

body[data-project="brand-transitions"] .project-content-grid {
  grid-template-columns: 1fr;
}

body[data-project="brand-transitions"] .project-meta {
  display: none;
}

body[data-project="brand-transitions"] .project-overview-copy p {
  grid-column: 1 / -1;
  max-width: none;
}

.project-overview-circles {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(8px, 1.15vw, 18px);
  width: 100%;
}

.project-overview-circle {
  position: relative;
  flex: 0 0 clamp(106px, 11.8vw, 184px);
  width: clamp(106px, 11.8vw, 184px);
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: var(--stroke) solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  transform: scale(0.92);
  transform-origin: center top;
}

.project-overview-circle video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ambient-video::-webkit-media-controls-start-playback-button,
.project-overview-circle video::-webkit-media-controls-start-playback-button,
.module-one-circle video::-webkit-media-controls-start-playback-button,
body[data-project="skimm-money-newsletter"] .project-phone-screen video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}

.ambient-video::-webkit-media-controls-overlay-play-button,
.project-overview-circle video::-webkit-media-controls-overlay-play-button,
.module-one-circle video::-webkit-media-controls-overlay-play-button,
body[data-project="skimm-money-newsletter"] .project-phone-screen video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}

.project-overview-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 36%, color-mix(in srgb, var(--line) 24%, transparent) 0 1px, transparent 2px),
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, var(--line) 20%, transparent) 0 var(--stroke),
      transparent var(--stroke) var(--line-step)
    ),
    var(--bg);
  background-size: 18px 18px, auto, auto;
}

.project-overview-circle:has(video) .project-overview-placeholder {
  display: none;
}

body[data-project="skimmu-money"] .module-one-copy {
  display: grid;
}

.module-one {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(22px, 3vw, 48px);
  row-gap: clamp(14px, 1.8vw, 24px);
  align-items: center;
  margin-top: calc(clamp(22px, 3.5vw, 46px) * -0.5);
  padding: clamp(12px, 1.8vw, 22px) 0;
}

.module-one-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 36%, color-mix(in srgb, var(--line) 24%, transparent) 0 1px, transparent 2px),
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, var(--line) 20%, transparent) 0 var(--stroke),
      transparent var(--stroke) var(--line-step)
    ),
    var(--bg);
  background-size: 18px 18px, auto, auto;
}

.module-one-copy {
  display: grid;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--line);
  --module-copy-line-height: 1.52;
}

.module-one-copy h3,
.module-one-copy p {
  margin: 0;
  font-family: var(--body-font);
  letter-spacing: 0;
}

.module-one-copy h3 {
  color: var(--headline);
  font-family: var(--display-font);
  font-size: clamp(0.7rem, 1.05vw, 0.938rem);
  font-weight: var(--display-weight);
  line-height: 0.96;
  text-transform: none;
}

.module-one-copy p {
  color: var(--line);
  font-size: clamp(0.85rem, 1.23vw, 1.15rem);
  font-weight: 400;
  line-height: var(--module-copy-line-height);
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.module-one-image-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(8px, 1.15vw, 18px);
}

.module-one-circle {
  position: relative;
  flex: 0 0 clamp(106px, 11.8vw, 184px);
  width: clamp(106px, 11.8vw, 184px);
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: var(--stroke) solid var(--line);
  border-radius: 50%;
  background: var(--bg);
}

.module-one-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  object-fit: cover;
  object-position: center;
}

.module-one-circle.has-video .module-one-video {
  display: block;
}

body[data-project="flashpoint-mdlinx"] .module-one-video {
  opacity: 1;
}

body[data-project="skimmu-money"] .module-one-video {
  opacity: 1;
}

body[data-project="interface-studies"] .module-one-video {
  opacity: 1;
}

body[data-project="interface-studies"] .project-media-frame,
body[data-project="interface-studies"] .project-media-frame.has-video .project-device-stage {
  background: var(--bg);
}

body[data-project="skimm-money-newsletter"] .module-one-video {
  opacity: 1;
}

.module-one-circle.has-video .module-one-placeholder {
  display: block;
}

body.has-module-meta .module-one {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

body.has-module-meta .module-one-copy {
  grid-column: 1;
}

body.has-module-meta .module-one-image-row {
  display: none;
}

.module-one-meta {
  grid-column: 2;
  color: var(--line);
}

.module-one-meta dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
}

.module-one-meta div {
  display: grid;
  gap: 4px;
  padding: 10px 0 12px;
  border-top: var(--stroke) solid var(--line);
}

.module-one-meta div:first-child {
  border-top: 0;
  padding-top: 0;
}

.module-one-meta div:last-child {
  border-bottom: var(--stroke) solid var(--line);
}

.module-one-meta dt,
.module-one-meta dd {
  margin: 0;
  font-family: var(--body-font);
  font-weight: 700;
  letter-spacing: 0;
}

.module-one-meta dt {
  color: var(--line);
  font-size: 0.68rem;
  line-height: 1;
  text-transform: none;
}

.module-one-meta dd {
  color: var(--ink);
  font-size: clamp(0.86rem, 1.15vw, 1.08rem);
  line-height: 1.08;
}

body[data-project="flashpoint-mdlinx"] .module-one-meta dt {
  color: var(--line);
  font-size: 0.68rem;
  line-height: 1;
}

body[data-project="flashpoint-mdlinx"] .module-one-meta dd {
  color: var(--ink);
  font-size: clamp(0.86rem, 1.15vw, 1.08rem);
  line-height: 1.08;
}

.project-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--stroke);
  border: var(--stroke) solid var(--line);
  background: var(--line);
}

.project-support-grid div {
  min-height: clamp(140px, 22vw, 300px);
  background:
    linear-gradient(135deg, transparent 0 49%, color-mix(in srgb, var(--line) 74%, transparent) 49% calc(49% + var(--stroke)), transparent calc(49% + var(--stroke))),
    var(--bg);
}

.additional-creative {
  display: none;
}

.illustration-gallery {
  display: grid;
  padding: clamp(8px, 1.2vw, 18px) 0 clamp(28px, 5vw, 72px);
}

.illustration-card figcaption {
  margin: 0;
}

.illustration-card figcaption {
  color: var(--line);
  font-family: var(--body-font);
  font-weight: 700;
  letter-spacing: 0;
}

.illustration-gallery-grid {
  display: grid;
  gap: clamp(14px, 2vw, 28px);
}

.illustration-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: var(--stroke);
  border: var(--stroke) solid var(--line);
  background:
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, var(--line) 40%, transparent) 0 var(--stroke),
      transparent var(--stroke) var(--line-step)
    ),
    color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(18px);
  transform-origin: center top;
  will-change: opacity, transform;
}

.illustration-row-wide {
  grid-template-columns: 1fr;
}

.illustration-card + .illustration-card {
  border-left: var(--stroke) solid var(--line);
}

.illustration-card {
  display: grid;
  gap: clamp(8px, 1vw, 14px);
  margin: 0;
  padding: clamp(10px, 1.4vw, 18px);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(18px);
}

.illustration-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: color-mix(in srgb, var(--line) 8%, transparent);
}

.illustration-card figcaption {
  min-height: 2.2em;
  font-size: clamp(0.76rem, 0.9vw, 0.92rem);
  line-height: 1.12;
}

body[data-project="brand-transitions"] .project-media-frame {
  display: none;
}

body[data-project="brand-transitions"] .module-one-image-row {
  display: none;
}

body[data-project="event-graphics"] .project-media-frame,
body[data-project="event-graphics"] .module-one-image-row {
  display: none;
}

body[data-project="event-graphics"] .project-content-grid {
  grid-template-columns: 1fr;
}

body[data-project="event-graphics"] .project-overview-copy p {
  grid-column: 1 / -1;
  max-width: none;
}

body[data-project="social-system"] .module-one {
  grid-template-columns: 1fr;
}

body[data-project="social-system"] .module-one-copy {
  display: grid;
  grid-column: 1;
}

body[data-project="social-system"] .module-one-meta {
  grid-column: 1;
}

body[data-project="event-graphics"] .illustration-card {
  --illustration-image-width: calc(100% - clamp(12px, 2vw, 28px));
  padding: clamp(18px, 2.6vw, 38px);
}

body[data-project="event-graphics"] .illustration-card img {
  background: #fff;
  width: var(--illustration-image-width);
  justify-self: start;
}

body[data-project="event-graphics"] .illustration-card figcaption {
  width: var(--illustration-image-width);
  justify-self: start;
}

body[data-project="event-graphics"] .illustration-card img[src$="rabbit.gif"],
body[data-project="event-graphics"] .illustration-card img[src$="well-armadillos.gif"],
body[data-project="event-graphics"] .illustration-card img[src$="pug.gif"] {
  padding: 12.5%;
}

body[data-project="event-graphics"] .illustration-card img[src$="daily-skimm-newsletter.gif"] {
  object-fit: cover;
  object-position: center;
  padding: 15%;
}

body[data-project="event-graphics"] .illustration-row-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-project="event-graphics"] .illustration-row-wide::after {
  content: "";
  display: block;
  min-height: 100%;
  border-left: var(--stroke) solid var(--line);
  background:
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, var(--line) 40%, transparent) 0 var(--stroke),
      transparent var(--stroke) var(--line-step)
    ),
    color-mix(in srgb, var(--bg) 90%, transparent);
}

body[data-project="editorial-motion"] .project-content-grid,
body[data-project="editorial-motion"] .project-support-grid {
  display: none;
}

body[data-project="editorial-motion"] .project-shell {
  padding-bottom: 0;
}

body[data-project="editorial-motion"] .project-media-frame {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  background: transparent;
}

body[data-project="editorial-motion"] .project-device-copy {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: clamp(18px, 2.4vw, 34px);
  max-width: none;
  color: var(--line);
}

body[data-project="editorial-motion"] .project-device-heading {
  display: none;
  margin: 0;
  padding-bottom: clamp(5px, 0.7vw, 9px);
  border-bottom: var(--stroke) solid var(--line);
  color: var(--headline);
  font-family: var(--display-font);
  font-size: var(--project-info-heading-size);
  font-weight: var(--display-weight);
  line-height: 0.96;
  letter-spacing: 0;
}

body[data-project="editorial-motion"] .project-device-copy p {
  order: 2;
  margin: 0;
  color: var(--line);
  font-family: var(--body-font);
  font-size: clamp(0.92rem, 1.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.62;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  --module-copy-line-height: 1.62;
}

body[data-project="editorial-motion"] .project-device-extra-copy {
  order: 3;
  display: grid;
  gap: clamp(14px, 1.8vw, 24px);
}

body[data-project="editorial-motion"] .project-device-extra-copy[hidden] {
  display: none;
}

body[data-project="editorial-motion"] .project-device-extra-copy h3 {
  margin: 0;
  padding-bottom: clamp(5px, 0.7vw, 9px);
  border-bottom: var(--stroke) solid var(--line);
  color: var(--headline);
  font-family: var(--display-font);
  font-size: var(--project-info-heading-size);
  font-weight: var(--display-weight);
  line-height: 0.96;
  letter-spacing: 0;
}

body[data-project="editorial-motion"] .project-device-extra-copy p {
  margin: 0;
  color: var(--line);
  font-family: var(--body-font);
  font-size: clamp(0.92rem, 1.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.62;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

body[data-project="editorial-motion"] .project-device-meta {
  order: 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
}

body[data-project="editorial-motion"] .project-device-meta div {
  display: grid;
  gap: 4px;
  padding: 10px 0 12px;
  border-top: var(--stroke) solid var(--line);
}

body[data-project="editorial-motion"] .project-device-meta div:last-child {
  border-bottom: var(--stroke) solid var(--line);
}

body[data-project="editorial-motion"] .project-device-meta dt,
body[data-project="editorial-motion"] .project-device-meta dd {
  margin: 0;
  font-family: var(--body-font);
  font-weight: 700;
  letter-spacing: 0;
}

body[data-project="editorial-motion"] .project-device-meta dt {
  color: var(--line);
  font-size: 0.68rem;
  line-height: 1;
}

body[data-project="editorial-motion"] .project-device-meta dd {
  color: var(--ink);
  font-size: clamp(0.86rem, 1.15vw, 1.08rem);
  line-height: 1.08;
}

body[data-project="editorial-motion"] .project-player-group {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: min(var(--editorial-player-width, 372px), 42vw);
  max-width: none;
  margin-top: 5px;
}

body[data-project="editorial-motion"] .project-device-stage {
  max-width: 100%;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

body[data-project="editorial-motion"] .project-video-controls {
  grid-template-columns: auto auto minmax(38px, 1fr) auto auto 42px auto;
  gap: 6px;
}

body[data-project="editorial-motion"] .project-video {
  max-width: 100%;
  object-fit: cover;
}

body[data-project="editorial-motion"] .editorial-alternate-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding: clamp(14px, 2.4vw, 34px) 0 0;
}

body[data-project="editorial-motion"] .editorial-alternate-copy {
  display: grid;
  gap: clamp(14px, 1.8vw, 24px);
  color: var(--line);
}

body[data-project="editorial-motion"] .editorial-alternate-copy h3 {
  margin: 0;
  padding-bottom: clamp(5px, 0.7vw, 9px);
  border-bottom: var(--stroke) solid var(--line);
  color: var(--headline);
  font-family: var(--display-font);
  font-size: var(--project-info-heading-size);
  font-weight: var(--display-weight);
  line-height: 0.96;
  letter-spacing: 0;
}

body[data-project="editorial-motion"] .editorial-alternate-copy p {
  margin: 0;
  color: var(--line);
  font-family: var(--body-font);
  font-size: clamp(0.92rem, 1.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.62;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

body[data-project="editorial-motion"] .editorial-alternate-media figure {
  justify-self: end;
  width: 100%;
  margin: 0;
}

body[data-project="editorial-motion"] .editorial-alternate-player {
  display: grid;
  gap: 0;
}

body[data-project="editorial-motion"] .editorial-alternate-media video {
  display: block;
  width: 100%;
  height: auto;
  border: var(--stroke) solid var(--line);
  background: var(--bg);
}

body[data-project="editorial-motion"] .editorial-alternate-player .project-video-controls {
  display: grid;
  grid-template-columns: auto auto minmax(38px, 1fr) auto auto 42px auto;
  gap: 6px;
}

body[data-project="editorial-motion"] .module-one {
  display: none;
}

body[data-project="editorial-motion"] .module-one-process-title {
  display: block;
  grid-column: 1 / -1;
  margin: 0;
  padding-bottom: clamp(5px, 0.7vw, 9px);
  border-bottom: var(--stroke) solid var(--line);
  color: var(--headline);
  font-family: var(--display-font);
  font-size: var(--project-info-heading-size);
  font-weight: var(--display-weight);
  line-height: 0.96;
  letter-spacing: 0;
}

body[data-project="editorial-motion"] .module-one-image-row {
  display: none;
}

@media (max-width: 900px) {
  body[data-project="editorial-motion"] .project-media-frame {
    grid-template-columns: 1fr;
  }

  body[data-project="editorial-motion"] .project-device-copy,
  body[data-project="editorial-motion"] .project-player-group {
    grid-column: 1;
    grid-row: auto;
  }

  body[data-project="editorial-motion"] .project-device-copy {
    display: contents;
  }

  body[data-project="editorial-motion"] .project-device-heading,
  body[data-project="editorial-motion"] .project-device-copy > p,
  body[data-project="editorial-motion"] .project-device-extra-copy,
  body[data-project="editorial-motion"] .project-device-meta,
  body[data-project="editorial-motion"] .project-player-group {
    grid-column: 1;
  }

  body[data-project="editorial-motion"] .project-device-heading {
    order: 1;
  }

  body[data-project="editorial-motion"] .project-device-copy > p {
    order: 2;
  }

  body[data-project="editorial-motion"] .project-player-group {
    order: 3;
    justify-self: center;
    width: min(100%, 420px);
    margin-top: 0;
  }

  body[data-project="editorial-motion"] .project-device-extra-copy {
    order: 4;
  }

  body[data-project="editorial-motion"] .project-device-meta {
    order: 5;
  }

  body[data-project="editorial-motion"] .project-device-stage {
    width: 100% !important;
    height: auto !important;
  }

  body[data-project="editorial-motion"] .editorial-alternate-media {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  body[data-project="editorial-motion"] .editorial-alternate-media figure {
    justify-self: center;
    width: min(100%, 560px);
  }
}

body[data-project="skimm-money-newsletter"] .additional-creative {
  display: grid;
  gap: clamp(12px, 1.8vw, 24px);
  padding-top: clamp(2px, 0.5vw, 8px);
}

.additional-creative h3 {
  margin: 0;
  padding-bottom: clamp(5px, 0.7vw, 9px);
  border-bottom: var(--stroke) solid var(--line);
  color: var(--headline);
  font-family: var(--display-font);
  font-size: var(--project-info-heading-size);
  font-weight: var(--display-weight);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
}

.additional-creative-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 28px);
  background: transparent;
}

.creative-frame {
  --creative-inset: clamp(4px, 0.55vw, 8px);
  position: relative;
  display: grid;
  margin: 0;
  padding: var(--creative-inset);
  overflow: hidden;
  border: var(--stroke) solid var(--line);
  background:
    radial-gradient(circle at 28% 32%, color-mix(in srgb, var(--line) 24%, transparent) 0 1px, transparent 2px),
    linear-gradient(135deg, transparent 0 49%, color-mix(in srgb, var(--line) 54%, transparent) 49% calc(49% + var(--stroke)), transparent calc(49% + var(--stroke))),
    var(--bg);
  background-size: 18px 18px, auto, auto;
  box-sizing: border-box;
}

.creative-frame img,
.creative-frame video {
  position: absolute;
  inset: var(--creative-inset);
  display: block;
  width: calc(100% - (var(--creative-inset) * 2));
  height: calc(100% - (var(--creative-inset) * 2));
  object-fit: cover;
  object-position: center;
}

.creative-frame-wide {
  grid-column: span 3;
  aspect-ratio: 16 / 9;
}

.creative-frame-square {
  aspect-ratio: 1 / 1.08;
}

.creative-frame-square img,
.creative-frame-square video {
  object-fit: fill;
  clip-path: inset(2px);
  transform: none;
}

.creative-portrait-row {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.58fr);
  gap: clamp(12px, 1.8vw, 28px);
  align-items: stretch;
  justify-content: stretch;
}

.creative-square-stack {
  display: contents;
  gap: clamp(12px, 1.8vw, 28px);
  width: 100%;
}

.creative-frame-portrait {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}


@media (max-width: 1024px) and (orientation: portrait) {
  .line-field {
    height: max(
      360px,
      calc(100svh - var(--masthead-spacer) - var(--masthead-top) - clamp(52px, 8vw, 76px) - var(--home-marquee-reclaim))
    );
    min-height: 0;
  }

  body[data-project="skimm-money-newsletter"] .project-media-frame {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 48px);
    min-height: 0;
  }

  body[data-project="skimm-money-newsletter"] .project-device-copy {
    display: grid;
    gap: clamp(18px, 5vw, 28px);
    max-width: none;
  }

  body[data-project="skimm-money-newsletter"] .project-device-copy p {
    order: 1;
  }

  body[data-project="skimm-money-newsletter"] .project-device-meta {
    order: 2;
    margin: 0;
  }

  body[data-project="skimm-money-newsletter"] .project-device-stage {
    width: 100%;
    height: auto;
    justify-content: start;
  }

  body[data-project="flashpoint-mdlinx"] .project-media-frame {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 48px);
    min-height: 0;
  }

  body[data-project="flashpoint-mdlinx"] .project-device-copy {
    grid-template-columns: 1fr;
    gap: clamp(18px, 3vw, 28px);
  }

  body[data-project="flashpoint-mdlinx"] .project-device-heading,
  body[data-project="flashpoint-mdlinx"] .project-device-copy p {
    grid-column: 1;
  }

  body[data-project="flashpoint-mdlinx"] .project-device-meta {
    grid-column: 1;
    grid-row: auto;
  }

  body[data-project="flashpoint-mdlinx"] .project-video-controls {
    right: auto;
    bottom: auto;
    left: auto;
  }

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

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

  .illustration-gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .creative-portrait-row {
    width: calc(100% + clamp(12px, 1.8vw, 28px));
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-self: stretch;
  }

  .creative-square-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .creative-frame-portrait {
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    justify-self: stretch;
  }

  .project-device-copy,
  .project-device-stage,
  .module-one-process-title,
  .module-one-copy,
  .module-one-meta,
  .module-one-image-row,
  .project-overview-circles,
  .project-process-grid figure,
  .additional-creative h3,
  .creative-frame,
  .project-support-grid > div {
    transform-origin: center top;
    will-change: opacity, transform;
  }
}

@media (max-width: 700px) {
  :root {
    --page-x: 22px;
    --page-top: 42px;
    --content-overhang: 10px;
    --line-step: 5px;
  }

  .data-rail {
    left: calc(var(--page-x) - 12px);
    top: var(--data-rail-top, var(--masthead-top));
    height: calc(100svh - var(--data-rail-top, var(--masthead-top)) - var(--masthead-top));
    justify-content: space-between;
    gap: 0;
    font-size: clamp(0.38rem, 1.55vw, 0.46rem);
    letter-spacing: 0.01em;
    opacity: 0.58;
    transform: translateX(-100%);
  }

  .data-rail::after {
    right: calc((clamp(10px, 1.1vw, 18px) * -0.5) - 1px);
  }

  .masthead {
    width: calc(100vw - (var(--page-x) * 2));
    margin-bottom: 10px;
    min-height: clamp(66px, 20vw, 92px);
    padding: clamp(14px, 3.8vw, 22px) 0;
  }

  body.is-scrolled .masthead {
    min-height: 0;
    padding: clamp(9px, 1.15vw, 14px) 0;
  }

  body:not(.project-page):not(.playground-page).is-scrolled .masthead {
    min-height: clamp(74px, 22vw, 106px);
    padding: clamp(11px, 3.2vw, 18px) 0;
  }

  .site-nav {
    flex: 0 0 auto;
    min-height: 42px;
  }

  h1 {
    width: 14ch;
    font-size: clamp(1.246rem, 5.46vw, 1.785rem);
  }

  body.is-scrolled h1 {
    width: 3.2ch;
    font-size: clamp(0.938rem, 4.48vw, 1.344rem);
  }

  body:not(.project-page):not(.playground-page).is-scrolled h1 {
    width: 6.9ch;
    font-size: clamp(1.407rem, 6.72vw, 2.016rem);
  }

  .title-full {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .title-compact {
    opacity: 0;
    transform: translateX(-0.12em) scale(0.78);
  }

  .line-field {
    height: max(
      520px,
      calc(100svh - var(--masthead-spacer) - var(--masthead-top) - clamp(48px, 12vw, 64px) - var(--home-marquee-reclaim))
    );
    min-height: 0;
  }

  .portfolio-puck {
    width: clamp(62px, 19vw, 82px);
  }

  .portfolio-puck-one,
  .portfolio-puck-two,
  .portfolio-puck-three,
  .portfolio-puck-four {
    left: 50%;
  }

  .portfolio-puck-one {
    top: 14%;
  }

  .portfolio-puck-two {
    top: 39%;
  }

  .portfolio-puck-three {
    top: 64%;
  }

  .portfolio-puck-four {
    top: 89%;
  }

  .portfolio-puck::before {
    display: block;
    left: 20%;
    top: 26%;
    width: clamp(52px, 16vw, 76px);
    opacity: 0;
    transform: rotate(225deg) scaleX(0);
    transform-origin: left center;
  }

  .portfolio-puck-one::before {
    width: clamp(60px, 18vw, 82px);
  }

  .puck-label {
    right: auto;
    left: calc((var(--visual-width, 100vw) * -0.5) + var(--page-x) + (clamp(62px, 19vw, 82px) / 2));
    top: calc(26% - clamp(36px, 10.5vw, 58px));
    max-width: calc(var(--visual-width, 100vw) - (var(--page-x) * 2));
    padding: 4px 7px 5px;
    font-size: clamp(0.686rem, 3.36vw, 0.938rem);
    text-align: left;
    transform: translateY(-50%);
  }

  .portfolio-puck:hover .puck-label,
  .portfolio-puck:focus-visible .puck-label,
  .portfolio-puck .puck-label {
    transform: translateY(-50%);
  }

  .portfolio-puck.is-puck-ready .puck-label {
    transform: translateY(-50%) translateX(0);
  }

  .playground-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .can-field,
  .shape-field {
    aspect-ratio: auto;
    min-height: 58vh;
  }

  .playground-detail {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 24px 0 42px;
  }

  .playground-detail-copy {
    position: static;
  }

  .playground-detail-copy h2 {
    font-size: clamp(2.1rem, 11.9vw, 3.36rem);
  }

  .playground-detail-module {
    min-height: min(78vh, 540px);
  }

  .playground-page .page {
    padding-top: var(--page-top);
  }

  .playground-page .playground-detail {
    --playground-detail-gap: clamp(10px, 3vw, 16px);
    --playground-bottom-gap: clamp(12px, 4vw, 22px);
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(10px, 3vw, 16px);
    height: calc(100svh - var(--masthead-spacer) - var(--masthead-top) - var(--playground-detail-gap) - var(--playground-bottom-gap));
    padding-top: clamp(10px, 3vw, 16px);
  }

  .playground-page .playground-detail-copy {
    align-self: start;
    gap: 8px;
  }

  .playground-page .playground-detail-copy h2 {
    font-size: clamp(1.715rem, 9.1vw, 2.8rem);
  }

  .playground-page .playground-detail-copy p:not(.playground-kicker) {
    font-size: clamp(0.88rem, 1.17vw, 1.1rem);
    line-height: 1.62;
    text-align: justify;
    text-align-last: left;
  }

  .playground-page .playground-detail-module {
    align-self: stretch;
    aspect-ratio: auto;
    min-height: 0;
    height: 100%;
  }

  .drum-machine {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 0;
    padding-top: 6px;
    padding-bottom: 10px;
  }

  .drum-copy h2 {
    margin-block: 0 4px;
    font-size: clamp(1.4rem, 5.775vw, 1.995rem);
    line-height: 0.78;
  }

  .drum-copy p:not(.playground-kicker) {
    font-size: clamp(0.7rem, 2.75vw, 0.8rem);
    line-height: 1.24;
  }

  .drum-stage {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    justify-items: center;
    margin-top: 0;
  }

  .drum-wheel-field {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 1fr;
    gap: 38px;
    width: min(calc(var(--visual-width, 100vw) - (var(--page-x) * 2)), 390px);
    min-width: 0;
    padding-top: 0;
    margin-top: 48px;
    transform: none;
  }

  .drum-dial-drums {
    --drum-step-size: 8px;
    width: min(49vw, 190px);
    min-width: 0;
    grid-column: 1;
    grid-row: auto;
    order: 1;
    transform: translateX(-42px);
  }

  .drum-dial-synth {
    --drum-step-size: 7.5px;
    width: min(27vw, 106px);
    min-width: 92px;
  }

  .drum-synth-stack {
    grid-column: 1;
    grid-row: auto;
    order: 2;
    grid-template-columns: repeat(2, auto);
    gap: 14px;
    width: auto;
    transform: translateX(-42px);
    justify-items: center;
  }

  .drum-synth-cell {
    grid-template-columns: 1fr;
    gap: 5px;
    min-width: 0;
    justify-items: center;
  }

  .drum-synth-cell.is-active {
    transform: scale(1.03);
  }

  .drum-dial-synth .drum-orbit-label {
    font-size: clamp(0.252rem, 1.015vw, 0.315rem);
  }

  .drum-chord-select {
    min-width: 0;
    padding: 0;
    border: 0;
    font-size: clamp(0.504rem, 2.03vw, 0.63rem);
  }

  .drum-chord-select span {
    display: none;
  }

  .drum-step {
    width: calc(var(--drum-step-size) + 4px);
  }

  .drum-step-index {
    display: none;
  }

  .drum-hit {
    min-width: 1.55em;
    font-size: clamp(0.476rem, 2.17vw, 0.574rem);
  }

  .drum-controls,
  .drum-instruments {
    width: 100%;
  }

  .drum-controls {
    grid-column: auto;
    grid-row: auto;
    order: initial;
    position: absolute;
    right: 28px;
    top: 0;
    display: grid;
    --drum-toolbar-width: 34px;
    --drum-play-size: 59px;
    grid-template-columns: 1fr;
    grid-template-rows: var(--drum-play-size) repeat(2, var(--drum-toolbar-width)) clamp(230px, calc(43svh - 20px), 320px);
    gap: 6px;
    width: var(--drum-play-size);
    height: auto;
    margin-top: 0;
    justify-self: auto;
    transform: translateY(-14px);
  }

  .drum-readout {
    grid-column: 1 / -1;
    justify-items: center;
    order: 1;
  }

  .drum-transport {
    grid-column: 1;
    grid-row: 1;
    order: initial;
    align-self: center;
  }

  .drum-clear {
    grid-column: 1;
    grid-row: 3;
    order: initial;
    align-self: center;
    justify-self: center;
  }

  .drum-random {
    grid-column: 1;
    grid-row: 2;
    order: initial;
    align-self: center;
    justify-self: center;
  }

  .drum-range {
    --drum-meter-size: clamp(164px, calc(32svh - 20px), 252px);
    grid-column: 1;
    grid-row: 4;
    flex-direction: column;
    align-items: center;
    width: var(--drum-toolbar-width);
    min-height: 0;
    padding: 12px 5px 13px;
    font-size: clamp(0.476rem, 1.855vw, 0.574rem);
    order: initial;
    justify-content: center;
    transform: none;
  }

  .drum-range input {
    order: -1;
    min-width: 0;
    left: 50%;
    right: auto;
    top: 12px;
    width: 28px;
    height: var(--drum-meter-size);
    writing-mode: vertical-lr;
    direction: rtl;
    transform: translateX(-50%);
  }

  .drum-range input::-webkit-slider-runnable-track {
    background: transparent;
  }

  .drum-range input::-webkit-slider-thumb {
    margin: 0;
  }

  .drum-range input::-moz-range-track {
    background: transparent;
  }

  .drum-range.is-open input,
  .drum-range:focus-within input {
    transform: translateX(-50%);
  }

  .drum-range-meter {
    order: -1;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 10px;
    height: var(--drum-meter-size);
    margin: 0 0 8px;
    transform: none;
  }

  .drum-range-fill {
    top: auto;
    right: 0;
    width: auto;
    height: var(--drum-bpm-progress, 52.63%);
  }

  .drum-range-thumb {
    left: 50%;
    bottom: var(--drum-bpm-progress, 52.63%);
    transform: translate(-50%, 50%);
  }

  .drum-range > span {
    flex-direction: column;
    gap: 0.18em;
    white-space: normal;
  }

  .secondary-projects {
    gap: 0;
  }

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

  .secondary-project-list a {
    grid-template-columns: 4ch minmax(0, 1fr) auto;
    align-items: center;
    min-height: clamp(86px, 22vw, 118px);
  }

  .secondary-project-list strong {
    align-self: center;
    font-size: clamp(1.085rem, 5.04vw, 1.54rem);
    line-height: 0.82;
  }

  .secondary-project-list .secondary-project-long-title strong {
    font-size: clamp(0.826rem, 4.06vw, 1.26rem);
  }

  .secondary-project-list a:nth-last-child(-n + 2) {
    border-bottom: var(--stroke) solid var(--line);
  }

  .secondary-project-list a:last-child {
    border-bottom: 0;
  }

  .secondary-project-aside {
    grid-column: 3;
    align-self: center;
  }

  .project-hero {
    grid-template-columns: 1fr;
    min-height: clamp(105px, 24vw, 160px);
    padding-top: clamp(14px, 2.5vw, 27px);
  }

  .project-hero p {
    grid-column: 1;
  }

  .project-hero-circles {
    justify-content: flex-start;
  }

  .project-hero-circle {
    width: min(26vw, 124px);
  }

  .project-compact-title {
    font-size: clamp(0.82rem, 3.2vw, 1rem);
  }

  .project-hero h2 {
    font-size: clamp(2.048rem, 10.5vw, 4.725rem);
  }

  .project-device-copy,
  .project-device-stage,
  .module-one-process-title,
  .module-one-copy,
  .module-one-meta,
  .module-one-image-row,
  .project-overview-circles,
  .project-process-grid figure,
  .additional-creative h3,
  .creative-frame,
  .project-support-grid > div {
    transform-origin: center top;
    will-change: opacity, transform;
  }

  .project-content-grid,
  .project-support-grid {
    grid-template-columns: 1fr;
  }

  .project-meta,
  .project-overview-copy h3,
  .project-overview-copy p,
  .project-overview-circles {
    grid-column: 1;
  }

  .project-meta {
    grid-row: 1;
  }

  .project-overview-copy p {
    grid-row: 2;
  }

  body.has-overview-circles .project-overview-copy p {
    grid-row: 1;
  }

  body.has-overview-circles .project-overview-circles {
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  body.has-overview-circles .project-overview-circle {
    width: 100%;
    min-width: 0;
  }

  .project-meta dl {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .module-one {
    grid-template-columns: 1fr;
  }

  body.has-module-meta .module-one {
    grid-template-columns: 1fr;
  }

  .module-one-copy {
    max-width: none;
    width: 100%;
  }

  .module-one-meta {
    grid-column: 1;
    width: 100%;
  }

  body[data-project="flashpoint-mdlinx"] .module-one-meta dt {
    font-size: 0.68rem;
    line-height: 1;
  }

  body[data-project="flashpoint-mdlinx"] .module-one-meta dd {
    font-size: clamp(0.86rem, 1.15vw, 1.08rem);
    line-height: 1.08;
  }

  .module-one-image-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .module-one-circle {
    width: 100%;
    min-width: 0;
  }

  .project-media-frame {
    aspect-ratio: auto;
    min-height: 0;
  }

  body[data-project="skimm-money-newsletter"] .project-media-frame {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 28px;
    min-height: 0;
    padding: 24px 16px 8px 0;
    aspect-ratio: auto;
    overflow: visible;
  }

  body[data-project="skimm-money-newsletter"] .project-device-heading {
    position: static;
    order: 0;
    width: 100%;
  }

  body[data-project="skimm-money-newsletter"] .project-phone-shell {
    width: min(92%, calc(((100vw - (2 * var(--page-x)) - 34px) / 2) * 0.92));
    max-width: 100%;
    justify-self: center;
  }

  body[data-project="skimm-money-newsletter"] .project-player-group {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    justify-self: stretch;
  }

  body[data-project="skimm-money-newsletter"] .project-device-copy {
    max-width: none;
  }

  body[data-project="skimm-money-newsletter"] .project-device-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    height: auto;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding-right: 6px;
    margin-bottom: clamp(96px, 25vw, 132px);
    justify-content: stretch;
    align-items: start;
  }

  body[data-project="skimm-money-newsletter"] .module-one {
    margin-top: clamp(12px, 4vw, 24px);
  }

  body[data-project="flashpoint-mdlinx"] .project-media-frame {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0 0;
    aspect-ratio: auto;
  }

  body[data-project="flashpoint-mdlinx"] .project-device-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body[data-project="flashpoint-mdlinx"] .project-device-heading,
  body[data-project="flashpoint-mdlinx"] .project-device-copy p {
    grid-column: 1;
  }

  body[data-project="flashpoint-mdlinx"] .project-device-meta {
    grid-column: 1;
    grid-row: auto;
  }

  body[data-project="flashpoint-mdlinx"] .project-device-stage {
    aspect-ratio: 16 / 9;
  }

  body[data-project="flashpoint-mdlinx"] .project-video-controls {
    right: auto;
    bottom: auto;
    left: auto;
  }

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

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

  .creative-portrait-row {
    width: 100%;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .creative-square-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .creative-frame-portrait {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    justify-self: stretch;
  }

  .creative-frame,
  .creative-frame-wide,
  .creative-frame-square,
  .creative-frame-portrait {
    grid-column: span 1;
    grid-row: span 1;
  }

  .creative-frame-portrait {
    grid-column: 1 / -1;
  }

  .project-video-controls {
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: auto auto minmax(0, 1fr) auto auto;
    grid-template-rows: auto auto;
    gap: 8px;
  }

  .video-timeline {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .video-play-toggle {
    grid-column: 1;
    grid-row: 2;
  }

  .video-time[data-video-current] {
    grid-column: 2;
    grid-row: 2;
  }

  .video-time[data-video-duration] {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }

  .video-control-button[data-video-mute] {
    grid-column: 4;
    grid-row: 2;
  }

  .video-volume {
    display: none;
  }

  .video-control-button[data-video-fullscreen] {
    grid-column: 5;
    grid-row: 2;
  }

  .project-support-grid {
    gap: 0;
  }

  .project-support-grid div + div {
    border-top: var(--stroke) solid var(--line);
  }
}

@media (min-width: 701px) and (max-width: 1024px) and (orientation: portrait) {
  .drum-machine {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .drum-stage {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .drum-wheel-field {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 1fr;
    gap: clamp(54px, 6.2vw, 72px);
    width: min(calc(var(--visual-width, 100vw) - (var(--page-x) * 2)), 720px);
    min-width: 0;
    margin-top: clamp(48px, 8svh, 88px);
    transform: none;
  }

  .drum-dial-drums {
    --drum-step-size: 16px;
    grid-column: 1;
    grid-row: auto;
    order: 1;
    width: min(50vw, 330px);
    min-width: 0;
    transform: translateX(clamp(-74px, -7vw, -42px));
  }

  .drum-synth-stack {
    grid-column: 1;
    grid-row: auto;
    order: 2;
    grid-template-columns: repeat(2, auto);
    gap: clamp(24px, 4vw, 38px);
    width: auto;
    justify-self: center;
    transform: translateX(clamp(-74px, -7vw, -42px));
  }

  .drum-dial-synth {
    --drum-step-size: 16px;
    width: min(27vw, 216px);
    min-width: 164px;
  }

  .drum-synth-cell {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .drum-synth-cell.is-active {
    transform: scale(1.03);
  }

  .drum-dial-synth .drum-orbit-label {
    font-size: clamp(0.364rem, 0.805vw, 0.476rem);
  }

  .drum-chord-select {
    min-width: 0;
    padding: 0;
    border: 0;
    font-size: clamp(0.644rem, 1.54vw, 0.826rem);
  }

  .drum-chord-select span {
    display: none;
  }

  .drum-controls {
    grid-column: auto;
    grid-row: auto;
    order: initial;
    position: absolute;
    right: clamp(34px, 4.2vw, 54px);
    top: 0;
    display: grid;
    --drum-toolbar-width: 48px;
    --drum-play-size: 83px;
    grid-template-columns: 1fr;
    grid-template-rows: var(--drum-play-size) repeat(2, var(--drum-toolbar-width)) clamp(340px, calc(48svh - 20px), 540px);
    gap: 10px;
    width: var(--drum-play-size);
    height: auto;
    justify-self: auto;
    margin-top: 0;
    transform: translateY(-18px);
  }

  .drum-clear {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }

  .drum-random {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .drum-transport {
    grid-column: 1;
    grid-row: 1;
  }

  .drum-range {
    --drum-meter-size: clamp(260px, calc(40svh - 20px), 450px);
    grid-column: 1;
    grid-row: 4;
    flex-direction: column;
    align-items: center;
    align-self: center;
    width: var(--drum-toolbar-width);
    min-height: 0;
    padding: 14px 6px 15px;
    font-size: clamp(0.63rem, 1.4vw, 0.756rem);
    justify-content: center;
    transform: none;
  }

  .drum-range input {
    left: 50%;
    right: auto;
    top: 14px;
    width: 28px;
    height: var(--drum-meter-size);
    writing-mode: vertical-lr;
    direction: rtl;
    transform: translateX(-50%);
  }

  .drum-range.is-open input,
  .drum-range:focus-within input {
    transform: translateX(-50%);
  }

  .drum-range-meter {
    order: -1;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 10px;
    height: var(--drum-meter-size);
    margin: 0 0 8px;
    transform: none;
  }

  .drum-range-fill {
    top: auto;
    right: 0;
    width: auto;
    height: var(--drum-bpm-progress, 52.63%);
  }

  .drum-range-thumb {
    left: 50%;
    bottom: var(--drum-bpm-progress, 52.63%);
    transform: translate(-50%, 50%);
  }

  .drum-range > span {
    flex-direction: column;
    gap: 0.18em;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .masthead {
    gap: 12px;
  }

  h1 {
    font-size: clamp(0.7rem, 3.64vw, 0.945rem);
  }

  .masthead-copy {
    gap: 8px;
  }

  .masthead-copy p {
    font-size: clamp(0.532rem, 2.52vw, 0.665rem);
  }

  .site-nav {
    min-height: 52px;
  }

  .nav-menu {
    width: 52px;
    height: 52px;
    gap: 7px;
  }

  .nav-menu span {
    width: 26px;
  }

  .site-nav.is-menu-open .nav-menu span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-nav.is-menu-open .nav-menu span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .project-hero {
    padding-top: 17px;
  }

  .project-hero h2 {
    font-size: clamp(1.575rem, 9.45vw, 2.888rem);
  }

  .project-hero h2 .title-mobile-break {
    display: block;
  }

  .project-media-placeholder {
    inset: 14px;
  }
}

.masthead {
  position: fixed !important;
  top: var(--masthead-top) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate3d(-50%, 0, 0);
}

.data-rail {
  position: fixed !important;
}

.project-page .masthead,
.playground-page .masthead {
  position: fixed !important;
  top: var(--masthead-top) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate3d(-50%, 0, 0) !important;
}

body.is-scrolled .masthead,
body.project-page.is-scrolled .masthead,
body.playground-page.is-scrolled .masthead {
  top: var(--masthead-top) !important;
}

.project-page .masthead,
.project-page.is-scrolled .masthead {
  min-height: clamp(58px, 6vw, 78px);
  padding: clamp(8px, 1.1vw, 15px) 0;
}

.project-page.is-scrolled .masthead {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.project-page h1,
.project-page.is-scrolled h1 {
  width: 3.2ch;
  font-size: var(--project-info-heading-size);
}

.project-page .title-full,
.project-page.is-scrolled .title-full {
  opacity: 0;
  transform: translateX(0.28em) scale(0.42);
}

.project-page .title-compact,
.project-page.is-scrolled .title-compact {
  opacity: 1;
  transform: translateX(0) scale(1);
}

@media (max-width: 700px) {
  .masthead {
    left: var(--page-x) !important;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(var(--visual-width, 100vw) - (var(--page-x) * 2)) !important;
    max-width: calc(var(--visual-width, 100vw) - (var(--page-x) * 2)) !important;
    gap: 8px;
    overflow: visible;
    transform: none !important;
    z-index: 40;
  }

  .project-page .masthead,
  .playground-page .masthead {
    position: fixed !important;
    top: var(--masthead-top) !important;
    left: var(--page-x) !important;
    right: auto !important;
    bottom: auto !important;
    width: calc(var(--visual-width, 100vw) - (var(--page-x) * 2)) !important;
    max-width: calc(var(--visual-width, 100vw) - (var(--page-x) * 2)) !important;
    transform: none !important;
    z-index: 40;
  }

  body.is-scrolled .masthead,
  body.project-page.is-scrolled .masthead,
  body.playground-page.is-scrolled .masthead {
    top: var(--masthead-top) !important;
  }

  .project-page .masthead,
  .project-page.is-scrolled .masthead {
    min-height: clamp(66px, 20vw, 92px);
    padding: clamp(14px, 3.8vw, 22px) 0;
  }

  .project-page h1,
  .project-page.is-scrolled h1 {
    width: 3.2ch;
    font-size: var(--project-info-heading-size);
  }

  body:not(.project-page):not(.playground-page).is-scrolled h1 {
    width: 6.9ch;
  }

  .masthead-copy {
    flex: 1 1 auto;
    width: auto;
    max-width: 100%;
    padding-right: 0;
  }

  .masthead-copy p {
    display: none;
  }

  body:not(.project-page):not(.playground-page):not(.is-scrolled) {
    --masthead-spacer: clamp(120px, 29vw, 158px);
    --mobile-role-row-height: clamp(28px, 6.8vw, 36px);
  }

  body:not(.project-page):not(.playground-page):not(.is-scrolled) .masthead {
    grid-template-rows: auto var(--stroke) var(--mobile-role-row-height);
    align-items: center;
    min-height: 0;
    padding: clamp(12px, 3.2vw, 18px) 0 0;
    row-gap: 0;
  }

  body:not(.project-page):not(.playground-page):not(.is-scrolled) .masthead-copy {
    display: contents;
  }

  body:not(.project-page):not(.playground-page):not(.is-scrolled) h1 {
    grid-column: 1;
    grid-row: 1;
    width: 7.15ch;
    flex-basis: auto;
    font-size: clamp(2.82rem, 15.36vw, 4.86rem);
    line-height: 0.78;
    margin-bottom: clamp(10px, 2.8vw, 15px);
  }

  body:not(.project-page):not(.playground-page):not(.is-scrolled) .title-full {
    width: 7.15ch;
  }

  body:not(.project-page):not(.playground-page):not(.is-scrolled) .masthead-copy p {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.38em;
    width: auto;
    max-width: none;
    margin-top: 0;
    padding: 0;
    border-top: 0;
    overflow: hidden;
    height: 100%;
    font-size: clamp(0.711rem, 3.19vw, 0.92rem);
    line-height: 1;
    text-overflow: clip;
    white-space: nowrap;
    opacity: 1;
    transform: none;
    align-self: center;
  }

  body:not(.project-page):not(.playground-page):not(.is-scrolled) .masthead-copy p span {
    display: inline;
  }

  body:not(.project-page):not(.playground-page).is-scrolled .masthead {
    --mobile-role-row-height: clamp(28px, 6.8vw, 36px);
    grid-template-rows: auto var(--stroke) var(--mobile-role-row-height);
    align-items: center;
    min-height: 0;
    padding: clamp(12px, 3.2vw, 18px) 0 0;
    border-right: var(--stroke) solid var(--line);
    border-left: var(--stroke) solid var(--line);
    row-gap: 0;
  }

  body:not(.project-page):not(.playground-page).is-scrolled .masthead-copy {
    display: contents;
  }

  body:not(.project-page):not(.playground-page).is-scrolled h1,
  body:not(.project-page):not(.playground-page).is-scrolled .site-nav {
    align-self: center;
    transform: translateY(-4px);
  }

  body:not(.project-page):not(.playground-page).is-scrolled h1 {
    margin-left: var(--mobile-masthead-frame-inset);
  }

  body:not(.project-page):not(.playground-page).is-scrolled .site-nav {
    margin-right: var(--mobile-masthead-frame-inset);
  }

  body:not(.project-page):not(.playground-page).is-scrolled .masthead-copy p {
    flex: 1 1 auto;
    flex-basis: auto;
    grid-column: 1;
    grid-row: 3;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.38em;
    width: auto;
    max-width: none;
    margin-top: 0;
    padding: 0 0 0 var(--mobile-masthead-frame-inset);
    border-top: 0;
    box-sizing: border-box;
    overflow: hidden;
    height: 100%;
    font-size: clamp(0.711rem, 3.19vw, 0.92rem);
    line-height: 1;
    white-space: nowrap;
    opacity: 1;
    transform: none;
    align-self: center;
  }

  body:not(.project-page):not(.playground-page).is-scrolled .masthead-copy p,
  body:not(.project-page):not(.playground-page):not(.is-scrolled) .masthead-copy p {
    align-items: center;
    min-width: 0;
  }

  body:not(.project-page):not(.playground-page) .masthead-copy::after {
    content: "";
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: start;
    width: 100%;
    height: var(--stroke);
    background: var(--line);
    pointer-events: none;
  }

  body:not(.project-page):not(.playground-page).is-scrolled .masthead-copy p span {
    display: inline;
  }

  body.is-scrolled:not(.project-page):not(.playground-page):not(.drum-page) .masthead-copy p {
    flex: 1 1 auto;
    flex-basis: auto;
    max-width: none;
    opacity: 1;
    transform: none;
  }

  body:not(.project-page):not(.playground-page) .home-intro-toggle-inline {
    grid-column: 2;
    grid-row: 3;
    align-self: center;
    justify-self: end;
    display: inline-grid;
    grid-template-columns: auto 12px;
    width: clamp(64px, 16vw, 78px);
    height: clamp(22px, 5.4vw, 26px);
    aspect-ratio: auto;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, 1.4vw, 8px);
    padding: 0 clamp(6px, 1.7vw, 8px) 0 clamp(10px, 2.8vw, 14px);
    border-radius: 999px;
    margin: 0 !important;
  }

  body:not(.project-page):not(.playground-page) .home-intro-toggle-inline .home-intro-toggle-label {
    display: block;
    font-family: var(--display-font);
    font-size: clamp(0.62rem, 2.6vw, 0.82rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
  }

  body:not(.project-page):not(.playground-page) .home-intro-toggle-inline > span[aria-hidden="true"] {
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
  }

  body:not(.project-page):not(.playground-page).is-home-intro-expanded .home-intro-toggle-inline > span[aria-hidden="true"]::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  body:not(.project-page):not(.playground-page):not(.is-scrolled) .home-intro-toggle-inline {
    transform: none;
  }

  body:not(.project-page):not(.playground-page).is-scrolled .home-intro-toggle-inline {
    margin: 0 var(--mobile-masthead-frame-inset) 0 0 !important;
    transform: none;
  }

  body:not(.project-page):not(.playground-page).is-home-intro-expanded .home-intro-toggle-inline {
    display: grid;
  }

  body:not(.project-page):not(.playground-page) .masthead,
  body:not(.project-page):not(.playground-page).is-scrolled .masthead {
    align-content: start;
  }

  body:not(.project-page):not(.playground-page) .home-feature-row {
    margin-top: max(
      0px,
      calc(var(--masthead-spacer) + var(--masthead-top) - var(--page-top) + clamp(46px, 11vw, 64px))
    );
  }

  body:not(.project-page):not(.playground-page):not(.is-scrolled) .site-nav {
    align-self: end;
    transform: translateY(-10px);
    padding-bottom: 0;
  }

  .site-nav {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav-menu {
    display: grid !important;
  }

  .drum-page .masthead {
    padding-block: 8px !important;
  }

  .drum-page .site-nav {
    min-height: 44px;
  }

  .drum-page .nav-menu {
    width: 44px;
    height: 44px;
    gap: 6px;
  }

  .drum-page .nav-menu span {
    width: 22px;
  }

  .mobile-menu-mark {
    display: none;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    align-content: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    gap: 4px;
    border: var(--stroke) solid var(--line);
    background: color-mix(in srgb, var(--bg) 88%, transparent);
  }

  .mobile-menu-mark span {
    display: block;
    width: 13px;
    height: var(--stroke);
    background: var(--line);
  }

  .masthead::after {
    content: none !important;
  }

  .site-menu-panel {
    position: fixed;
    top: var(--masthead-bottom, calc(var(--masthead-top) + 62px));
    left: var(--masthead-left, var(--page-x));
    right: var(--masthead-right, var(--page-x));
    width: auto;
    max-height: none;
  }

  .site-menu-panel a {
    grid-template-columns: 3ch minmax(0, 1fr);
    gap: 8px 12px;
  }

}

@media (max-width: 700px) {
  .mobile-nav-glyph {
    display: none !important;
    position: fixed;
    top: calc(var(--masthead-top) + clamp(33px, 10vw, 46px));
    right: var(--page-x);
    z-index: 200;
    width: 26px;
    height: 26px;
    border: var(--stroke) solid var(--line);
    background:
      linear-gradient(var(--line), var(--line)) center calc(50% - 5px) / 13px var(--stroke) no-repeat,
      linear-gradient(var(--line), var(--line)) center 50% / 13px var(--stroke) no-repeat,
      linear-gradient(var(--line), var(--line)) center calc(50% + 5px) / 13px var(--stroke) no-repeat,
      color-mix(in srgb, var(--bg) 88%, transparent);
    pointer-events: none;
    transform: translateY(-50%);
  }

  body.is-scrolled .mobile-nav-glyph {
    top: calc(var(--masthead-top) + clamp(13px, 3.8vw, 17px));
  }
}

@media (max-width: 700px) {
  h1 {
    width: 14ch;
    font-size: clamp(1.246rem, 5.46vw, 1.785rem);
  }

  body.is-scrolled h1 {
    width: 3.2ch;
    font-size: clamp(0.938rem, 4.48vw, 1.344rem);
  }

  body.is-scrolled .title-full {
    opacity: 0;
    line-height: 0.11;
    transform: translate(0, 0) scale(0.42);
  }

  body.is-scrolled .title-compact {
    opacity: 1;
    letter-spacing: 0.06em;
    transform: translateX(0) scale(1);
  }
}

body.project-page .masthead,
body.playground-page .masthead,
body.project-page.is-scrolled .masthead,
body.playground-page.is-scrolled .masthead {
  top: var(--masthead-top) !important;
  min-height: clamp(72px, 7.4vw, 98px);
  padding: clamp(10px, 1.25vw, 16px) var(--masthead-frame-inset);
  border: var(--stroke) solid var(--line);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

body.project-page h1,
body.playground-page h1,
body.project-page.is-scrolled h1,
body.playground-page.is-scrolled h1 {
  width: 6.9ch;
  font-size: clamp(1.561rem, 2.779vw, 2.779rem);
}

body.project-page .title-full,
body.playground-page .title-full,
body.project-page.is-scrolled .title-full,
body.playground-page.is-scrolled .title-full {
  opacity: 0;
  line-height: 0.11;
  transform: translate(0, 0) scale(0.42);
}

body.project-page .title-compact,
body.playground-page .title-compact,
body.project-page.is-scrolled .title-compact,
body.playground-page.is-scrolled .title-compact {
  opacity: 1;
  letter-spacing: 0.06em;
  transform: translateX(0) scale(1);
}

body.project-page .masthead-copy p,
body.playground-page .masthead-copy p,
body.project-page.is-scrolled .masthead-copy p,
body.playground-page.is-scrolled .masthead-copy p {
  display: none;
}

body.project-page .masthead + .project-compact-title,
body.playground-page .masthead + .playground-detail,
body.drum-page .masthead + .drum-machine,
body.smudge-page .masthead + .smudge-detail {
  margin-top: max(
    0px,
    calc(var(--masthead-bottom, calc(var(--masthead-top) + 98px)) - var(--page-top) + clamp(8px, 1vw, 16px))
  );
}

@media (max-width: 700px) {
  body.playground-page .masthead + .playground-detail,
  body.drum-page .masthead + .drum-machine,
  body.smudge-page .masthead + .smudge-detail {
    margin-top: max(
      0px,
      calc(var(--masthead-bottom, calc(var(--masthead-top) + 92px)) - var(--page-top) + clamp(12px, 3vw, 20px))
    );
  }

  body.project-page .masthead + .project-compact-title {
    margin-top: max(
      0px,
      calc(var(--masthead-bottom, calc(var(--masthead-top) + 92px)) - var(--page-top) + clamp(12px, 3vw, 20px) - 30px)
    );
  }
}

@media (max-width: 700px) {
  body.project-page .masthead,
  body.playground-page .masthead,
  body.project-page.is-scrolled .masthead,
  body.playground-page.is-scrolled .masthead {
    min-height: clamp(74px, 22vw, 106px);
    padding: clamp(11px, 3.2vw, 18px) var(--masthead-frame-inset);
  }

  body.project-page h1,
  body.playground-page h1,
  body.project-page.is-scrolled h1,
  body.playground-page.is-scrolled h1 {
    width: 6.9ch;
    font-size: clamp(1.407rem, 6.72vw, 2.016rem);
  }
}

body:not([data-project="skimm-money-newsletter"]) .project-media-frame:fullscreen {
  position: fixed;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: #000;
}

body:not([data-project="skimm-money-newsletter"]) .project-media-frame:fullscreen .project-device-copy {
  display: none !important;
}

body:not([data-project="skimm-money-newsletter"]) .project-media-frame:fullscreen .project-player-group {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  transform: none !important;
}

body:not([data-project="skimm-money-newsletter"]) .project-media-frame:fullscreen .project-device-stage {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  opacity: 1 !important;
  transform: none !important;
}

body:not([data-project="skimm-money-newsletter"]) .project-media-frame:fullscreen .project-phone-shell,
body:not([data-project="skimm-money-newsletter"]) .project-media-frame:fullscreen .project-phone-screen {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

body:not([data-project="skimm-money-newsletter"]) .project-media-frame:fullscreen .project-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  opacity: 1 !important;
  transform: none !important;
}

body:not([data-project="skimm-money-newsletter"]) .project-media-frame:fullscreen .project-video-controls {
  position: absolute;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  left: max(18px, env(safe-area-inset-left));
  width: auto;
  max-width: none;
  opacity: 1;
  transform: none !important;
}

body:not([data-project="skimm-money-newsletter"]) .project-media-frame:fullscreen.controls-hidden .project-video-controls {
  opacity: 0;
  pointer-events: none;
}

body:not([data-project="skimm-money-newsletter"]) .project-player-group:fullscreen {
  position: fixed;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: #000;
  opacity: 1 !important;
  transform: none !important;
}

body:not([data-project="skimm-money-newsletter"]) .project-player-group:fullscreen .project-device-stage {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  opacity: 1 !important;
  transform: none !important;
}

body:not([data-project="skimm-money-newsletter"]) .project-player-group:fullscreen .project-phone-shell,
body:not([data-project="skimm-money-newsletter"]) .project-player-group:fullscreen .project-phone-screen {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

body:not([data-project="skimm-money-newsletter"]) .project-player-group:fullscreen .project-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: contain;
  opacity: 1 !important;
  transform: none !important;
}

body:not([data-project="skimm-money-newsletter"]) .project-player-group:fullscreen .project-video-controls {
  position: absolute;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  left: max(18px, env(safe-area-inset-left));
  z-index: 2;
  width: auto;
  max-width: none;
  opacity: 1;
  transform: none !important;
}

body:not([data-project="skimm-money-newsletter"]) .project-player-group:fullscreen.controls-hidden .project-video-controls {
  opacity: 0;
  pointer-events: none;
}

body:not([data-project="skimm-money-newsletter"]) .project-video:fullscreen {
  width: 100vw;
  height: 100vh;
  border: 0;
  background: #000;
  object-fit: contain;
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 900px) {
  body:not(.project-page):not(.playground-page) .home-intro {
    position: fixed !important;
    top: var(--masthead-bottom, calc(var(--masthead-top) + 112px)) !important;
    left: var(--masthead-left, var(--page-x)) !important;
    z-index: 39;
    width: var(--masthead-width, calc(var(--visual-width, 100vw) - (var(--page-x) * 2))) !important;
    margin: 0 !important;
    transform: none !important;
  }

  html.is-safari {
    --safari-mobile-row-height: clamp(62px, 13vw, 74px);
    --safari-mobile-home-masthead-height: calc(
      clamp(42px, 3.7vw, 48px) + var(--stroke) + var(--safari-mobile-row-height) + clamp(12px, 3.2vw, 18px)
    );
    --safari-mobile-home-masthead-open-height: clamp(152px, 38vw, 206px);
    --safari-mobile-row-lift-load: clamp(-16px, -3.8vw, -10px);
    --safari-mobile-row-lift-scrolled: clamp(-6px, -1.4vw, -3px);
  }

  html.is-safari body:not(.project-page):not(.playground-page) {
    --masthead-spacer: clamp(126px, 31vw, 172px);
    --mobile-role-row-height: var(--safari-mobile-row-height);
  }

  html.is-safari body:not(.project-page):not(.playground-page) .masthead {
    transition:
      height 320ms cubic-bezier(0.76, 0, 0.24, 1),
      min-height 320ms cubic-bezier(0.76, 0, 0.24, 1),
      max-height 320ms cubic-bezier(0.76, 0, 0.24, 1),
      background-color 220ms ease,
      border-color 220ms ease;
  }

  html.is-safari body:not(.project-page):not(.playground-page):not(.is-scrolled) .masthead {
    height: var(--safari-mobile-home-masthead-open-height) !important;
    min-height: var(--safari-mobile-home-masthead-open-height) !important;
    max-height: var(--safari-mobile-home-masthead-open-height) !important;
    overflow: hidden;
  }

  html.is-safari body:not(.project-page):not(.playground-page) .masthead-copy p {
    overflow: visible;
    height: auto;
    font-size: clamp(0.675rem, 3.03vw, 0.874rem);
    line-height: 1;
    opacity: 1;
    visibility: visible;
    align-self: center;
    transform: translateY(var(--safari-mobile-row-lift-load));
    transition:
      opacity 180ms ease,
      transform 240ms cubic-bezier(0.76, 0, 0.24, 1);
  }

  html.is-safari body:not(.project-page):not(.playground-page).is-scrolled .masthead {
    --mobile-role-row-height: var(--safari-mobile-row-height);
    height: var(--safari-mobile-home-masthead-height) !important;
    min-height: var(--safari-mobile-home-masthead-height) !important;
    max-height: var(--safari-mobile-home-masthead-height) !important;
    overflow: hidden;
  }

  html.is-safari body:not(.project-page):not(.playground-page).is-scrolled .masthead-copy p {
    transform: translateY(var(--safari-mobile-row-lift-scrolled));
  }

  html.is-safari body:not(.project-page):not(.playground-page) .home-intro-toggle-inline {
    opacity: 1;
    visibility: visible;
    align-self: center;
    transform: translateY(var(--safari-mobile-row-lift-load)) !important;
    transition:
      opacity 180ms ease,
      transform 240ms cubic-bezier(0.76, 0, 0.24, 1),
      background-color 180ms ease,
      border-color 180ms ease;
  }

  html.is-safari body:not(.project-page):not(.playground-page).is-scrolled .home-intro-toggle-inline {
    transform: translateY(var(--safari-mobile-row-lift-scrolled)) !important;
  }

  html.is-safari body:not(.project-page):not(.playground-page).is-scrolled .home-intro {
    top: calc(var(--masthead-top) + var(--safari-mobile-home-masthead-height)) !important;
  }

  html.is-safari body.is-safari-restoring-home:not(.project-page):not(.playground-page) .masthead {
    height: var(--safari-mobile-home-masthead-open-height, auto) !important;
    min-height: var(--safari-mobile-home-masthead-open-height, auto) !important;
    max-height: var(--safari-mobile-home-masthead-open-height, none) !important;
    overflow: hidden;
  }
}
