:root {
  --bg: #050505;
  --ink: #f5f2eb;
  --muted: rgba(245, 242, 235, 0.68);
  --dim: rgba(245, 242, 235, 0.18);
  --line: rgba(245, 242, 235, 0.2);
  --orange: #ff5a1f;
  --orange-soft: rgba(255, 90, 31, 0.22);
  --cyan: #65d8ff;
  --green: #a5ff70;
  --blue: #1d39ff;
  --panel: rgba(12, 12, 12, 0.74);
  --page-progress: 0;
  font-family: "Montserrat", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ol,
figure {
  margin: 0;
}

ol {
  padding: 0;
}

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

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: calc(var(--page-progress) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transform-origin: left center;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 80;
  width: min(1180px, calc(100vw - 32px));
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.26);
  transform: translateX(-50%);
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.topbar__brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.topbar__brand span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar__nav a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.scene {
  position: relative;
  min-height: 170svh;
  scroll-margin-top: 0;
  background: var(--bg);
}

.scene__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: min(620px, 100svh);
  overflow: hidden;
}

.section-label {
  color: var(--orange);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  position: relative;
  z-index: 1;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--orange);
  outline: none;
}

.button--primary {
  border-color: var(--orange);
  color: #050505;
  background: var(--orange);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #ff7a3f;
}

.button--ghost {
  background: rgba(5, 5, 5, 0.42);
}

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

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

[data-motion] {
  will-change: transform, opacity, clip-path;
}

.scene-word {
  position: absolute;
  z-index: 0;
  color: rgba(245, 242, 235, 0.045);
  font-size: clamp(120px, 20vw, 310px);
  line-height: 0.78;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

.scene-word--thesis-one {
  right: -3vw;
  top: 12svh;
}

.scene-word--thesis-two {
  left: -2vw;
  bottom: 7svh;
}

.scene-word--services-one {
  right: -4vw;
  top: 18svh;
}

.scene-word--services-two {
  left: -2vw;
  bottom: 8svh;
}

.scene-word--split {
  left: 50%;
  top: 50%;
  color: rgba(245, 242, 235, 0.05);
  font-size: clamp(130px, 22vw, 330px);
  transform: translate(-50%, -50%);
}

.scene-word--experience {
  right: -2vw;
  top: 8svh;
  z-index: 1;
  color: rgba(245, 242, 235, 0.035);
  font-size: clamp(160px, 26vw, 380px);
}

.hero {
  min-height: 190svh;
}

.hero .scene__sticky {
  isolation: isolate;
}

.hero__stage {
  position: absolute;
  z-index: -3;
  inset: -7% -5% -8% auto;
  width: 74vw;
  height: 118svh;
  object-fit: cover;
  object-position: center;
  opacity: 0.76;
  filter: saturate(0.86) contrast(1.08) brightness(0.78);
  pointer-events: none;
}

.hero__mark {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero__mark--back {
  right: -6vw;
  top: 9svh;
  width: min(620px, 42vw);
  opacity: 0.08;
  filter: blur(0.2px);
}

.hero__video {
  position: absolute;
  right: max(34px, calc((100vw - 1180px) / 2));
  bottom: 9svh;
  z-index: 1;
  width: min(520px, 37vw);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.72;
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.hero .scene__sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.94) 28%, rgba(5, 5, 5, 0.56) 55%, rgba(5, 5, 5, 0.88) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.4), #050505 94%);
}

.viewfinder {
  position: absolute;
  inset: 96px 32px 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.viewfinder::before,
.viewfinder::after {
  content: "";
  position: absolute;
  background: var(--orange);
}

.viewfinder::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  opacity: 0.35;
}

.viewfinder::after {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0.28;
}

.scanlines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.13;
  background: repeating-linear-gradient(180deg, transparent 0 6px, rgba(255, 255, 255, 0.15) 7px);
  mix-blend-mode: screen;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 48px));
  min-height: 100%;
  margin: 0 auto;
  padding: 116px 0 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero__logo {
  width: min(280px, 34vw);
  margin-top: 22px;
}

.hero__logo img {
  width: 100%;
  height: auto;
}

.hero__claim {
  max-width: 520px;
  margin: 24px 0 0;
  text-align: left;
  font-size: clamp(32px, 3.8vw, 40px);
  line-height: 1.12;
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.72);
}

.hero__actions {
  position: relative;
  z-index: 8;
  margin: 26px 0 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__content .eyebrow {
  text-align: left;
}

.hero__meta {
  position: absolute;
  left: 40px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__meta span {
  padding-left: 18px;
  position: relative;
}

.hero__meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--green);
  transform: translateY(-50%);
}

.thesis {
  min-height: 165svh;
}

.thesis .scene__sticky {
  display: grid;
  place-items: center;
  isolation: isolate;
}

.thesis__image {
  position: absolute;
  z-index: 1;
  inset: 10svh auto auto 7vw;
  width: min(520px, 42vw);
  height: 64svh;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111;
  clip-path: inset(32% 0 0 0);
  pointer-events: none;
}

.thesis__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.34), rgba(5, 5, 5, 0.02)),
    linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.48));
  pointer-events: none;
}

.thesis__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.82);
}

.thesis__copy {
  position: relative;
  z-index: 2;
  width: min(1060px, calc(100vw - 56px));
  display: grid;
  gap: 24px;
}

.thesis h2 {
  display: grid;
  gap: 8px;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 16px 60px rgba(0, 0, 0, 0.72);
}

.thesis h2 span:nth-child(even) {
  color: rgba(245, 242, 235, 0.62);
  text-align: right;
}

.thesis h2 span:nth-child(3) {
  color: var(--orange);
}

.showreel {
  min-height: 180svh;
  background: #070707;
}

.showreel .scene__sticky {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding: 124px max(32px, calc((100vw - 1180px) / 2)) 80px;
}

.showreel__copy {
  position: relative;
  z-index: 4;
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 14px;
}

.showreel__copy h2 {
  max-width: 9ch;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.04;
  font-weight: 900;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.showreel__copy p:not(.section-label) {
  max-width: 360px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  overflow-wrap: break-word;
}

.showreel__player {
  position: relative;
  z-index: 8;
  justify-self: stretch;
  width: 100%;
  max-width: 760px;
  min-width: 0;
  margin-left: auto;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  color: var(--ink);
  background: #151515;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.52);
}

.showreel__player::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.showreel__trigger {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  appearance: none;
  font: inherit;
  color: inherit;
  background: transparent;
}

.showreel__trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 400ms ease;
}

.showreel__trigger:hover img,
.showreel__trigger:focus-visible img {
  transform: scale(1.04);
}

.showreel__player.is-playing .showreel__trigger {
  opacity: 0;
  pointer-events: none;
}

.showreel__player iframe {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050505;
}

.showreel__trigger:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -8px;
}

.playmark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #050505;
  background: var(--orange);
  font-size: 0;
  font-weight: 900;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.playmark::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #050505;
}

.timecode {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 4;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.showreel__tags {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.showreel__tags span {
  position: absolute;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--muted);
  background: rgba(5, 5, 5, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.showreel__tags span:nth-child(1) {
  left: 42vw;
  top: 22svh;
}

.showreel__tags span:nth-child(2) {
  right: 8vw;
  top: 20svh;
}

.showreel__tags span:nth-child(3) {
  left: 14vw;
  bottom: 19svh;
}

.showreel__tags span:nth-child(4) {
  right: 16vw;
  bottom: 17svh;
}

.services {
  min-height: 175svh;
}

.services .scene__sticky {
  display: block;
  isolation: isolate;
}

.services__intro {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100vw - 56px));
  margin: 0 auto;
  padding-top: 150px;
  display: grid;
  gap: 14px;
}

.services__intro h2 {
  max-width: 860px;
  font-size: 52px;
  line-height: 1.04;
  font-weight: 900;
}

.services__grid {
  position: absolute;
  z-index: 2;
  inset: auto 0 9svh;
  width: min(1120px, calc(100vw - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  min-height: 260px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(12, 12, 12, 0.82);
}

.service-card span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.service-card h3 {
  margin-top: auto;
  font-size: 23px;
  line-height: 1.08;
  font-weight: 900;
}

.service-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.split {
  min-height: 170svh;
  background: #0a0a0a;
}

.split .scene__sticky {
  display: grid;
  place-items: center;
  isolation: isolate;
}

.split__media {
  position: absolute;
  width: min(420px, 36vw);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.split__media--left {
  left: 8vw;
  top: 12svh;
}

.split__media--right {
  right: 8vw;
  bottom: 10svh;
}

.split__media img,
.split__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__media video {
  filter: saturate(0.84) contrast(1.08) brightness(0.78);
}

.split__line {
  position: absolute;
  top: 10svh;
  bottom: 10svh;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--orange), var(--cyan), transparent);
  transform: translateX(-50%);
}

.split__copy {
  position: relative;
  z-index: 3;
  width: min(620px, calc(100vw - 56px));
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(14px);
}

.split__copy h2 {
  margin-top: 16px;
  font-size: 48px;
  line-height: 1.02;
  font-weight: 900;
}

.split__copy p:last-child {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.experience {
  min-height: 180svh;
}

.experience .scene__sticky {
  display: grid;
  align-items: center;
}

.experience .scene__sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.72) 48%, rgba(5, 5, 5, 0.96)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), #050505 92%);
  pointer-events: none;
}

.experience__copy {
  position: relative;
  z-index: 5;
  width: min(500px, calc(100vw - 56px));
  margin-left: max(48px, calc((100vw - 1180px) / 2));
  margin-right: auto;
  display: grid;
  gap: 16px;
}

.experience__copy h2 {
  max-width: 500px;
  font-size: 50px;
  line-height: 1.04;
  font-weight: 900;
}

.experience__team {
  position: absolute;
  right: max(16px, calc((100vw - 1180px) / 2 - 10px));
  bottom: -2svh;
  z-index: 4;
  width: min(690px, 54vw);
  pointer-events: none;
  filter: saturate(0.92) contrast(1.04);
}

.experience__team::before {
  content: "";
  position: absolute;
  inset: 18% 0 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 90, 31, 0.16), rgba(5, 5, 5, 0.2) 58%, #050505);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience__team img {
  width: 100%;
  max-height: 82svh;
  object-fit: contain;
  object-position: center bottom;
}

.experience__track {
  position: absolute;
  left: 50%;
  bottom: 9svh;
  z-index: 2;
  width: 1280px;
  display: grid;
  grid-template-columns: repeat(4, 288px);
  gap: 16px;
  transform: translateX(-50%);
  opacity: 0.62;
  pointer-events: none;
}

.experience__track figure {
  position: relative;
  height: 190px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #151515;
}

.experience__track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.experience__track figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 6px 8px;
  color: var(--ink);
  background: rgba(5, 5, 5, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tv-strip {
  position: absolute;
  right: max(56px, calc((100vw - 1180px) / 2));
  top: 34svh;
  z-index: 3;
  width: min(540px, 38vw);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  opacity: 0.26;
  pointer-events: none;
}

.tv-strip img {
  height: 68px;
  min-width: 0;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  object-fit: contain;
  overflow: hidden;
}

.process {
  min-height: 170svh;
  background:
    linear-gradient(180deg, #050505 0%, #0b0d16 48%, #050505 100%);
}

.process .scene__sticky {
  display: grid;
  align-content: center;
  gap: clamp(28px, 5svh, 58px);
}

.process__copy,
.process__steps,
.process__rail {
  width: min(1120px, calc(100vw - 56px));
  margin: 0 auto;
}

.process__copy {
  display: grid;
  gap: 16px;
}

.process__copy h2 {
  max-width: 880px;
  font-size: clamp(38px, 4.4vw, 50px);
  line-height: 1.04;
  font-weight: 900;
}

.process__rail {
  height: 3px;
  background: rgba(255, 255, 255, 0.14);
}

.process__rail-fill {
  display: block;
  width: calc(var(--process-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--cyan), var(--green));
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.process__steps li {
  min-height: 190px;
  padding: 18px;
  display: grid;
  grid-template-rows: 18px 62px auto;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  opacity: 0.42;
  transition: opacity 220ms ease, border-color 220ms ease;
}

.process__steps li.is-active {
  opacity: 1;
  border-color: var(--orange);
}

.process__steps span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.process__steps h3 {
  align-self: end;
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.process__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.clients {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #050505;
  background: #f5f2eb;
}

.clients__header {
  width: min(1080px, calc(100vw - 56px));
  margin: 0 auto 56px;
  display: grid;
  gap: 16px;
}

.clients__header .section-label {
  color: #d63d0b;
}

.clients__header h2 {
  max-width: 780px;
  font-size: 48px;
  line-height: 1.04;
  font-weight: 900;
}

.logo-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  border-top: 1px solid rgba(5, 5, 5, 0.12);
}

.logo-marquee + .logo-marquee {
  border-bottom: 1px solid rgba(5, 5, 5, 0.12);
}

.logo-marquee__row {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  animation: marquee-left 34s linear infinite;
}

.logo-marquee--right .logo-marquee__row {
  animation-name: marquee-right;
  animation-duration: 38s;
}

.logo-marquee img {
  width: 170px;
  height: 84px;
  padding: 16px;
  object-fit: contain;
  border: 1px solid rgba(5, 5, 5, 0.1);
  background: #fff;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.contact {
  position: relative;
  min-height: 100svh;
  scroll-margin-top: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050505;
}

.contact__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.contact__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.1);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.96)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.44), #050505);
}

.contact__content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100vw - 56px));
  display: grid;
  gap: 24px;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.72);
}

.contact__content h2 {
  max-width: 900px;
  font-size: 58px;
  line-height: 1.03;
  font-weight: 900;
}

.contact__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1120px) {
  .hero__logo {
    width: min(260px, 36vw);
  }

  .experience__copy {
    width: min(420px, 46vw);
    margin-left: 28px;
  }

  .experience__copy h2 {
    font-size: clamp(38px, 4.4vw, 46px);
  }

  .experience__team {
    right: 16px;
    width: min(500px, 46vw);
  }

  .tv-strip {
    right: 16px;
    width: min(360px, 38vw);
    opacity: 0.22;
  }

  .services .scene__sticky {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    padding: 96px 28px 48px;
  }

  .services__intro {
    width: min(920px, calc(100vw - 56px));
    padding-top: 0;
  }

  .services__intro h2 {
    max-width: 760px;
    font-size: clamp(36px, 5vw, 48px);
  }

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

  .services__grid {
    position: relative;
    inset: auto;
    width: min(920px, calc(100vw - 56px));
    margin: 0 auto;
  }

  .showreel .scene__sticky {
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding: 104px 28px 60px;
  }

  .showreel__copy {
    max-width: none;
  }

  .showreel__copy h2 {
    max-width: 9ch;
    font-size: clamp(38px, 5vw, 50px);
  }

  .showreel__copy p:not(.section-label) {
    max-width: 300px;
  }

  .showreel__player {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
  }

  .showreel__tags {
    position: absolute;
    inset: 0;
    width: auto;
    max-width: none;
    margin: 0;
    display: block;
  }

  .showreel__tags span {
    position: absolute;
  }

  .service-card {
    min-height: 190px;
  }
}

@media (max-height: 760px) and (min-width: 761px) {
  .hero__meta {
    display: none;
  }

  .hero__content {
    padding: 96px 0 32px;
  }

  .hero__logo {
    width: min(220px, 30vw);
    margin-top: 18px;
  }

  .hero__claim {
    margin-top: 16px;
    font-size: clamp(30px, 3.4vw, 34px);
  }

  .hero__actions {
    margin-top: 18px;
  }

  .services .scene__sticky {
    min-height: 100svh;
  }

  .process .scene__sticky {
    gap: 24px;
  }

  .process__copy h2 {
    max-width: 760px;
    font-size: clamp(30px, 4vw, 40px);
  }

  .process__steps li {
    min-height: 132px;
    padding: 14px;
    grid-template-rows: 16px 42px auto;
  }

  .process__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .process__steps h3 {
    font-size: 18px;
  }

  .process__steps p {
    font-size: 12.5px;
    line-height: 1.35;
  }
}

@media (max-height: 680px) and (min-width: 761px) {
  .services .scene__sticky {
    justify-content: flex-start;
    gap: 18px;
    padding: 96px 28px 18px;
  }

  .services__intro h2 {
    max-width: 700px;
    font-size: clamp(28px, 3.8vw, 40px);
  }

  .services__grid {
    gap: 10px;
  }

  .service-card {
    min-height: 142px;
    padding: 14px;
  }

  .service-card h3 {
    font-size: 19px;
  }

  .service-card p {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.35;
  }
}

@media (max-width: 760px) {
  .topbar {
    top: 10px;
    left: 16px;
    width: 60px;
    min-height: 54px;
    padding: 8px;
    justify-content: center;
    transform: none;
  }

  .topbar__brand {
    gap: 0;
  }

  .topbar__brand img {
    width: 38px;
    height: 38px;
  }

  .topbar__brand span:last-child,
  .topbar__nav {
    display: none;
  }

  .scene {
    min-height: auto;
  }

  .scene__sticky {
    position: relative;
    height: auto;
    min-height: auto;
    overflow: hidden;
  }

  .hero {
    min-height: 100svh;
  }

  .hero .scene__sticky {
    min-height: 100svh;
  }

  .hero__stage {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.48;
    object-position: 58% center;
    filter: saturate(0.78) contrast(1.08) brightness(0.56);
  }

  .hero__mark--back,
  .hero__video {
    display: none;
  }

  .hero .scene__sticky::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.64) 42%, #050505 100%),
      linear-gradient(90deg, #050505, rgba(5, 5, 5, 0.28), #050505);
  }

  .viewfinder {
    inset: 84px 16px 20px;
  }

  .hero__content {
    width: 100%;
    max-width: 360px;
    margin: 0;
    padding: 118px 16px 50px;
    align-items: center;
    text-align: center;
  }

  .hero__logo {
    width: 188px;
  }

  .hero__claim {
    width: 100%;
    max-width: 330px;
    font-size: 28px;
    text-align: center;
  }

  .hero__content .eyebrow {
    width: 100%;
    max-width: 330px;
    font-size: 12px;
    text-align: center;
  }

  .hero__actions,
  .contact__actions {
    width: 100%;
    max-width: 330px;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__meta {
    display: none;
  }

  .thesis,
  .showreel,
  .services,
  .split,
  .experience,
  .process {
    padding: 96px 0;
  }

  .thesis .scene__sticky,
  .showreel .scene__sticky,
  .services .scene__sticky,
  .split .scene__sticky,
  .experience .scene__sticky,
  .process .scene__sticky {
    display: block;
  }

  .thesis__image,
  .split__media,
  .showreel__copy,
  .experience__track,
  .experience__team,
  .tv-strip {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100vw - 32px);
    margin: 0 auto;
  }

  .thesis__image {
    height: 48svh;
    clip-path: none;
  }

  .scene-word {
    display: none;
  }

  .thesis__copy {
    width: calc(100vw - 32px);
    margin: 34px auto 0;
  }

  .thesis h2,
  .services__intro h2,
  .experience__copy h2,
  .process__copy h2,
  .clients__header h2,
  .contact__content h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .thesis h2 span:nth-child(even) {
    text-align: left;
  }

  .showreel__copy {
    display: grid;
    gap: 12px;
  }

  .showreel__copy h2 {
    font-size: 34px;
  }

  .showreel__player {
    width: calc(100vw - 32px);
    min-width: 0;
    margin-right: auto;
    margin: 28px auto 0;
  }

  .showreel__tags {
    position: relative;
    width: calc(100vw - 32px);
    margin: 16px auto 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .showreel__tags span {
    position: static;
  }

  .playmark {
    width: 64px;
    height: 64px;
  }

  .playmark::before {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 17px;
  }

  .services__intro,
  .experience__copy,
  .process__copy,
  .process__steps,
  .process__rail,
  .clients__header,
  .contact__content {
    width: calc(100vw - 32px);
  }

  .experience__copy {
    margin: 0 auto;
  }

  .services__grid {
    position: relative;
    inset: auto;
    width: calc(100vw - 32px);
    margin: 30px auto 0;
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 180px;
  }

  .split__media {
    aspect-ratio: 16 / 10;
  }

  .split__media--right {
    margin-top: 12px;
  }

  .split__line {
    display: none;
  }

  .split__copy {
    width: calc(100vw - 32px);
    margin: 18px auto 0;
  }

  .split__copy h2 {
    font-size: 34px;
  }

  .experience__track {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    transform: none !important;
  }

  .experience__team {
    width: calc(100vw - 32px);
    margin: 28px auto 0;
    transform: none !important;
  }

  .experience__team::before {
    inset: 18% 0 0;
  }

  .experience__track figure {
    height: 220px;
  }

  .tv-strip {
    margin-top: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process .scene__sticky {
    gap: 28px;
  }

  .process__rail {
    margin-top: 28px;
  }

  .process__steps {
    margin-top: 22px;
    grid-template-columns: 1fr;
  }

  .process__steps li {
    min-height: 160px;
    opacity: 1;
    transform: none;
  }

  .clients {
    padding: 76px 0;
  }

  .logo-marquee img {
    width: 132px;
    height: 70px;
  }

  .contact {
    min-height: 82svh;
    padding: 86px 0;
  }

  [data-motion] {
    transform: none !important;
    clip-path: none !important;
  }
}

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