:root {
  --black: #080808;
  --ink: #111111;
  --paper: #f4f3ed;
  --muted: #a3a39d;
  --acid: #b8ff37;
  --pink: #ff65ce;
  --blue: #52d9ff;
  --orange: #ff6c37;
  --line: rgba(244, 243, 237, 0.22);
  --gutter: clamp(16px, 2vw, 32px);
  --display: "Azeret Mono", monospace;
  --body: "Instrument Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(82, 217, 255, 0.04), transparent 24rem),
    var(--black);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

::selection {
  color: var(--black);
  background: var(--acid);
}

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--acid);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 64px;
  padding: 10px var(--gutter);
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0));
  transition:
    background 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.78);
  border-bottom: 1px solid rgba(244, 243, 237, 0.09);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.brand__mark {
  width: 32px;
  overflow: visible;
}

.brand__mark path:first-child {
  fill: var(--acid);
}

.brand__mark path:nth-child(2) {
  fill: var(--pink);
}

.brand__mark circle {
  fill: var(--paper);
}

.main-nav {
  display: flex;
  padding: 6px 10px;
  gap: clamp(20px, 3vw, 46px);
  border: 1px solid rgba(244, 243, 237, 0.12);
  border-radius: 99px;
  background: rgba(8, 8, 8, 0.35);
  backdrop-filter: blur(9px);
}

.main-nav a {
  position: relative;
  padding: 2px 0;
  color: rgba(244, 243, 237, 0.86);
  font-size: 13px;
}

.main-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pill {
  display: inline-flex;
  min-height: 34px;
  padding: 7px 13px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

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

.pill--acid {
  color: var(--black);
  background: var(--acid);
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  padding: 64px 10px 0;
}

.hero-stage {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  border-radius: 3px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.13), transparent 34%),
    linear-gradient(135deg, #172224 0%, #2c3035 46%, #151819 100%);
  perspective: 1000px;
}

.hero-stage::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(106deg, transparent 5%, rgba(255, 255, 255, 0.07) 38%, transparent 48%),
    linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 55%);
}

.hero-stage::after {
  position: absolute;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  height: 15%;
  content: "";
  background: linear-gradient(to top, rgba(4, 4, 4, 0.72), transparent);
  pointer-events: none;
}

.stage-grid {
  position: absolute;
  z-index: -1;
  inset: -40%;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 65px 65px;
  transform: rotateX(66deg) translateY(36%);
  mask-image: linear-gradient(to bottom, transparent 25%, black 80%);
}

.stage-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  animation: breathe 5s ease-in-out infinite alternate;
}

.stage-glow--pink {
  top: 2%;
  left: 35%;
  width: 32vw;
  height: 32vw;
  background: var(--pink);
}

.stage-glow--blue {
  right: 6%;
  bottom: 6%;
  width: 24vw;
  height: 24vw;
  background: var(--blue);
  animation-delay: -2s;
}

.kinetic-object {
  position: absolute;
  will-change: transform;
  transition: transform 120ms linear;
}

.kinetic-object--flower {
  z-index: 8;
  top: 10%;
  left: 34%;
  width: clamp(250px, 37vw, 570px);
  aspect-ratio: 1;
  animation: drift 7s ease-in-out infinite;
}

.kinetic-object--flower i {
  position: absolute;
  top: 17%;
  left: 37%;
  display: block;
  width: 28%;
  height: 55%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 100% 16% 100% 14%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), transparent 22%),
    linear-gradient(135deg, #ffafe8, #ff3fc3 48%, #7d176e);
  box-shadow:
    inset -18px -18px 38px rgba(38, 0, 42, 0.34),
    0 15px 30px rgba(255, 54, 196, 0.14);
  transform-origin: 50% 82%;
}

.kinetic-object--flower i:nth-child(1) {
  transform: rotate(-72deg) translateY(11%);
}

.kinetic-object--flower i:nth-child(2) {
  transform: rotate(-38deg) translateY(-5%);
}

.kinetic-object--flower i:nth-child(3) {
  transform: rotate(0deg) translateY(-14%);
}

.kinetic-object--flower i:nth-child(4) {
  transform: rotate(40deg) translateY(-5%);
}

.kinetic-object--flower i:nth-child(5) {
  transform: rotate(76deg) translateY(11%);
}

.kinetic-object--flower i:nth-child(6) {
  z-index: -1;
  transform: rotate(180deg) translateY(-5%);
  filter: brightness(0.62);
}

.kinetic-object--flower b {
  position: absolute;
  z-index: 4;
  top: 48%;
  left: 47%;
  width: 11%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, #3b1000 0 2px, #ffb72d 3px 6px);
  box-shadow: 0 0 30px #ff7d1b;
}

.kinetic-object--orb {
  z-index: 9;
  right: 8%;
  bottom: 12%;
  display: grid;
  width: clamp(150px, 20vw, 310px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 48% 52% 44% 56% / 58% 39% 61% 42%;
  background:
    radial-gradient(circle at 31% 24%, rgba(255, 255, 255, 0.9), transparent 8%),
    radial-gradient(circle at 58% 60%, #bdff2a, #207346 46%, #05251e 71%);
  box-shadow:
    inset -25px -30px 55px rgba(0, 0, 0, 0.42),
    0 30px 80px rgba(0, 0, 0, 0.4);
  animation: morph 7s ease-in-out infinite alternate;
}

.kinetic-object--orb::before {
  position: absolute;
  inset: 13%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  content: "";
  transform: rotate(40deg) scaleY(0.32);
}

.kinetic-object--orb span {
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(11px, 1.5vw, 22px);
  line-height: 0.86;
  text-align: center;
  transform: rotate(-8deg);
}

.kinetic-object--chrome {
  z-index: 4;
  bottom: 1%;
  left: 13%;
  width: clamp(130px, 21vw, 320px);
  aspect-ratio: 1.4;
  border-radius: 47% 53% 59% 41% / 35% 39% 61% 65%;
  background:
    radial-gradient(circle at 28% 25%, #fff 0 3%, transparent 4%),
    radial-gradient(circle at 62% 68%, #111 0 8%, transparent 9%),
    conic-gradient(from 210deg, #111, #effbff, #47535d, #fff, #181c21, #dffaff, #111);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.62),
    0 30px 70px rgba(0, 0, 0, 0.5);
  filter: contrast(1.28);
  transform: rotate(-12deg);
}

.kinetic-object--cube {
  z-index: 10;
  bottom: 9%;
  left: 43%;
  width: clamp(80px, 12vw, 160px);
  height: clamp(80px, 12vw, 160px);
  transform: rotate(-9deg) skewY(1deg);
}

.cube-face {
  position: absolute;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: clamp(20px, 3.5vw, 52px);
  font-weight: 600;
}

.cube-face--front {
  inset: 20% 0 0;
  color: var(--black);
  background: linear-gradient(145deg, #cbff63, #7ccb00);
  box-shadow: inset -15px -12px 22px rgba(26, 66, 0, 0.22);
}

.cube-face--top {
  top: 0;
  left: 17%;
  width: 83%;
  height: 21%;
  background: #e9ffbd;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.cube-face--side {
  top: 20%;
  right: -22%;
  width: 23%;
  height: 80%;
  background: #649d00;
  clip-path: polygon(0 0, 100% 12%, 100% 90%, 0 100%);
}

.kinetic-object--loop {
  z-index: 3;
  top: 19%;
  left: 7%;
  width: clamp(110px, 17vw, 230px);
  aspect-ratio: 1;
  border: clamp(16px, 2.6vw, 42px) solid var(--blue);
  border-right-color: #174e68;
  border-bottom-color: #f2faff;
  border-radius: 50%;
  box-shadow:
    inset 12px 15px 30px rgba(0, 0, 0, 0.4),
    0 18px 35px rgba(0, 0, 0, 0.4);
  transform: rotateX(62deg) rotateZ(28deg);
  animation: loopSpin 9s linear infinite;
}

.kinetic-object--star {
  z-index: 11;
  top: 14%;
  right: 18%;
  color: var(--acid);
  font-size: clamp(70px, 11vw, 170px);
  line-height: 1;
  text-shadow: 0 0 32px rgba(184, 255, 55, 0.28);
  animation: starPulse 3.5s ease-in-out infinite;
}

.stage-label {
  position: absolute;
  z-index: 15;
  padding: 6px 9px 5px;
  color: var(--black);
  font-family: var(--display);
  font-size: clamp(9px, 1vw, 13px);
  font-weight: 600;
}

.stage-label--one {
  top: 17%;
  left: 25%;
  background: var(--pink);
  transform: rotate(-8deg);
}

.stage-label--two {
  right: 27%;
  bottom: 20%;
  background: var(--paper);
  transform: rotate(6deg);
}

.stage-ticker {
  position: absolute;
  z-index: 18;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: var(--black);
  background: var(--acid);
  font-family: var(--display);
  font-size: clamp(11px, 1.2vw, 16px);
  white-space: nowrap;
}

.stage-ticker div {
  width: max-content;
  padding: 8px 0;
  animation: ticker 18s linear infinite;
}

.hero-title-wrap {
  position: relative;
  padding: clamp(52px, 7vw, 100px) var(--gutter) clamp(70px, 10vw, 150px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display-title {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 8.3vw, 142px);
  font-weight: 400;
  letter-spacing: -0.085em;
  line-height: 0.87;
  text-transform: uppercase;
}

.display-title span {
  color: var(--acid);
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(72px, 10vw, 130px);
  display: flex;
  width: clamp(106px, 12vw, 170px);
  aspect-ratio: 1;
  padding: 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 12px;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-cue:hover {
  color: var(--paper);
  border-color: var(--acid);
  transform: rotate(8deg);
}

.section-pad {
  padding: clamp(90px, 12vw, 190px) var(--gutter);
}

.intro {
  padding-top: 0;
}

.intro-copy {
  max-width: 830px;
  margin: 0 auto clamp(70px, 10vw, 150px);
  font-family: var(--display);
  font-size: clamp(24px, 3.4vw, 54px);
  letter-spacing: -0.06em;
  line-height: 1.16;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 0.45em;
}

.highlight {
  display: inline;
}

.highlight--pink {
  color: var(--pink);
}

.highlight--acid {
  color: var(--acid);
}

.showreel-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: min(74vw, 780px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  color: var(--paper);
  background: #e96531;
  text-align: left;
  isolation: isolate;
}

.showreel-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 35%),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.26));
}

.showreel-card__art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, #ffca89 0 4%, transparent 4.5%),
    linear-gradient(155deg, #ff9347, #df2745 55%, #52176d);
}

.showreel-card__art::before,
.showreel-card__art::after {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 9%;
  height: 90%;
  border-radius: 50%;
  content: "";
  background: linear-gradient(to right, #3b0819, #ff7e6a 47%, #5a071c);
  box-shadow: 0 0 30px rgba(61, 6, 27, 0.44);
  transform: translateX(-50%) rotate(53deg);
}

.showreel-card__art::after {
  transform: translateX(-50%) rotate(-53deg);
}

.showreel-card__art i {
  position: absolute;
  top: 9%;
  left: 45.5%;
  width: 9%;
  height: 82%;
  border-radius: 50%;
  background: linear-gradient(to right, #431027, #ffc296 52%, #6f1435);
  transform-origin: center;
}

.showreel-card__art i:nth-child(1) {
  transform: rotate(0deg);
}

.showreel-card__art i:nth-child(2) {
  transform: rotate(30deg);
}

.showreel-card__art i:nth-child(3) {
  transform: rotate(60deg);
}

.showreel-card__art i:nth-child(4) {
  transform: rotate(90deg);
}

.showreel-card__art i:nth-child(5) {
  transform: rotate(120deg);
}

.showreel-card__meta {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 18px 20px;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 13px;
  text-transform: uppercase;
}

.play-orbit {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(86px, 10vw, 145px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.14);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
  transition:
    background 220ms ease,
    transform 440ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showreel-card:hover .play-orbit {
  color: var(--black);
  background: var(--acid);
  transform: translate(-50%, -50%) scale(1.12) rotate(360deg);
}

.showreel-card:hover .showreel-card__art {
  animation: artZoom 8s ease-out forwards;
}

.expertise {
  padding-top: 0;
}

.section-title {
  max-width: 1400px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 5.3vw, 88px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-title span {
  color: var(--acid);
}

.expertise .section-title {
  max-width: 18ch;
}

.marquee {
  width: calc(100% + (var(--gutter) * 2));
  margin: clamp(58px, 8vw, 115px) calc(var(--gutter) * -1) 36px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee__track {
  display: flex;
  width: max-content;
  padding: 14px 0 12px;
  animation: ticker 25s linear infinite;
}

.marquee__track span {
  display: flex;
  align-items: center;
  font-size: 15px;
  white-space: nowrap;
}

.marquee__track span::after {
  margin: 0 22px;
  color: var(--pink);
  content: "✦";
}

.project-grid {
  display: grid;
  align-items: start;
  gap: clamp(30px, 4vw, 66px) clamp(12px, 1.4vw, 22px);
  grid-template-columns: repeat(12, 1fr);
}

.project-card {
  grid-column: span 4;
  outline: 0;
}

.project-card--wide {
  grid-column: span 8;
}

.project-card--tall {
  grid-column: span 4;
}

.project-card:nth-child(3) {
  margin-top: 7vw;
}

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

.project-card:nth-child(5) {
  grid-column: span 7;
  margin-top: 7vw;
}

.project-card:nth-child(6) {
  margin-top: -3vw;
}

.project-art {
  position: relative;
  min-height: clamp(300px, 35vw, 590px);
  overflow: hidden;
  background: #222;
  isolation: isolate;
}

.project-card--tall .project-art {
  min-height: clamp(410px, 46vw, 720px);
}

.project-card__info {
  display: flex;
  padding: 13px 0 0;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.project-card__info h3 {
  margin: 0 0 3px;
  font-family: var(--display);
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.project-card__info p,
.project-card__info > span {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.project-card .project-art::after {
  position: absolute;
  z-index: 10;
  inset: 0;
  content: "";
  border: 1px solid transparent;
  transition: border-color 220ms ease;
}

.project-card:hover .project-art::after,
.project-card:focus .project-art::after {
  border-color: var(--acid);
}

.project-card:hover .project-art > * {
  animation-play-state: running;
}

.art-signal {
  background:
    linear-gradient(rgba(10, 10, 10, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.08) 1px, transparent 1px),
    #ff672f;
  background-size: 42px 42px;
}

.signal-disc {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 39%;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 25%, #fff 0 2%, transparent 3%),
    conic-gradient(#292929, #f8f8f0, #111, #d8d8d0, #1b1b1b);
  box-shadow:
    inset 0 0 35px #000,
    0 28px 55px rgba(80, 11, 0, 0.34);
  filter: contrast(1.25);
  transform: translate(-50%, -50%);
  animation: discSpin 8s linear infinite paused;
}

.signal-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76%;
  height: 27%;
  border: 2px solid var(--black);
  border-width: 2px 0;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.signal-wave--two {
  width: 91%;
  height: 48%;
  opacity: 0.45;
  transform: translate(-50%, -50%) rotate(13deg);
}

.signal-word {
  position: absolute;
  right: 4%;
  bottom: 2%;
  color: #161616;
  font-family: var(--display);
  font-size: clamp(50px, 9vw, 148px);
  font-weight: 600;
  letter-spacing: -0.11em;
  line-height: 0.8;
}

.art-bloom {
  background:
    radial-gradient(circle at 50% 50%, #ffb3ed, #be46a8 30%, #4f144c 72%, #150917);
}

.bloom-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #130f13 0 2px, var(--acid) 3px 6px);
  box-shadow: 0 0 40px var(--acid);
  transform: translate(-50%, -50%);
}

.art-bloom i {
  position: absolute;
  top: 17%;
  left: 42%;
  width: 16%;
  height: 66%;
  border-radius: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 22%),
    linear-gradient(#ff8bda, #7f1767);
  box-shadow: inset -12px 0 24px rgba(37, 0, 30, 0.4);
  transform-origin: 50% 50%;
  animation: petalWave 4s ease-in-out infinite alternate paused;
}

.art-bloom i:nth-of-type(1) { transform: rotate(0deg); }
.art-bloom i:nth-of-type(2) { transform: rotate(45deg); }
.art-bloom i:nth-of-type(3) { transform: rotate(90deg); }
.art-bloom i:nth-of-type(4) { transform: rotate(135deg); }
.art-bloom i:nth-of-type(5) { transform: rotate(180deg); }
.art-bloom i:nth-of-type(6) { transform: rotate(225deg); }
.art-bloom i:nth-of-type(7) { transform: rotate(270deg); }
.art-bloom i:nth-of-type(8) { transform: rotate(315deg); }

.art-interface {
  background:
    radial-gradient(circle at 80% 18%, #7affee, transparent 16%),
    linear-gradient(145deg, #d7d5ff, #8d7cf2 50%, #392783);
}

.ui-window {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 14px;
  background: rgba(245, 244, 255, 0.24);
  box-shadow: 0 25px 50px rgba(31, 10, 93, 0.28);
  backdrop-filter: blur(14px);
}

.ui-window--back {
  top: 18%;
  left: 14%;
  width: 56%;
  height: 48%;
  transform: rotate(-9deg);
}

.ui-window--front {
  right: 8%;
  bottom: 13%;
  display: flex;
  width: 62%;
  height: 54%;
  padding: 14%;
  flex-direction: column;
  gap: 8%;
  transform: rotate(6deg);
}

.ui-window--front span {
  display: block;
  width: 100%;
  height: 12%;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.78);
}

.ui-window--front span:nth-child(2) {
  width: 68%;
  background: var(--acid);
}

.ui-pointer {
  position: absolute;
  z-index: 3;
  top: 31%;
  right: 18%;
  display: grid;
  width: 64px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--pink);
  font-family: var(--display);
  font-size: 26px;
  box-shadow: 0 14px 28px rgba(65, 0, 51, 0.28);
  animation: pointerMove 3.2s ease-in-out infinite paused;
}

.art-type {
  display: flex;
  padding: 7%;
  flex-direction: column;
  justify-content: center;
  color: var(--black);
  background: var(--acid);
  font-family: var(--display);
  font-size: clamp(42px, 7.3vw, 120px);
  font-weight: 600;
  letter-spacing: -0.13em;
  line-height: 0.74;
}

.art-type::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  content: "";
  transform: scaleY(0.35) rotate(-13deg);
}

.art-type span {
  position: relative;
  z-index: 1;
  transition: transform 300ms ease;
}

.art-type span:nth-child(2) {
  align-self: flex-end;
  color: var(--pink);
  -webkit-text-stroke: 1px var(--black);
}

.project-card:hover .art-type span:nth-child(1) {
  transform: translateX(8%);
}

.project-card:hover .art-type span:nth-child(2) {
  transform: translateX(-22%);
}

.project-card:hover .art-type span:nth-child(3) {
  transform: translateX(5%);
}

.art-orbit {
  background:
    radial-gradient(circle at 50% 50%, #164667, #081420 55%, #050608);
}

.art-orbit::before {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  content: "";
  background-image:
    radial-gradient(circle at 18% 22%, white 0 1px, transparent 1.5px),
    radial-gradient(circle at 75% 12%, white 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 69%, white 0 1px, transparent 1.5px),
    radial-gradient(circle at 35% 78%, white 0 1px, transparent 1.5px);
  background-size: 190px 150px;
}

.orbit-planet {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, #fff 0 3%, transparent 4%),
    radial-gradient(circle at 35% 32%, #65e7ff, #3954bf 45%, #0f184b 72%);
  box-shadow:
    inset -34px -25px 55px rgba(0, 0, 30, 0.55),
    0 0 65px rgba(82, 217, 255, 0.26);
  transform: translate(-50%, -50%);
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 22%;
  border: 3px solid var(--pink);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.orbit-ring--two {
  width: 82%;
  height: 44%;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.55);
  transform: translate(-50%, -50%) rotate(17deg);
}

.orbit-moon {
  position: absolute;
  top: 31%;
  left: 17%;
  width: 8%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 24px rgba(184, 255, 55, 0.4);
  animation: moonFloat 4s ease-in-out infinite alternate paused;
}

.art-orbit > span {
  position: absolute;
  right: 3%;
  bottom: 3%;
  font-family: var(--display);
  font-size: clamp(42px, 8vw, 125px);
  font-weight: 600;
  letter-spacing: -0.12em;
  line-height: 0.8;
  opacity: 0.9;
}

.art-liquid {
  background:
    linear-gradient(160deg, #ffbd4d, #ff6b3c 42%, #dd2b8d);
}

.liquid-form {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 12px 12px 24px rgba(255, 255, 255, 0.26),
    inset -22px -20px 36px rgba(83, 0, 60, 0.34),
    0 24px 45px rgba(106, 7, 46, 0.22);
  animation: liquid 5s ease-in-out infinite alternate paused;
}

.liquid-form--one {
  top: 11%;
  left: 12%;
  width: 64%;
  height: 38%;
  border-radius: 64% 36% 52% 48% / 53% 55% 45% 47%;
  background: rgba(255, 216, 76, 0.66);
}

.liquid-form--two {
  top: 36%;
  right: 7%;
  width: 68%;
  height: 43%;
  border-radius: 40% 60% 70% 30% / 30% 44% 56% 70%;
  background: rgba(255, 75, 194, 0.65);
  animation-delay: -2s;
}

.liquid-form--three {
  bottom: 2%;
  left: 5%;
  width: 59%;
  height: 35%;
  border-radius: 70% 30% 50% 50% / 46% 35% 65% 54%;
  background: rgba(91, 226, 255, 0.58);
  animation-delay: -3s;
}

.art-liquid > span {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 5%;
  font-family: var(--display);
  font-size: clamp(36px, 5.8vw, 90px);
  font-weight: 600;
  letter-spacing: -0.1em;
  line-height: 0.78;
  text-align: right;
}

.about {
  padding-top: clamp(130px, 16vw, 250px);
}

.about-heading {
  display: grid;
  align-items: end;
  gap: 24px;
  grid-template-columns: 1fr 0.55fr;
}

.about-heading .eyebrow {
  grid-column: 1 / -1;
}

.about-intro {
  max-width: 480px;
  margin: 0 0 0.5vw;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 25px);
  line-height: 1.25;
}

.orbit-team {
  display: grid;
  margin-top: clamp(65px, 9vw, 140px);
  gap: 14px;
  grid-template-columns: repeat(5, 1fr);
}

.orbit-person {
  display: block;
  min-width: 0;
}

.orbit-portrait {
  position: relative;
  display: grid;
  aspect-ratio: 0.63;
  overflow: hidden;
  place-items: end center;
  border-radius: 999px;
  background: #1a1a1a;
  transition:
    border-radius 320ms ease,
    transform 320ms ease;
}

.orbit-person:hover .orbit-portrait {
  border-radius: 30% 70% 45% 55% / 55% 35% 65% 45%;
  transform: translateY(-8px);
}

.orbit-person h3 {
  margin: 14px 0 2px;
  font-family: var(--display);
  font-size: clamp(14px, 1.5vw, 23px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.orbit-person p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.orbit-portrait span {
  position: absolute;
  bottom: -10%;
  width: 72%;
  height: 75%;
  border-radius: 50% 50% 10% 10%;
}

.orbit-portrait span::before {
  position: absolute;
  top: -24%;
  left: 20%;
  width: 60%;
  aspect-ratio: 0.82;
  border-radius: 50% 50% 44% 48%;
  content: "";
}

.portrait-direction {
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.55), transparent 4%),
    linear-gradient(160deg, #6d51ee, #232040 62%);
}

.portrait-direction span {
  background: #ff6c37;
}

.portrait-direction span::before {
  background: #f5bc9a;
  box-shadow: inset -18px 0 #432724;
}

.portrait-design {
  background: linear-gradient(160deg, #ff71ca, #4c153a 68%);
}

.portrait-design span {
  background: #b8ff37;
}

.portrait-design span::before {
  background: #bb6d46;
  box-shadow:
    -12px -9px 0 4px #25110b,
    12px -9px 0 4px #25110b;
}

.portrait-motion {
  background: linear-gradient(160deg, #52d9ff, #173e54 68%);
}

.portrait-motion span {
  background: #3f55d3;
}

.portrait-motion span::before {
  background: #e7a771;
  box-shadow: inset 13px 11px #331b11;
}

.portrait-finish {
  background: linear-gradient(160deg, #ffca52, #75351a 68%);
}

.portrait-finish span {
  background: #ff65ce;
}

.portrait-finish span::before {
  background: #704128;
  box-shadow: 0 -12px 0 6px #15110f;
}

.portrait-join {
  place-items: center;
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(55px, 7vw, 110px);
  border: 1px solid var(--line);
}

.orbit-person--join:hover .portrait-join {
  color: var(--black);
  background: var(--acid);
}

.process {
  display: grid;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: 0.8fr 1.2fr;
}

.process-sticky {
  position: sticky;
  top: 105px;
  height: max-content;
}

.process-sticky h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 66px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.98;
  text-transform: uppercase;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: clamp(28px, 4vw, 65px) 0;
  gap: 28px;
  grid-template-columns: 45px 1fr;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--acid);
  font-family: var(--display);
  font-size: 12px;
}

.process-list h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.065em;
}

.process-list p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 22px);
}

.client-loop {
  overflow: hidden;
  padding: clamp(60px, 8vw, 120px) 0;
  color: var(--black);
  background: var(--acid);
}

.client-loop > p {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}

.client-loop__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker 18s linear infinite reverse;
}

.client-loop__track span {
  font-family: var(--display);
  font-size: clamp(55px, 9vw, 145px);
  font-weight: 500;
  letter-spacing: -0.1em;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
}

.client-loop__track i {
  margin: 0 0.3em;
  color: var(--pink);
  font-size: clamp(40px, 6vw, 100px);
  font-style: normal;
}

.contact {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 0.8fr 1.2fr;
  background:
    radial-gradient(circle at 16% 50%, rgba(255, 101, 206, 0.1), transparent 28%),
    var(--black);
}

.contact-art {
  position: sticky;
  top: 105px;
  display: grid;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 0.85;
  overflow: hidden;
  place-items: center;
  border-radius: 50% 50% 8px 8px;
  background:
    radial-gradient(circle at 50% 42%, #4e5772, #151927 60%, #080808);
  isolation: isolate;
}

.contact-art::before {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
}

.contact-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 14px 14px 28px rgba(255, 255, 255, 0.3),
    inset -18px -16px 32px rgba(0, 0, 0, 0.35),
    0 22px 45px rgba(0, 0, 0, 0.3);
  animation: contactFloat 5s ease-in-out infinite alternate;
}

.contact-shape--one {
  top: 15%;
  left: 10%;
  width: 55%;
  height: 33%;
  border-radius: 60% 40% 70% 30% / 50% 30% 70% 50%;
  background: var(--pink);
  transform: rotate(-15deg);
}

.contact-shape--two {
  right: 5%;
  bottom: 22%;
  width: 62%;
  height: 38%;
  border-radius: 40% 60% 33% 67% / 64% 38% 62% 36%;
  background: var(--blue);
  animation-delay: -2s;
}

.contact-shape--three {
  bottom: 5%;
  left: 10%;
  width: 50%;
  height: 30%;
  border-radius: 68% 32% 45% 55% / 40% 55% 45% 60%;
  background: var(--acid);
  animation-delay: -3.7s;
}

.contact-art > span {
  position: relative;
  z-index: 5;
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 105px);
  font-weight: 600;
  letter-spacing: -0.11em;
  line-height: 0.77;
  text-align: center;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.25);
}

.contact-content {
  min-width: 0;
}

.project-form {
  margin-top: clamp(55px, 7vw, 100px);
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.project-form label {
  display: block;
}

.project-form label > span,
.project-form legend {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-form input[type="text"],
.project-form input[type="email"],
.project-form textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  color: var(--paper);
  background: transparent;
  font-size: clamp(17px, 1.5vw, 24px);
  border-radius: 0;
  transition: border-color 180ms ease;
}

.project-form textarea {
  min-height: 105px;
  resize: vertical;
}

.project-form input:focus,
.project-form textarea:focus {
  border-color: var(--acid);
}

.project-form input::placeholder,
.project-form textarea::placeholder {
  color: #666661;
}

.project-form > label,
.project-form fieldset {
  margin-top: 34px;
}

.project-form fieldset {
  padding: 0;
  border: 0;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-row label {
  cursor: pointer;
}

.choice-row input {
  position: absolute;
  opacity: 0;
}

.choice-row label > span {
  display: block;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--paper);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.choice-row input:checked + span {
  color: var(--black);
  border-color: var(--acid);
  background: var(--acid);
}

.choice-row input:focus-visible + span {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

.form-submit {
  display: flex;
  width: 100%;
  margin-top: 40px;
  padding: 18px 22px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 0;
  color: var(--black);
  background: var(--acid);
  font-family: var(--display);
  font-size: 14px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.form-submit:hover {
  background: var(--pink);
  transform: translateY(-3px);
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--acid);
  font-size: 13px;
}

.site-footer {
  display: grid;
  padding: 32px var(--gutter) 24px;
  align-items: start;
  gap: 28px;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  border-top: 1px solid var(--line);
}

.brand--footer {
  font-size: clamp(19px, 2vw, 30px);
}

.brand--footer .brand__mark {
  width: 44px;
}

.site-footer p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer a:not(.brand) {
  display: block;
  width: max-content;
  margin-bottom: 3px;
  font-size: 13px;
}

.site-footer a:not(.brand):hover {
  color: var(--acid);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 35px;
}

.cookie-note {
  position: fixed;
  z-index: 120;
  right: 14px;
  bottom: 14px;
  display: flex;
  padding: 4px;
  align-items: center;
  gap: 3px;
  border-radius: 99px;
  color: var(--black);
  background: var(--acid);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
  font-size: 11px;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.cookie-note > span {
  padding: 4px 8px;
}

.cookie-note button {
  padding: 5px 8px;
  border: 0;
  border-radius: 99px;
  color: var(--paper);
  background: var(--black);
  font-size: 11px;
}

.cookie-note.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.reel-dialog {
  width: min(1100px, calc(100vw - 30px));
  padding: 0;
  overflow: visible;
  border: 0;
  color: var(--paper);
  background: transparent;
}

.reel-dialog::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.reel-close {
  position: absolute;
  z-index: 5;
  top: -48px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  background: transparent;
  font-size: 26px;
  line-height: 1;
}

.reel-screen {
  padding: 8px;
  background: #111;
}

.reel-visual {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, #58408a, #141421 65%);
}

.reel-blob {
  position: absolute;
  width: 60%;
  height: 45%;
  border-radius: 55% 45% 60% 40% / 45% 65% 35% 55%;
  box-shadow:
    inset 20px 20px 40px rgba(255, 255, 255, 0.32),
    inset -30px -25px 50px rgba(0, 0, 0, 0.35);
  animation: reelBlob 4.5s ease-in-out infinite alternate;
}

.reel-blob--one {
  top: -5%;
  left: -10%;
  background: var(--pink);
}

.reel-blob--two {
  right: -8%;
  bottom: -5%;
  background: var(--blue);
  animation-delay: -1.6s;
}

.reel-blob--three {
  right: 22%;
  bottom: -25%;
  background: var(--acid);
  animation-delay: -3s;
}

.reel-word {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(42px, 9vw, 145px);
  font-weight: 600;
  letter-spacing: -0.13em;
  line-height: 0.77;
  text-align: center;
  mix-blend-mode: difference;
}

.reel-screen > p {
  margin: 0;
  padding: 12px 5px 6px;
  color: var(--muted);
  font-size: 12px;
}

.reel-progress {
  height: 3px;
  overflow: hidden;
  background: #333;
}

.reel-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--acid);
}

.reel-dialog[open] .reel-progress span {
  animation: progress 12s linear infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes breathe {
  to {
    opacity: 0.52;
    transform: scale(1.12);
  }
}

@keyframes drift {
  0%,
  100% {
    translate: 0 0;
    rotate: -2deg;
  }
  50% {
    translate: 0 -2.5%;
    rotate: 2deg;
  }
}

@keyframes morph {
  0% {
    border-radius: 48% 52% 44% 56% / 58% 39% 61% 42%;
  }
  100% {
    border-radius: 57% 43% 59% 41% / 42% 55% 45% 58%;
  }
}

@keyframes loopSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes starPulse {
  50% {
    opacity: 0.7;
    scale: 0.82;
    rotate: 25deg;
  }
}

@keyframes artZoom {
  to {
    transform: scale(1.06) rotate(1deg);
  }
}

@keyframes discSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes petalWave {
  to {
    filter: hue-rotate(18deg) brightness(1.12);
  }
}

@keyframes pointerMove {
  50% {
    transform: translate(-55%, 80%);
  }
}

@keyframes moonFloat {
  to {
    transform: translate(43vw, 9vw);
  }
}

@keyframes liquid {
  to {
    transform: translate(5%, -6%) rotate(7deg);
    border-radius: 33% 67% 54% 46% / 60% 35% 65% 40%;
  }
}

@keyframes contactFloat {
  to {
    transform: translate(4%, -5%) rotate(5deg);
  }
}

@keyframes reelBlob {
  to {
    transform: translate(8%, -5%) rotate(15deg) scale(1.1);
    border-radius: 31% 69% 45% 55% / 57% 35% 65% 43%;
  }
}

@keyframes progress {
  to {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    right: 10px;
    left: 10px;
    display: none;
    padding: 30px;
    flex-direction: column;
    gap: 18px;
    border-radius: 3px;
    background: rgba(10, 10, 10, 0.96);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    font-family: var(--display);
    font-size: 25px;
    text-transform: uppercase;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 40px;
    height: 34px;
    padding: 9px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: var(--black);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--paper);
    transition: transform 180ms ease;
  }

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

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

  .kinetic-object--flower {
    top: 15%;
    left: 28%;
    width: 54vw;
  }

  .kinetic-object--orb {
    right: 3%;
    bottom: 15%;
  }

  .kinetic-object--chrome {
    left: 5%;
  }

  .kinetic-object--star {
    top: 8%;
    right: 8%;
  }

  .stage-label--two {
    right: 20%;
  }

  .project-grid {
    gap: 50px 14px;
  }

  .project-card,
  .project-card--tall {
    grid-column: span 5;
  }

  .project-card--wide {
    grid-column: span 7;
  }

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

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

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

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

  .about-heading {
    grid-template-columns: 1fr;
  }

  .orbit-team {
    overflow-x: auto;
    padding-bottom: 20px;
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    scroll-snap-type: x mandatory;
  }

  .orbit-person {
    scroll-snap-align: start;
  }

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

  .process-sticky,
  .contact-art {
    position: relative;
    top: auto;
  }

  .process-sticky h2 {
    max-width: 15ch;
  }

  .contact-art {
    max-width: 100%;
    aspect-ratio: 1.25;
    border-radius: 50%;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .brand--footer {
    grid-column: 1 / -1;
    margin-bottom: 28px;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 58px;
  }

  .brand {
    gap: 7px;
    font-size: 12px;
  }

  .brand__mark {
    width: 27px;
  }

  .hero {
    padding: 58px 6px 0;
  }

  .hero-stage {
    min-height: 72svh;
  }

  .stage-grid {
    background-size: 40px 40px;
  }

  .kinetic-object--flower {
    top: 17%;
    left: 15%;
    width: 75vw;
  }

  .kinetic-object--orb {
    right: 0;
    bottom: 10%;
    width: 34vw;
  }

  .kinetic-object--chrome {
    bottom: 5%;
    left: -4%;
    width: 35vw;
  }

  .kinetic-object--cube {
    bottom: 11%;
    left: 38%;
    width: 24vw;
    height: 24vw;
  }

  .kinetic-object--loop {
    top: 24%;
    left: -8%;
    width: 31vw;
  }

  .kinetic-object--star {
    top: 9%;
    right: 4%;
    font-size: 25vw;
  }

  .stage-label--one {
    top: 12%;
    left: 6%;
  }

  .stage-label--two {
    right: 9%;
    bottom: 30%;
  }

  .stage-ticker div {
    padding: 7px 0;
  }

  .hero-title-wrap {
    padding-right: 10px;
    padding-left: 10px;
  }

  .display-title {
    max-width: 100%;
    font-size: clamp(44px, 14vw, 76px);
  }

  .scroll-cue {
    position: relative;
    right: auto;
    bottom: auto;
    width: 105px;
    margin-top: 45px;
  }

  .section-pad {
    padding-right: 12px;
    padding-left: 12px;
  }

  .intro-copy {
    font-size: clamp(23px, 7vw, 35px);
  }

  .showreel-card {
    min-height: 78vh;
  }

  .showreel-card__art i {
    top: 18%;
    left: 41%;
    width: 18%;
    height: 64%;
  }

  .showreel-card__art::before,
  .showreel-card__art::after {
    top: 15%;
    width: 18%;
    height: 70%;
  }

  .section-title {
    font-size: clamp(33px, 10.5vw, 55px);
  }

  .project-grid {
    display: block;
  }

  .project-card,
  .project-card:nth-child(3),
  .project-card:nth-child(4),
  .project-card:nth-child(5),
  .project-card:nth-child(6) {
    width: 100%;
    margin: 0 0 45px;
  }

  .project-art,
  .project-card--tall .project-art {
    min-height: 112vw;
  }

  .project-card--wide .project-art {
    min-height: 80vw;
  }

  .signal-word,
  .art-orbit > span {
    font-size: 17vw;
  }

  .about-heading {
    display: block;
  }

  .about-intro {
    margin-top: 30px;
  }

  .orbit-team {
    grid-template-columns: repeat(5, minmax(65vw, 1fr));
  }

  .process {
    gap: 65px;
  }

  .process-list li {
    grid-template-columns: 35px 1fr;
  }

  .contact {
    min-height: 0;
  }

  .contact-art {
    aspect-ratio: 0.95;
  }

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

  .form-grid label + label {
    margin-top: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
