:root {
  --ink: #08080a;
  --paper: #f3eedf;
  --signal: #ff4a18;
  --blue: #3145ff;
  --flash: #efff45;
  --white: #fffdf7;
  --line-dark: rgba(8, 8, 10, 0.2);
  --line-light: rgba(255, 253, 247, 0.24);
  --header-height: 84px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Anybody", "Arial Narrow", Impact, sans-serif;
  --font-body: "Manrope", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  border: 0;
}

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

:focus-visible {
  outline: 3px solid var(--flash);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--flash);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.shell {
  width: min(calc(100% - 64px), 1500px);
  margin-inline: auto;
}

.page-grain {
  position: fixed;
  z-index: 999;
  inset: 0;
  opacity: 0.055;
  pointer-events: none;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 90;
  top: calc(var(--header-height) + 12px);
  right: 14px;
  bottom: 18px;
  width: 18px;
  pointer-events: none;
}

.scroll-progress__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.24);
  mix-blend-mode: difference;
}

.scroll-progress__star {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  transform: translateY(var(--scroll-pos, 0));
  fill: var(--flash);
  filter: drop-shadow(0 0 4px rgba(8, 8, 10, 0.45));
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 32px;
  color: var(--white);
  transition: background-color 240ms ease, height 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 10, 0.88);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-variation-settings: "wdth" 108;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.wordmark svg {
  width: 20px;
  height: 20px;
  margin: 0 2px;
  fill: var(--signal);
  transition: transform 500ms var(--ease-out);
}

.wordmark:hover svg {
  transform: rotate(45deg) scale(1.18);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
}

.desktop-nav a,
.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 280ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  border-color: var(--flash);
  background: var(--flash);
  color: var(--ink);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero__media,
.hero__media img,
.hero__shade,
.hero__flare {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -1;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: hero-in 1.6s var(--ease-out) both;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.65) 0%, rgba(8, 8, 10, 0.02) 28%, rgba(8, 8, 10, 0.22) 60%, rgba(8, 8, 10, 0.94) 100%),
    linear-gradient(90deg, rgba(8, 8, 10, 0.45), transparent 45%, rgba(8, 8, 10, 0.12));
}

.hero__flare {
  background: radial-gradient(circle 22rem at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(239, 255, 69, 0.19), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 400ms ease;
}

.hero:hover .hero__flare {
  opacity: 1;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 38px;
}

.hero__eyebrow,
.section-kicker {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__title {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: auto 0 4vh;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 12vw, 12.6rem);
  font-variation-settings: "wdth" 95;
  font-weight: 850;
  letter-spacing: -0.072em;
  line-height: 0.77;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(0.8em);
  animation: title-up 1s var(--ease-out) forwards;
}

.hero__line--one {
  animation-delay: 180ms;
}

.hero__line--two {
  align-self: center;
  color: var(--flash);
  font-size: 1.12em;
  font-variation-settings: "wdth" 125;
  animation-delay: 290ms;
}

.hero__line--three {
  align-self: flex-end;
  font-size: 0.49em;
  font-variation-settings: "wdth" 82;
  letter-spacing: -0.045em;
  animation-delay: 410ms;
}

.hero__footer {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  align-items: end;
  gap: 32px;
}

.hero__footer > p {
  max-width: 38ch;
  margin: 0;
  font-size: clamp(0.95rem, 1.3vw, 1.22rem);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 28px;
}

.round-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 142px;
  height: 70px;
  padding: 0 18px 0 22px;
  border-radius: 100px;
  background: var(--signal);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: left;
  text-transform: uppercase;
  transition: width 350ms var(--ease-out), background-color 200ms ease;
}

.round-button:hover {
  width: 164px;
  background: var(--flash);
}

.round-button svg {
  width: 16px;
  fill: currentColor;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

.text-link:hover span {
  transform: translateY(4px);
}

.hero__index {
  position: absolute;
  right: 38px;
  bottom: 102px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(8, 8, 10, 0.26);
  background: var(--flash);
  color: var(--ink);
}

.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 13px 0 11px;
  animation: ticker 22s linear infinite;
}

.ticker span {
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  font-variation-settings: "wdth" 110;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.ticker i {
  font-style: normal;
}

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

.reel-section {
  padding: clamp(100px, 12vw, 180px) 0;
}

.section-kicker {
  margin: 0 0 clamp(60px, 8vw, 110px);
}

.section-kicker--dark {
  border-color: var(--line-dark);
  color: var(--ink);
}

.reel-section__heading,
.work-section__heading,
.capabilities__intro {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr);
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(52px, 6vw, 88px);
}

.reel-section__heading h2,
.work-section__heading h2,
.capabilities__intro h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 10.5vw, 10.5rem);
  font-variation-settings: "wdth" 92;
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 0.79;
  text-transform: uppercase;
}

.reel-section__heading h2 em,
.work-section__heading h2 em,
.capabilities__intro h2 em,
.about h2 em,
.contact h2 em {
  font-style: normal;
  font-variation-settings: "wdth" 125;
}

.reel-section__heading h2 em {
  color: var(--signal);
}

.reel-section__heading > p,
.work-section__heading > p,
.capabilities__intro > p {
  max-width: 32ch;
  margin: 0 0 6px;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.45;
}

.reel-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  overflow: hidden;
  padding: 0;
  background: #111;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out), filter 400ms ease;
}

.reel-card__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.08), rgba(8, 8, 10, 0.6));
  transition: background-color 300ms ease;
}

.reel-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.12);
}

.reel-card__label,
.reel-card__time {
  position: absolute;
  bottom: 28px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reel-card__label {
  left: 30px;
}

.reel-card__time {
  right: 30px;
}

.reel-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(72px, 8vw, 116px);
  height: clamp(72px, 8vw, 116px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  place-items: center;
  transform: translate(-50%, -50%);
  background: rgba(8, 8, 10, 0.24);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: color 250ms ease, background-color 250ms ease, transform 350ms var(--ease-out);
}

.reel-card__play svg {
  width: 24%;
  fill: currentColor;
}

.reel-card:hover .reel-card__play {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--flash);
  color: var(--ink);
}

.work-section,
.capabilities {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--paper);
  color: var(--ink);
}

.work-section__heading h2 em,
.capabilities__intro h2 em {
  color: var(--blue);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(20px, 2.6vw, 44px);
  row-gap: clamp(72px, 9vw, 140px);
}

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

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

.project__media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: #d2cbbb;
  cursor: pointer;
}

.project--wide .project__media {
  aspect-ratio: 1.44 / 1;
}

.project--tall .project__media {
  aspect-ratio: 0.92 / 1;
}

.project__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.12), transparent 42%, rgba(8, 8, 10, 0.52));
  opacity: 0.54;
  transition: opacity 300ms ease;
}

.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out), filter 500ms ease;
}

.project__media:hover img,
.project__media:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.project__media:hover::after {
  opacity: 0.82;
}

.project__number,
.project__enter {
  position: absolute;
  z-index: 2;
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project__number {
  top: 22px;
  left: 22px;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  place-items: center;
}

.project__enter {
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 350ms var(--ease-out);
}

.project__enter b {
  font-size: 1.1rem;
}

.project__media:hover .project__enter,
.project__media:focus-visible .project__enter {
  opacity: 1;
  transform: translateY(0);
}

.project__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 8px 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.project__meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 3.2rem);
  font-variation-settings: "wdth" 100;
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.project__meta p,
.project__meta span {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project__meta p {
  grid-column: 1 / 2;
}

.project__meta span {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.manifesto {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--signal);
  color: var(--ink);
  isolation: isolate;
}

.manifesto__star {
  position: absolute;
  z-index: -1;
  right: -18vw;
  bottom: -25vw;
  width: min(78vw, 1100px);
  color: var(--paper);
  opacity: 0.92;
  transform: rotate(9deg);
}

.manifesto__star svg {
  display: block;
  width: 100%;
  fill: currentColor;
}

.manifesto .section-kicker {
  border-color: rgba(8, 8, 10, 0.4);
}

.manifesto h2 {
  max-width: 12ch;
  margin: 13vh 0 12vh;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 9.4vw, 9.6rem);
  font-variation-settings: "wdth" 98;
  font-weight: 830;
  letter-spacing: -0.07em;
  line-height: 0.83;
  text-transform: uppercase;
}

.manifesto h2 em {
  color: var(--paper);
  font-style: normal;
  font-variation-settings: "wdth" 125;
}

.manifesto__copy {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  align-items: start;
  gap: 40px;
}

.manifesto__copy > span {
  font-size: clamp(2rem, 5vw, 5rem);
}

.manifesto__copy p {
  max-width: 41ch;
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.48rem);
  font-weight: 600;
  line-height: 1.45;
}

.capabilities__intro h2 {
  font-size: clamp(3.8rem, 9vw, 9rem);
}

.capability-list {
  border-top: 1px solid var(--ink);
}

.capability {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(220px, 1fr) minmax(260px, 0.8fr) 40px;
  align-items: center;
  gap: 20px;
  min-height: 138px;
  border-bottom: 1px solid var(--ink);
  transition: color 250ms ease, padding 350ms var(--ease-out);
}

.capability::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--blue);
  transition: transform 350ms var(--ease-out);
}

.capability > * {
  position: relative;
  z-index: 1;
}

.capability > span:first-child {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.capability h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 4.7rem);
  font-variation-settings: "wdth" 96;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.capability p {
  max-width: 40ch;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.capability__mark {
  font-size: 1.45rem;
  text-align: right;
  transition: transform 450ms var(--ease-out);
}

.capability:hover {
  padding-inline: 18px;
  color: var(--white);
}

.capability:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.capability:hover .capability__mark {
  transform: rotate(90deg) scale(1.3);
}

.process {
  padding: clamp(100px, 11vw, 160px) 0;
  background: var(--ink);
  color: var(--white);
}

.process .section-kicker {
  margin-bottom: 76px;
}

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

.process__grid li {
  min-height: 420px;
  padding: 28px;
  background: var(--ink);
  transition: background-color 300ms ease, color 300ms ease;
}

.process__grid li:hover {
  background: var(--flash);
  color: var(--ink);
}

.process__grid span {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process__grid h3 {
  max-width: 12ch;
  margin: 17vh 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-variation-settings: "wdth" 100;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.about {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--blue);
  color: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 54px 28px;
}

.about__eyebrow {
  grid-column: 1 / 13;
  margin: 0;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about h2 {
  grid-column: 1 / 10;
  margin-top: 5vh;
  font-size: clamp(4rem, 9.4vw, 9.8rem);
}

.about h2 em {
  color: var(--flash);
}

.about__copy {
  grid-column: 5 / 9;
}

.about__copy p {
  margin: 0 0 24px;
  font-size: clamp(1.05rem, 1.5vw, 1.33rem);
  line-height: 1.55;
}

.about__fact {
  grid-column: 10 / 13;
  align-self: start;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.about__fact strong {
  display: block;
  margin: 22px 0 4px;
  color: var(--flash);
  font-family: var(--font-display);
  font-size: clamp(5rem, 9vw, 9rem);
  font-variation-settings: "wdth" 110;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.about__fact span {
  display: block;
  max-width: 29ch;
  font-size: 0.82rem;
  line-height: 1.5;
}

.contact {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  background: var(--signal);
  color: var(--ink);
  isolation: isolate;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 94svh;
  padding-block: clamp(88px, 10vw, 140px) 54px;
}

.contact__eyebrow {
  width: 100%;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(8, 8, 10, 0.45);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact h2 {
  position: relative;
  z-index: 1;
  margin: 9vh 0;
  font-size: clamp(3.9rem, 9.8vw, 10rem);
}

.contact h2 em {
  color: var(--paper);
}

.contact__email {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 13px;
  border-block: 1px solid var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 4.8rem);
  font-variation-settings: "wdth" 106;
  font-weight: 730;
  letter-spacing: -0.05em;
  line-height: 1;
  transition: padding 350ms var(--ease-out), color 220ms ease, background-color 220ms ease;
}

.contact__email b {
  font-weight: 500;
  transition: transform 300ms var(--ease-out);
}

.contact__email:hover {
  padding-inline: 22px;
  background: var(--ink);
  color: var(--flash);
}

.contact__email:hover b {
  transform: translate(5px, -5px);
}

.contact__orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(1px);
}

.contact__orb--one {
  top: 7%;
  right: -8vw;
  width: 38vw;
  height: 38vw;
  background: var(--flash);
  animation: orb-float 8s ease-in-out infinite alternate;
}

.contact__orb--two {
  bottom: -18vw;
  left: 24%;
  width: 32vw;
  height: 32vw;
  background: var(--blue);
  animation: orb-float 11s ease-in-out -3s infinite alternate-reverse;
}

.site-footer {
  padding: 60px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.site-footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 70px;
}

.wordmark--footer {
  font-size: clamp(2rem, 5.8vw, 6rem);
  letter-spacing: -0.06em;
}

.wordmark--footer svg {
  width: 0.86em;
  height: 0.86em;
}

.site-footer__top p {
  margin: 0;
  color: var(--flash);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-variation-settings: "wdth" 115;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom div {
  display: flex;
  gap: 26px;
}

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

.site-footer__bottom a {
  transition: color 180ms ease;
}

.site-footer__bottom a:hover {
  color: var(--flash);
}

dialog {
  border: 0;
  padding: 0;
}

dialog::backdrop {
  background: rgba(8, 8, 10, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.reel-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.reel-dialog[open] {
  animation: dialog-in 500ms var(--ease-out) both;
}

.reel-dialog__inner {
  height: 100%;
  padding: 0 24px 24px;
}

.dialog-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 74px;
}

.dialog-topbar p,
.dialog-close {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dialog-topbar p {
  margin: 0;
}

.dialog-close,
.project-dialog__close {
  justify-self: end;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.reel-player {
  position: relative;
  height: calc(100% - 74px);
  overflow: hidden;
  background: #111;
}

.reel-player__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: reel-image-in 700ms var(--ease-out) both;
}

.reel-player__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.1), transparent 45%, rgba(8, 8, 10, 0.74));
}

.reel-player__counter,
.reel-player__caption,
.reel-player__toggle {
  position: absolute;
  z-index: 1;
}

.reel-player__counter {
  top: 20px;
  left: 24px;
  margin: 0;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.reel-player__caption {
  bottom: 44px;
  left: 24px;
  display: flex;
  flex-direction: column;
}

.reel-player__type {
  margin-bottom: 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reel-player__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 6.6rem);
  font-variation-settings: "wdth" 105;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.reel-player__toggle {
  right: 24px;
  bottom: 42px;
  min-width: 72px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  background: rgba(8, 8, 10, 0.22);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reel-player__progress {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
}

.reel-player__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--flash);
}

.reel-player.is-playing .reel-player__progress span {
  animation: reel-progress 3.6s linear forwards;
}

.project-dialog {
  width: min(calc(100% - 48px), 1240px);
  max-width: none;
  max-height: min(86dvh, 900px);
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.project-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  animation: project-dialog-in 480ms var(--ease-out) both;
}

.project-dialog__close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 20px;
  padding: 0 10px;
  border-radius: 100px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-dialog__media {
  position: relative;
  min-height: 610px;
  background: #222;
}

.project-dialog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-dialog__index {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 12px;
  background: var(--flash);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-dialog__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: clamp(34px, 5vw, 68px) clamp(28px, 4vw, 56px);
}

.project-dialog__meta {
  margin: 0 0 18px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-dialog h2 {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 6vw, 6.5rem);
  font-variation-settings: "wdth" 95;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: uppercase;
}

.project-dialog__description {
  margin: 0 0 36px;
  font-size: 0.96rem;
  line-height: 1.65;
}

.project-dialog__content a {
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

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

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.12); }
  to { opacity: 1; transform: scale(1.04); }
}

@keyframes title-up {
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes orb-float {
  from { transform: translate3d(-2%, -3%, 0) scale(0.94); }
  to { transform: translate3d(5%, 6%, 0) scale(1.08); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes project-dialog-in {
  from { opacity: 0; transform: translateY(22px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes reel-image-in {
  from { opacity: 0.4; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes reel-progress {
  to { transform: scaleX(1); }
}

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    justify-self: end;
    width: 48px;
    height: 48px;
    padding: 0 10px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 4px 0;
    background: currentColor;
    transition: transform 300ms var(--ease-out);
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-height) + 24px) 32px 34px;
    visibility: hidden;
    transform: translateY(-100%);
    background: var(--blue);
    opacity: 0;
    transition: visibility 0s linear 500ms, opacity 350ms ease, transform 500ms var(--ease-out);
  }

  .mobile-menu.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0s;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: baseline;
    padding: 10px 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 6.5rem);
    font-variation-settings: "wdth" 95;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.92;
    text-transform: uppercase;
  }

  .mobile-menu nav a span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .mobile-menu__email {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero__title {
    font-size: clamp(4.2rem, 13vw, 9rem);
  }

  .about__copy {
    grid-column: 4 / 9;
  }

  .about__fact {
    grid-column: 9 / 13;
  }

  .project-dialog[open] {
    grid-template-columns: 1fr 0.75fr;
  }
}

@media (max-width: 800px) {
  :root {
    --header-height: 70px;
  }

  .shell {
    width: min(calc(100% - 36px), 680px);
  }

  .site-header {
    height: var(--header-height);
    padding-inline: 18px;
  }

  .site-header.is-scrolled {
    height: 62px;
  }

  .scroll-progress,
  .page-grain {
    display: none;
  }

  .mobile-menu {
    padding-inline: 18px;
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + 14px);
    padding-bottom: 24px;
  }

  .hero__eyebrow span:last-child {
    display: none;
  }

  .hero__title {
    margin-top: auto;
    margin-bottom: 7vh;
    font-size: clamp(4.15rem, 19.5vw, 8rem);
    line-height: 0.79;
  }

  .hero__line--two {
    align-self: flex-start;
  }

  .hero__line--three {
    align-self: flex-start;
    font-size: 0.48em;
  }

  .hero__footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero__footer > p {
    max-width: 34ch;
  }

  .hero__actions {
    justify-content: space-between;
  }

  .round-button {
    width: 128px;
    height: 62px;
  }

  .round-button:hover {
    width: 140px;
  }

  .hero__index {
    display: none;
  }

  .section-kicker {
    margin-bottom: 52px;
  }

  .reel-section__heading,
  .work-section__heading,
  .capabilities__intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .reel-section__heading h2,
  .work-section__heading h2,
  .capabilities__intro h2,
  .about h2,
  .contact h2 {
    font-size: clamp(3.5rem, 18vw, 7.6rem);
  }

  .reel-card {
    aspect-ratio: 4 / 5;
  }

  .reel-card img {
    object-position: center;
  }

  .project-grid {
    display: block;
  }

  .project {
    margin-bottom: 72px;
  }

  .project--wide .project__media,
  .project--tall .project__media {
    aspect-ratio: 4 / 4.5;
  }

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

  .manifesto {
    min-height: auto;
  }

  .manifesto h2 {
    margin: 9vh 0 15vh;
    font-size: clamp(3.2rem, 16vw, 6.4rem);
  }

  .manifesto__copy {
    grid-template-columns: 44px 1fr;
  }

  .manifesto__star {
    right: -39vw;
    bottom: -10vw;
    width: 110vw;
  }

  .capability {
    grid-template-columns: 40px minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 24px 0;
  }

  .capability h3 {
    font-size: clamp(1.7rem, 9vw, 3rem);
  }

  .capability p {
    grid-column: 2 / 4;
    margin-top: 4px;
  }

  .capability:hover {
    padding-inline: 10px;
  }

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

  .process__grid li {
    min-height: 320px;
  }

  .process__grid h3 {
    margin-top: 15vh;
  }

  .about__grid {
    display: block;
  }

  .about h2 {
    margin: 64px 0 78px;
  }

  .about__copy {
    max-width: 33rem;
    margin-left: auto;
  }

  .about__fact {
    width: min(70%, 280px);
    margin: 70px 0 0 auto;
  }

  .contact {
    min-height: 88svh;
  }

  .contact__inner {
    min-height: 88svh;
  }

  .contact h2 {
    margin-block: 8vh;
  }

  .contact__email {
    align-items: flex-end;
    font-size: clamp(1.15rem, 6vw, 2.5rem);
  }

  .contact__orb--one {
    top: 15%;
    right: -30vw;
    width: 72vw;
    height: 72vw;
  }

  .contact__orb--two {
    bottom: -22vw;
    left: -8vw;
    width: 66vw;
    height: 66vw;
  }

  .site-footer__top {
    display: block;
    padding-bottom: 56px;
  }

  .site-footer__top p {
    margin-top: 20px;
  }

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

  .site-footer__bottom div {
    grid-column: 1 / 3;
    grid-row: 1;
    flex-wrap: wrap;
  }

  .site-footer__bottom p {
    grid-column: 1;
    grid-row: 2;
  }

  .site-footer__bottom > a:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .project-dialog {
    width: 100%;
    height: 100dvh;
    max-height: none;
    margin: 0;
    overflow-y: auto;
  }

  .project-dialog[open] {
    display: block;
  }

  .project-dialog__media {
    min-height: 52svh;
    height: 52svh;
  }

  .project-dialog__content {
    min-height: 48svh;
    padding: 42px 22px 52px;
  }

  .project-dialog h2 {
    font-size: clamp(3.3rem, 16vw, 6rem);
  }

  .reel-dialog__inner {
    padding: 0 12px 12px;
  }

  .dialog-topbar {
    grid-template-columns: 1fr auto;
    height: 64px;
  }

  .dialog-topbar > p {
    display: none;
  }

  .reel-player {
    height: calc(100% - 64px);
  }

  .reel-player__caption {
    right: 20px;
    bottom: 92px;
    left: 20px;
  }

  .reel-player__title {
    font-size: clamp(2.2rem, 12vw, 4.6rem);
  }

  .reel-player__toggle {
    right: auto;
    bottom: 35px;
    left: 20px;
  }

  .reel-player__progress {
    right: 20px;
    bottom: 19px;
    left: 20px;
  }
}

@media (max-width: 390px) {
  .shell {
    width: calc(100% - 28px);
  }

  .hero__title {
    font-size: clamp(3.7rem, 19.3vw, 5rem);
  }

  .hero__footer > p {
    font-size: 0.88rem;
  }

  .text-link {
    font-size: 0.63rem;
  }

  .section-kicker {
    gap: 12px;
    font-size: 0.58rem;
  }

  .project__meta h3 {
    font-size: 1.55rem;
  }

  .mobile-menu nav a {
    grid-template-columns: 38px 1fr;
  }

  .site-footer__bottom div {
    gap: 16px;
  }
}

@media (hover: none), (pointer: coarse) {
  .hero__flare {
    display: none;
  }

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

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

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

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

  .scroll-progress {
    display: none;
  }
}

@media (forced-colors: active) {
  .page-grain,
  .hero__shade,
  .hero__flare,
  .contact__orb {
    display: none;
  }

  button,
  a {
    forced-color-adjust: auto;
  }
}
