:root {
  --ink: #0b0b0d;
  --ink-soft: #17171b;
  --paper: #f3f0e8;
  --muted: #aaa9a4;
  --acid: #c8ff3d;
  --line: rgba(243, 240, 232, 0.18);
  --background: var(--ink);
  --foreground: var(--paper);
  --card: var(--ink-soft);
  --card-foreground: var(--paper);
  --popover: var(--ink-soft);
  --popover-foreground: var(--paper);
  --primary: var(--acid);
  --primary-foreground: var(--ink);
  --secondary: #242429;
  --secondary-foreground: var(--paper);
  --muted-foreground: var(--muted);
  --accent: var(--acid);
  --accent-foreground: var(--ink);
  --destructive: #ff5d56;
  --border: var(--line);
  --input: var(--line);
  --ring: var(--acid);
  --radius: 1rem;
  --font-display: Arial, Helvetica, sans-serif;
  --font-mono: "Courier New", Courier, monospace;
  --scroll-progress: 0;
  --hero-copy-y: 0px;
  --hero-title-x: 0px;
  --hero-accent-x: 0px;
  --hero-reel-y: 0px;
  --hero-reel-rotate: 0deg;
  --hero-word-y: 0px;
  --hero-word-rotate: -90deg;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display), Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

@media (hover: hover) and (pointer: fine) {
  body.has-motion-cursor,
  body.has-motion-cursor * { cursor: none !important; }

  .motion-cursor {
    --cursor-size: 34px;
    --cursor-anchor: -18%;
    --cursor-scale: 1;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    pointer-events: none;
    opacity: 0;
    background: url('./assets/ui/cursor.png') center / contain no-repeat;
    filter: invert(1) drop-shadow(0 2px 8px rgba(0,0,0,.22));
    mix-blend-mode: difference;
    transform: translate3d(var(--cursor-x, -100px), var(--cursor-y, -100px), 0)
      translate(var(--cursor-anchor), var(--cursor-anchor)) scale(var(--cursor-scale));
    transition: opacity .16s ease, width .22s ease, height .22s ease;
    will-change: transform;
  }

  .motion-cursor.is-visible:not(.cursor-ghost) { opacity: 1; }
  .motion-cursor.is-camera {
    --cursor-size: 48px;
    --cursor-anchor: -50%;
    background-image: url('./assets/ui/video-camera.png');
  }
  .motion-cursor.is-pressed { --cursor-scale: .8; }

  .cursor-ghost {
    z-index: 9999;
    opacity: 0;
    transform: translate3d(var(--cursor-x, -100px), var(--cursor-y, -100px), 0)
      translate(var(--cursor-anchor), var(--cursor-anchor)) scale(var(--ghost-scale, .82));
  }
  .cursor-ghost.is-visible { opacity: var(--ghost-opacity, .12); }
}

button,
input,
textarea { font: inherit; }

button { color: inherit; }

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

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

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 3px;
  background: var(--acid);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 18px;
  right: 18px;
  height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 10px 0 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(11,11,13,.82);
  box-shadow: 0 14px 45px rgba(0,0,0,.12);
  backdrop-filter: blur(18px);
}

.wordmark,
.footer-wordmark {
  width: max-content;
  font-size: 1.1rem;
  font-weight: 760;
  letter-spacing: -.04em;
}

.wordmark span,
.footer-wordmark span,
.mobile-sheet-title span { color: var(--acid); }

.desktop-nav {
  display: flex;
  gap: 30px;
  font: 500 .875rem/1 var(--font-mono), monospace;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.desktop-nav a { color: #cac9c4; transition: color .25s ease; }
.desktop-nav a:hover { color: var(--paper); }

.contact-pill {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 11px;
  background: var(--acid);
  color: var(--ink);
  font: 650 .875rem/1 var(--font-mono), monospace;
  transition: transform .25s ease, background .25s ease;
}

.contact-pill:hover { transform: translateY(-2px); background: #d8ff76; }
.contact-pill svg,
.scroll-cue svg { width: 17px; height: 17px; }

.menu-trigger { display: none !important; }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, .8fr);
  gap: 12px;
  padding: 84px 18px 18px;
}

.hero-copy,
.reel-card { border-radius: 24px !important; }

.hero-copy {
  position: relative;
  min-height: calc(100svh - 102px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(24px, 3vw, 52px);
  color: var(--ink);
  background: var(--paper);
  transform: translate3d(0, var(--hero-copy-y), 0);
  transform-origin: 0 0;
  will-change: transform;
}

.hero-copy > :not(.orbital-scene) { position: relative; z-index: 2; }

.orbital-scene {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 46%, rgba(200,255,61,.1), transparent 34%),
    linear-gradient(115deg, transparent 55%, rgba(11,11,13,.025));
}

.planet-core {
  position: absolute;
  width: clamp(340px, 48vw, 720px);
  aspect-ratio: 1;
  top: 8%;
  right: -18%;
  border-radius: 50%;
  opacity: .42;
  background:
    radial-gradient(circle at 31% 27%, rgba(255,255,255,.95) 0 3%, rgba(200,255,61,.62) 8%, transparent 23%),
    radial-gradient(circle at 62% 70%, rgba(11,11,13,.52), transparent 42%),
    conic-gradient(from 35deg, #dedbd1, #77766f, #ece9df, #a6a49d, #c8ff3d, #77766f, #dedbd1);
  box-shadow:
    inset 34px 18px 70px rgba(255,255,255,.38),
    inset -55px -34px 90px rgba(11,11,13,.55),
    0 55px 110px rgba(11,11,13,.12);
  animation: planet-drift 16s ease-in-out infinite alternate, planet-turn 28s linear infinite;
}

.planet-core::after {
  content: '';
  position: absolute;
  inset: 7%;
  border-radius: inherit;
  border: 1px solid rgba(243,240,232,.36);
  box-shadow: inset 0 0 45px rgba(243,240,232,.2);
}

.planet-ring {
  position: absolute;
  width: clamp(470px, 65vw, 980px);
  aspect-ratio: 1;
  top: -2%;
  right: -30%;
  border: 1px solid rgba(11,11,13,.2);
  border-radius: 50%;
  transform: rotate(-13deg) scaleY(.42);
  transform-origin: center;
}

.ring-one { animation: orbit-breathe 11s ease-in-out infinite alternate; }
.ring-two {
  width: clamp(390px, 55vw, 840px);
  top: 4%;
  right: -24%;
  border-color: rgba(200,255,61,.75);
  transform: rotate(18deg) scaleY(.48);
  animation: orbit-breathe-alt 14s ease-in-out infinite alternate;
}

.orbit-satellite {
  position: absolute;
  width: 13px;
  height: 13px;
  top: 27%;
  right: 13%;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 8px rgba(200,255,61,.16), 0 0 28px rgba(200,255,61,.55);
  animation: satellite-float 9s ease-in-out infinite alternate;
}

.hero-kicker,
.hero-bottom,
.section-heading,
.eyebrow,
.project-meta,
.reel-index,
.reel-caption,
.project-number,
.project-format,
.about-note,
.capability-row > span,
.socials,
.form-row label,
.form-status,
.site-footer,
.modal-details span {
  font-family: var(--font-mono), monospace;
}

.hero-kicker,
.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: .8rem;
  font-weight: 540;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.availability { display: flex; align-items: center; gap: 8px; }
.availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #48bf64;
  box-shadow: 0 0 0 4px rgba(72,191,100,.13);
  animation: status-pulse 2s ease-in-out infinite;
}

.hero h1 {
  margin: auto 0;
  max-width: 11ch;
  font-size: clamp(4.4rem, 9.2vw, 9.2rem);
  line-height: .83;
  letter-spacing: -.085em;
  font-weight: 690;
  transform: translate3d(var(--hero-title-x), 0, 0);
  will-change: transform;
}

.hero h1 span {
  display: block;
  color: #85837c;
  font-style: italic;
  font-weight: 480;
  transform: translate3d(var(--hero-accent-x), 0, 0);
}

.hero-bottom { align-items: flex-end; }
.hero-bottom p {
  max-width: 440px;
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(.95rem, 1.35vw, 1.25rem);
  font-weight: 520;
  line-height: 1.2;
  letter-spacing: -.025em;
  text-transform: none;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.reel-card {
  position: relative !important;
  min-height: calc(100svh - 102px) !important;
  height: auto !important;
  width: 100%;
  display: block !important;
  overflow: hidden;
  isolation: isolate;
  padding: 0 !important;
  border: 0 !important;
  color: var(--ink) !important;
  background:
    radial-gradient(circle at 72% 25%, rgba(243,240,232,.9) 0 4%, transparent 30%),
    linear-gradient(145deg, #d9ff77 0%, var(--acid) 42%, #9fd419 100%) !important;
  cursor: pointer;
  transform: translate3d(0, var(--hero-reel-y), 0) rotate(var(--hero-reel-rotate));
  transform-origin: 50% 20%;
  will-change: transform;
}

.reel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,13,.22));
}

.reel-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(11,11,13,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,11,13,.28) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: scale(1.1) rotate(-6deg);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}

.reel-card:hover .reel-grid { transform: scale(1.18) rotate(-10deg); }

.reel-index,
.reel-caption {
  position: absolute;
  font-size: .8rem;
  font-weight: 620;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.reel-index { top: 26px; left: 28px; }
.reel-caption { right: 28px; bottom: 28px; }

.kinetic-word {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  display: flex;
  justify-content: space-around;
  transform: translate(-50%, calc(-50% + var(--hero-word-y))) rotate(var(--hero-word-rotate));
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 1;
  font-weight: 760;
  letter-spacing: -.08em;
}

.kinetic-word > span { animation: breathe 2.8s ease-in-out infinite alternate; }
.kinetic-word > span:nth-child(2) { animation-delay: -.8s; }
.kinetic-word > span:nth-child(3) { animation-delay: -1.6s; }
.kinetic-word > span:nth-child(4) { animation-delay: -2.4s; }

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 15px 45px rgba(0,0,0,.22);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.play-button svg { width: 25px; }
.reel-card:hover .play-button { transform: translate(-50%,-50%) scale(1.13); }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 18px 0;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 610;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.marquee div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 22px;
  animation: marquee 24s linear infinite;
}

.marquee i {
  width: 8px;
  height: 8px;
  margin: 0 20px;
  border-radius: 50%;
  background: var(--acid);
}

.work-section {
  padding: clamp(90px, 12vw, 180px) 18px;
  isolation: isolate;
}

.section-heading {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(140px, .55fr) minmax(0, 2fr) minmax(220px, .7fr);
  gap: clamp(24px, 3vw, 52px);
  align-items: start;
  margin-bottom: clamp(72px, 9vw, 128px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.eyebrow {
  font-size: .78rem;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 610;
  line-height: .88;
  letter-spacing: -.075em;
}

.section-heading h2 { font-family: var(--font-display), Arial, sans-serif; }
.section-heading h2 span { display: block; white-space: nowrap; }
.section-heading h2 em { color: var(--acid); font-style: normal; font-weight: 400; }

.section-intro {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
}

.work-count {
  color: rgba(243,240,232,.12);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 700;
  line-height: .72;
  letter-spacing: -.08em;
}

.section-intro p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display), sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.project-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 7vw, 110px) 12px;
  background: var(--ink);
  box-shadow: 0 -48px 42px 18px var(--ink);
}

.project { min-width: 0; }

.project-card {
  position: relative !important;
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 10;
  display: block !important;
  overflow: hidden;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 22px !important;
  color: var(--paper) !important;
  background: #151519 !important;
  cursor: pointer;
  transform: translate3d(0, var(--depth-y, 0px), 0) rotate(var(--depth-rotate, 0deg));
  transform-origin: 50% 50%;
  will-change: transform;
}

.project:nth-child(3n + 2) .project-card { aspect-ratio: 16 / 12; }
.project:nth-child(4n + 3) .project-card { aspect-ratio: 16 / 9; }

.project-poster,
.project-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-poster {
  object-fit: cover;
  transform: scale(1.015);
  filter: saturate(.88) contrast(1.04);
  transition: transform 1s cubic-bezier(.16,1,.3,1), filter .7s ease;
}

.project-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.36), transparent 34%, transparent 64%, rgba(0,0,0,.48)),
    radial-gradient(circle at 50% 45%, transparent 20%, rgba(0,0,0,.14) 100%);
  transition: background .7s ease;
}

.project-card:hover .project-poster { transform: scale(1.075); filter: saturate(1.06) contrast(1.02); }

.project-number,
.project-format {
  position: absolute;
  z-index: 3;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .07em;
}

.project-number { top: 20px; left: 22px; }
.project-format { right: 22px; bottom: 20px; }

.project-word {
  position: absolute;
  z-index: 2;
  top: calc(50% + var(--word-drift, 0px));
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 760;
  line-height: .8;
  letter-spacing: -.09em;
  mix-blend-mode: difference;
  color: var(--paper);
  transition: letter-spacing .7s cubic-bezier(.16,1,.3,1);
}

.project-card:hover .project-word { letter-spacing: .02em; }

.project-play {
  position: absolute;
  z-index: 4;
  right: 18px;
  top: 18px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  transform: scale(0);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}

.project-play svg { width: 17px; }
.project-card:hover .project-play { transform: scale(1); }

.project-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 18px 3px 0;
}

.project-meta > div:last-child { text-align: right; }
.project-meta h3 { margin: 0 0 5px; font-family: var(--font-display), sans-serif; font-size: 1.25rem; letter-spacing: -.035em; }
.project-meta p { margin: 0 0 5px; color: var(--muted); font-size: .78rem; line-height: 1.35; text-transform: uppercase; letter-spacing: .055em; }

.about-section {
  padding: clamp(90px, 12vw, 180px) 18px;
  border-radius: 34px 34px 0 0;
  color: var(--ink);
  background: var(--paper);
}

.about-statement {
  display: grid;
  grid-template-columns: minmax(150px, .48fr) minmax(0, 2.7fr);
  gap: clamp(28px, 4vw, 72px);
  padding-bottom: clamp(100px, 14vw, 210px);
}

.about-statement > p {
  max-width: 1320px;
  margin: 0;
  font-size: clamp(2.8rem, 5.7vw, 6.4rem);
  font-weight: 540;
  line-height: .96;
  letter-spacing: -.065em;
  color: #77766f;
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    var(--ink) var(--reveal-stop, 12%),
    #77766f var(--reveal-stop, 12%),
    #77766f 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-statement strong {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: var(--ink);
  font-weight: 720;
  -webkit-text-fill-color: var(--ink);
}

.about-statement strong::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: -.04em;
  right: -.04em;
  bottom: .03em;
  height: .16em;
  border-radius: 999px;
  background: var(--acid);
  transform: scaleX(var(--section-progress, 0));
  transform-origin: left;
}

.about-statement em { color: inherit; font-weight: 420; }

.about-details {
  display: grid;
  grid-template-columns: .85fr 2.2fr;
  gap: 32px;
}

.about-note span { display: block; margin-bottom: 14px; font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.about-note p { margin: 0; font-family: var(--font-display), sans-serif; font-size: 1.08rem; line-height: 1.45; }

.capability-list { border-top: 1px solid rgba(11,11,13,.25); }
.capability-row {
  display: grid;
  grid-template-columns: 40px 1fr 1fr 24px;
  gap: 20px;
  align-items: center;
  min-height: 106px;
  border-bottom: 1px solid rgba(11,11,13,.25);
}

.capability-row > span { font-size: .78rem; }
.capability-row h3 { margin: 0; font-size: clamp(1.5rem, 2.6vw, 2.6rem); letter-spacing: -.055em; }
.capability-row p { margin: 0; color: #62615c; font-size: .95rem; line-height: 1.4; }
.capability-row svg { width: 20px; }

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
  color: var(--ink);
  background: var(--acid);
}

.contact-copy,
.contact-form {
  min-height: 670px;
  border-radius: 24px;
  padding: clamp(26px, 4vw, 60px);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  background: var(--acid);
}

.contact-copy h2 { margin: auto 0 32px; }
.contact-copy > p { max-width: 440px; margin: 0 0 44px; font-size: 1.1rem; line-height: 1.45; letter-spacing: -.025em; }

.socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.socials > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 70px;
  padding: 12px 16px;
  border: 1px solid rgba(11,11,13,.26);
  border-radius: 13px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.socials > a > span { min-width: 0; display: flex; flex: 1; flex-direction: column; align-items: flex-start; gap: 6px; }
.socials > a > b { font-family: var(--font-display), sans-serif; font-size: 1rem; font-weight: 400; }
.socials > a:hover { color: var(--acid); background: var(--ink); transform: translateY(-3px); }
.socials > a:hover small { color: rgba(200,255,61,.7); }
.socials strong { font-size: .875rem; font-weight: 650; line-height: 1; text-transform: uppercase; letter-spacing: .035em; }
.socials small { color: rgba(11,11,13,.62); font-family: var(--font-display), sans-serif; font-size: .875rem; line-height: 1.15; text-transform: none; letter-spacing: 0; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--paper);
  background: var(--ink);
}

.form-row { display: grid; gap: 9px; }
.form-row label { font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.contact-form [data-slot='input'],
.contact-form [data-slot='textarea'] {
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 0;
  color: var(--paper);
  background: transparent;
  box-shadow: none;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-form [data-slot='textarea'] { min-height: 100px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #69696f; }

.submit-button {
  position: relative;
  min-height: 58px !important;
  margin-top: auto;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 20px !important;
  border-radius: 13px !important;
  color: var(--ink) !important;
  background: var(--acid) !important;
  font: 650 .875rem/1.2 var(--font-mono), monospace !important;
  text-transform: uppercase;
}

.form-status { min-height: 1.2em; margin: 0; color: #8b8b91; font-family: var(--font-display), sans-serif; font-size: .8rem; line-height: 1.4; text-transform: none; }

.site-footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 38px 22px 24px;
  color: #9d9c98;
  font-size: .75rem;
  text-transform: uppercase;
}

.site-footer p { margin: 0; }
.site-footer > a:last-child { display: flex; align-items: center; gap: 8px; color: var(--paper); }
.site-footer svg { width: 15px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1);
}

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

.contact-section .contact-copy.is-visible {
  transform: translate3d(0, var(--contact-left-y, 0px), 0);
}

.contact-section .contact-form.is-visible {
  transform: translate3d(0, var(--contact-right-y, 0px), 0);
}

[data-slot='dialog-overlay'] { background: rgba(0,0,0,.72) !important; backdrop-filter: blur(12px); }

.project-modal {
  width: calc(100vw - 28px) !important;
  max-width: none !important;
  height: calc(100dvh - 28px);
  max-height: none;
  grid-template-columns: minmax(0, 1.8fr) minmax(290px, .7fr) !important;
  grid-template-rows: auto 1fr !important;
  gap: 12px !important;
  padding: 12px !important;
  border: 1px solid var(--line) !important;
  border-radius: 24px !important;
  color: var(--paper) !important;
  background: var(--ink) !important;
}

.project-modal [data-slot='button'] {
  z-index: 5;
  top: 20px !important;
  right: 20px !important;
  border: 1px solid var(--line);
  color: var(--paper);
  background: rgba(11,11,13,.55);
}

.modal-header {
  grid-column: 1 / -1;
  display: flex !important;
  flex-direction: row !important;
  align-items: baseline;
  gap: 18px !important;
  padding: 7px 54px 8px 8px;
}

.modal-header [data-slot='dialog-title'] { font-size: 1.15rem; font-weight: 620; }
.modal-header [data-slot='dialog-description'] { font-family: var(--font-mono), monospace; font-size: .75rem; line-height: 1.35; text-transform: uppercase; }

.modal-video {
  position: relative;
  min-height: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--ink);
  background: #17171a;
}

.modal-video iframe { width: 100%; height: 100%; min-height: 100%; border: 0; background: #000; }
.modal-video [hidden],
.modal-source[hidden] { display: none !important; }
.modal-placeholder { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; background: var(--acid); }
.modal-placeholder::before,
.modal-placeholder::after { content: ''; position: absolute; border: 1px solid rgba(11,11,13,.42); border-radius: 50%; animation: modal-orbit 8s linear infinite; }
.modal-placeholder::before { width: 72%; aspect-ratio: 1; }
.modal-placeholder::after { width: 92%; height: 25%; animation-direction: reverse; }
.modal-placeholder strong { font-size: clamp(4rem, 10vw, 10rem); letter-spacing: -.09em; mix-blend-mode: difference; color: var(--paper); }
.modal-video-label { position: absolute; top: 18px; left: 20px; font: 620 .75rem/1 var(--font-mono), monospace; }

.modal-play {
  position: absolute;
  z-index: 3;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 15px 45px rgba(0,0,0,.22);
}

.modal-play svg { width: 24px; }

.modal-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 20px 16px;
}

.modal-details span { color: #929298; font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.modal-details p { margin: 7px 0 0; font-size: 1rem; }
.modal-details .modal-description { margin-top: 0; color: var(--muted); line-height: 1.45; }
.modal-source { width: fit-content; margin-top: auto; color: var(--paper); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; border-bottom: 1px solid var(--line); padding-bottom: 4px; }

.mobile-sheet {
  width: calc(100% - 20px) !important;
  height: calc(100dvh - 20px) !important;
  margin: 10px;
  padding: 20px !important;
  border: 1px solid var(--line) !important;
  border-radius: 20px;
  color: var(--paper) !important;
  background: var(--ink) !important;
}

.mobile-sheet-title { font-size: 1.3rem !important; font-weight: 760 !important; letter-spacing: -.05em; }
.mobile-nav { display: flex; flex: 1; flex-direction: column; justify-content: center; }
.mobile-nav-link {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(2rem, 11vw, 4rem);
  font-weight: 600;
  letter-spacing: -.055em;
}

.mobile-nav-link span { font: 500 .75rem/1 var(--font-mono), monospace; letter-spacing: .07em; }
.mobile-nav-link svg { width: 23px; }

@keyframes breathe {
  from { transform: translateY(-8px); font-weight: 420; }
  to { transform: translateY(8px); font-weight: 760; }
}

@keyframes planet-turn {
  to { rotate: 1turn; }
}

@keyframes planet-drift {
  from { translate: -1.5% -1%; scale: .98; }
  to { translate: 2.5% 2%; scale: 1.035; }
}

@keyframes orbit-breathe {
  from { transform: rotate(-17deg) scaleY(.38) scale(.97); }
  to { transform: rotate(-8deg) scaleY(.46) scale(1.03); }
}

@keyframes orbit-breathe-alt {
  from { transform: rotate(23deg) scaleY(.44) scale(1.02); }
  to { transform: rotate(13deg) scaleY(.52) scale(.96); }
}

@keyframes satellite-float {
  from { translate: -38px -26px; }
  to { translate: 46px 34px; }
}

@keyframes status-pulse {
  50% { box-shadow: 0 0 0 8px rgba(72,191,100,0); }
}

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes modal-orbit { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav,
  .desktop-contact { display: none; }
  .menu-trigger {
    display: inline-flex !important;
    justify-self: end;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid var(--line) !important;
    color: var(--paper) !important;
    background: transparent !important;
  }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 72svh; }
  .reel-card { min-height: 66svh !important; }
  .section-heading { grid-template-columns: 140px 1fr; }
  .section-heading h2,
  .section-intro { grid-column: 2; }
  .section-intro { min-height: 0; flex-direction: row; align-items: end; }
  .work-count { font-size: 5rem; }
  .about-statement { grid-template-columns: 1fr; }
  .about-details { grid-template-columns: 1fr 2.2fr; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-copy { min-height: 580px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .project-modal { grid-template-columns: 1fr !important; grid-template-rows: auto minmax(320px,1fr) auto !important; overflow-y: auto; }
  .modal-details { display: grid; grid-template-columns: 1fr 1fr; }
  .modal-description { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .site-header { top: 10px; left: 10px; right: 10px; height: 56px; padding-left: 15px; border-radius: 14px; }
  .hero { gap: 9px; padding: 76px 10px 10px; }
  .hero-copy,
  .reel-card { border-radius: 18px !important; }
  .hero-copy { min-height: 650px; padding: 22px 18px; }
  .hero-kicker { flex-direction: column; gap: 9px; }
  .hero h1 { font-size: clamp(4.1rem, 19vw, 6rem); }
  .planet-core { width: 520px; top: 19%; right: -62%; opacity: .34; }
  .planet-ring { top: 14%; right: -78%; }
  .ring-two { top: 18%; right: -70%; }
  .orbit-satellite { top: 30%; right: 11%; }
  .hero-bottom { align-items: flex-start; flex-direction: column; }
  .hero-bottom p { max-width: 300px; }
  .reel-card { min-height: 600px !important; }
  .kinetic-word { font-size: 5rem; }
  .reel-caption { right: 18px; bottom: 20px; }
  .reel-index { left: 18px; top: 20px; }
  .work-section { padding-inline: 10px; }
  .section-heading { position: static; display: flex; flex-direction: column; }
  .section-heading h2 span { white-space: normal; }
  .section-heading h2 { font-size: clamp(3.4rem, 17vw, 5.4rem); }
  .section-intro { width: 100%; align-items: flex-end; gap: 22px; }
  .section-intro p { max-width: 280px; }
  .project-grid { grid-template-columns: 1fr; gap: 58px; }
  .project-card,
  .project:nth-child(n) .project-card { aspect-ratio: 4 / 3; border-radius: 17px !important; }
  .project-word { font-size: 22vw; }
  .project-play { transform: scale(1); }
  .about-section { padding-inline: 16px; border-radius: 24px 24px 0 0; }
  .about-statement > p { font-size: clamp(2.9rem, 13vw, 4.6rem); }
  .about-details { grid-template-columns: 1fr; }
  .capability-row { grid-template-columns: 28px 1fr 20px; min-height: 90px; }
  .capability-row p { display: none; }
  .contact-section { padding: 10px; }
  .contact-copy,
  .contact-form { min-height: 610px; padding: 24px 18px; border-radius: 18px; }
  .contact-copy h2 { font-size: 16vw; }
  .socials { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; align-items: start; gap: 15px; }
  .project-modal { width: calc(100vw - 16px) !important; height: calc(100dvh - 16px); padding: 8px !important; border-radius: 18px !important; }
  .modal-video { min-height: 330px; }
  .modal-details { padding: 12px 8px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.has-motion-cursor,
  body.has-motion-cursor * { cursor: auto !important; }
  .motion-cursor { display: none !important; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-copy,
  .hero h1,
  .hero h1 span,
  .reel-card,
  .project-card,
  .contact-section .contact-copy,
  .contact-section .contact-form { transform: none !important; }
  .kinetic-word { transform: translate(-50%,-50%) rotate(-90deg); }
  .about-statement > p {
    color: var(--ink);
    background: none;
    -webkit-text-fill-color: currentColor;
  }
  .about-statement em { color: #77766f; }
  .about-statement strong::after { transform: scaleX(1); }
  .planet-core,
  .planet-ring,
  .orbit-satellite { animation: none !important; }
}



/* Static-site controls */
button { border: 0; padding: 0; }
.menu-trigger {
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
}
.menu-trigger span,
.dialog-close span {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
}
.menu-trigger span { position: relative; }
.menu-trigger span::before,
.menu-trigger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.menu-trigger span::before { top: -6px; }
.menu-trigger span::after { top: 6px; }

.project-card,
.reel-card,
.submit-button { appearance: none; }

.play-button::before,
.project-play::before,
.modal-play::before {
  content: '';
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.project-play::before { border-top-width: 5px; border-bottom-width: 5px; border-left-width: 8px; }
.modal-play::before { border-top-width: 9px; border-bottom-width: 9px; border-left-width: 14px; }

.static-dialog {
  margin: auto;
}
.static-dialog::backdrop {
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
}
.project-modal[open] { display: grid; }
.project-modal:not([open]),
.mobile-sheet:not([open]) { display: none; }
.dialog-close {
  position: absolute;
  z-index: 8;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(11,11,13,.72);
  cursor: pointer;
}
.dialog-close span { position: absolute; transform: rotate(45deg); }
.dialog-close span:last-child { transform: rotate(-45deg); }

.mobile-sheet[open] {
  position: fixed;
  inset: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
}
.mobile-sheet::backdrop { background: rgba(0,0,0,.76); }
.mobile-sheet .dialog-close { top: 16px; right: 16px; }
.mobile-sheet-title { margin: 0; }

.arrow { font-family: var(--font-mono); font-size: 1.1em; }
.contact-pill .arrow,
.scroll-cue .arrow { display: inline-block; }

.form-row input,
.form-row textarea { width: 100%; }
.form-row textarea { font: inherit; }
.submit-button { cursor: pointer; }
.submit-button .arrow { position: absolute; right: 20px; margin-left: 0; }

.no-script {
  margin: 90px 18px 0;
  padding: 18px;
  border: 1px solid var(--line);
  color: var(--paper);
  font: 14px/1.5 var(--font-mono);
}

@media (max-width: 900px) {
  .project-modal[open] { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  .project-modal::backdrop,
  .mobile-sheet::backdrop { backdrop-filter: none; }
}
