:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #0c0c0d;
  --surface-soft: #111113;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f2f2f3;
  --muted: #929298;
  --red: #e13535;
  --red-dark: #721717;
  --shell: min(1152px, calc(100vw - 40px));
  --header-height: 70px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.dialog-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

::selection {
  background: var(--red);
  color: white;
}

.shell {
  position: relative;
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  color: black;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(4, 4, 4, 0.74);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(28px, 3vw, 52px);
  align-items: center;
  width: var(--shell);
  height: 100%;
  margin: auto;
}

.brand {
  width: 82px;
  transition: transform 250ms var(--ease);
}

.brand:hover {
  transform: scale(1.04);
}

.brand img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: clamp(26px, 2.7vw, 46px);
  align-items: center;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 200ms ease;
}

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

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: white;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-self: end;
}

.header-language {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.28);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.header-language a,
.language-status a {
  color: var(--muted);
  transition: color 200ms ease;
}

.header-language a:hover,
.header-language a:focus-visible,
.header-language .active,
.language-status a:hover,
.language-status a:focus-visible,
.language-status .active {
  color: white;
}

.button {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 46px;
  padding: 11px 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.58);
  color: white;
  font-weight: 500;
  transition: background 250ms ease, border-color 250ms ease, transform 250ms var(--ease);
}

.button:hover,
.button:focus-visible {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.button-compact {
  min-width: 124px;
  min-height: 42px;
  padding: 8px 22px;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 7px;
  width: 22px;
  height: 1.5px;
  background: white;
  transition: top 250ms ease, transform 250ms ease;
}

.menu-toggle span:first-child {
  top: 13px;
}

.menu-toggle span:last-child {
  top: 21px;
}

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

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

.menu-panel {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 60px;
  align-items: end;
  padding: calc(var(--header-height) + 60px) max(24px, calc((100vw - 1152px) / 2)) 70px;
  background:
    radial-gradient(circle at 75% 85%, rgba(142, 24, 24, 0.34), transparent 32%),
    rgba(3, 3, 3, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 300ms ease, transform 500ms var(--ease);
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.menu-panel nav a {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1;
  transition: color 200ms ease, padding-left 300ms var(--ease);
}

.menu-panel nav a:hover {
  padding-left: 18px;
  color: #a4a4a7;
}

.menu-panel nav span {
  width: 34px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.menu-meta {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--muted);
}

.language-status {
  display: flex;
  gap: 18px;
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  overflow: hidden;
  background: black;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 65%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 45%, #050505 100%);
}

.hero-content {
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 20px;
  color: #a7a7aa;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-heading h2,
.about h2,
.contact h2,
.thank-you-card h1 {
  margin: 0;
  font-size: clamp(3.7rem, 7vw, 6.7rem);
  font-weight: 570;
  letter-spacing: -0.062em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(3.4rem, 5vw, 5.2rem);
}

.hero h1 span,
.section-heading h2,
.about h2,
.contact h2,
.thank-you-card h1 {
  background: linear-gradient(180deg, #fff 15%, #8f8f96 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  margin: 22px 0 26px;
  color: #b4b4b8;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1152px) / 2));
  bottom: 40px;
  display: flex;
  gap: 14px;
  align-items: center;
  color: #a9a9ad;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: white;
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
  transform: translateY(-100%);
}

@keyframes scroll-line {
  50%, 100% { transform: translateY(100%); }
}

.logo-marquee,
.skills-marquee {
  overflow: hidden;
  background: var(--bg);
}

.logo-marquee {
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: logo-marquee 42s linear infinite;
}

.logo-item {
  display: grid;
  width: 190px;
  height: 72px;
  flex: 0 0 190px;
  place-items: center;
  padding: 5px 26px;
}

.logo-item img {
  width: 138px;
  height: 62px;
  max-width: none;
  object-fit: contain;
  opacity: 0.32;
  filter: grayscale(1) brightness(1.9);
  transition: opacity 200ms ease, filter 200ms ease;
}

.logo-item:hover img {
  opacity: 0.82;
  filter: grayscale(1) brightness(2.8);
}

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

.cover-showcase {
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px;
  background:
    radial-gradient(circle at 50% 100%, rgba(97, 15, 15, 0.2), transparent 35%),
    #050505;
}

.section-kicker {
  display: flex;
  width: var(--shell);
  margin: 0 auto 24px;
  justify-content: space-between;
  color: #77777d;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-kicker b {
  margin-left: 6px;
  color: white;
}

.cover-viewport {
  overflow: hidden;
}

.cover-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: cover-marquee 52s linear infinite;
  will-change: transform;
}

.cover-track:hover,
.cover-track:focus-within {
  animation-play-state: paused;
}

@keyframes cover-marquee {
  from { transform: translateX(calc(-50% - 12px)); }
  to { transform: translateX(0); }
}

.cover-card {
  position: relative;
  width: 300px;
  height: 300px;
  flex: 0 0 300px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: #111;
  color: white;
  isolation: isolate;
}

.cover-trigger {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.cover-card::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.72)) border-box;
  content: "";
  pointer-events: none;
}

.cover-card img,
.cover-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 300ms ease;
}

.cover-trigger img,
.cover-card > img {
  width: 100%;
  height: 100%;
}

.cover-card:hover img {
  filter: saturate(1.08) brightness(1.05);
  transform: scale(1.04);
}

.cover-card video {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.cover-card.is-playing video {
  opacity: 1;
  pointer-events: auto;
}

.cover-card.is-playing .cover-trigger {
  opacity: 0;
  pointer-events: none;
}

.cover-card.is-static {
  cursor: default;
}

.cover-play {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  place-items: center;
  transition: transform 250ms var(--ease), background 250ms ease;
}

.cover-card:hover .cover-play {
  background: rgba(0, 0, 0, 0.65);
  transform: scale(1.08);
}

.cover-title {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 16px;
  max-width: 190px;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  text-shadow: 0 1px 8px black;
  white-space: nowrap;
}

.cover-card.is-playing .cover-play,
.cover-card.is-playing .cover-title {
  opacity: 0;
}

.mobile-drag-hint {
  display: none;
}

.section {
  position: relative;
  padding: 130px 0;
  background: var(--bg);
}

.services {
  overflow: hidden;
}

.section-glow,
.about-glow {
  position: absolute;
  pointer-events: none;
}

.section-glow-red {
  top: 260px;
  right: -15vw;
  width: 70vw;
  height: 720px;
  background: radial-gradient(circle, rgba(116, 23, 23, 0.4), transparent 62%);
  filter: blur(35px);
}

.section-heading {
  max-width: 920px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.about h2,
.contact h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.section-heading > p:last-child,
.split-heading p,
.about-copy > p,
.contact .section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.centered > p:last-child {
  max-width: 620px;
  margin: 24px auto 0;
}

.service-list {
  display: grid;
  gap: 20px;
  margin-top: 68px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 138px;
  overflow: hidden;
  padding: 28px 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(100deg, rgba(25, 8, 8, 0.74), rgba(60, 14, 14, 0.54), rgba(14, 14, 15, 0.82));
  transition: border-color 250ms ease, transform 300ms var(--ease);
}

.service-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(221, 52, 52, 0.11), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 400ms ease, transform 700ms var(--ease);
}

.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.service-card:hover::before {
  opacity: 1;
  transform: translateX(50%);
}

.service-icon {
  color: #96969e;
  font-size: 3.2rem;
  line-height: 1;
}

.service-card h3,
.difference-card h3,
.portfolio-card h3 {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 520;
  letter-spacing: -0.02em;
}

.service-card p,
.difference-card p,
.portfolio-card p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.card-index {
  align-self: start;
  color: #68686e;
  font-size: 0.78rem;
}

.skills-marquee {
  padding: 8px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.word-track {
  display: flex;
  width: max-content;
  gap: 28px;
  align-items: center;
  padding: 10px 0;
  color: #b9b9bd;
  font-size: 1rem;
  white-space: nowrap;
}

.word-track i {
  color: #5d1717;
  font-style: normal;
}

.word-track-left {
  animation: word-left 35s linear infinite;
}

.word-track-right {
  animation: word-right 40s linear infinite;
}

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

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

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 90px;
  align-items: start;
}

.split-heading h2 {
  font-size: clamp(2.4rem, 3.5vw, 3.55rem);
}

.split-heading p {
  margin: 0;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
}

.difference-card {
  min-height: 256px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(22, 22, 23, 0.78), rgba(9, 9, 10, 0.92));
  transition: transform 300ms var(--ease), border-color 250ms ease;
}

.difference-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
}

.difference-card > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 9px;
  background: #a1a1a9;
  color: #141416;
  font-weight: 700;
  place-items: center;
}

.work {
  padding-bottom: 160px;
}

.portfolio-list {
  display: grid;
  gap: 24px;
  margin-top: 70px;
}

.portfolio-card {
  position: relative;
  display: block;
  min-height: 275px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  isolation: isolate;
}

.portfolio-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 400ms ease, transform 800ms var(--ease);
}

.portfolio-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.48) 46%, rgba(0, 0, 0, 0.08) 100%);
  content: "";
}

.portfolio-card:hover img {
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.025);
}

.portfolio-card > div {
  display: flex;
  max-width: 490px;
  min-height: 275px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
}

.portfolio-card > div > span {
  margin-bottom: auto;
  color: #9d9da2;
  font-size: 0.75rem;
}

.portfolio-card h3 {
  font-size: 2.1rem;
}

.portfolio-card__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 500;
}

.video-page {
  background: #050505;
}

.video-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: calc(var(--header-height) + 92px) 0 95px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, #0b0b0c 0%, #050505 100%);
  isolation: isolate;
}

.video-hero__glow {
  position: absolute;
  z-index: -1;
  right: -12vw;
  bottom: -35%;
  width: 72vw;
  height: 820px;
  background: radial-gradient(circle, rgba(123, 22, 22, 0.42), transparent 64%);
  filter: blur(40px);
}

.video-hero__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}

.video-hero__copy {
  position: relative;
  z-index: 2;
}

.video-hero h1 {
  margin: 0;
  font-size: clamp(4.3rem, 7.5vw, 7.3rem);
  font-weight: 570;
  letter-spacing: -0.067em;
  line-height: 0.86;
}

.video-hero h1 span {
  background: linear-gradient(180deg, #fff 10%, #77777e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.video-hero__copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.video-hero__collage {
  position: relative;
  min-height: 620px;
}

.video-hero__frame {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: #141415;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.video-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transition: filter 500ms ease, transform 900ms var(--ease);
}

.video-hero__frame:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.025);
}

.video-hero__frame figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.58);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.video-hero__frame--main {
  z-index: 2;
  top: 75px;
  left: 0;
  width: 66%;
  height: 470px;
}

.video-hero__frame--top {
  z-index: 1;
  top: 0;
  right: 0;
  width: 48%;
  height: 270px;
}

.video-hero__frame--bottom {
  z-index: 3;
  right: 2%;
  bottom: 0;
  width: 47%;
  height: 255px;
}

.video-category-nav {
  position: sticky;
  z-index: 80;
  top: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
}

.video-category-nav__inner {
  display: flex;
  min-height: 66px;
  gap: 30px;
  align-items: center;
}

.video-category-nav__inner > span {
  margin-right: auto;
  color: #68686d;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-category-nav a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #8b8b90;
  font-size: 0.83rem;
  white-space: nowrap;
  transition: color 180ms ease;
}

.video-category-nav a:hover,
.video-category-nav a:focus-visible,
.video-category-nav a[aria-current="location"] {
  color: white;
}

.video-category-nav small {
  display: grid;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #707075;
  font-size: 0.64rem;
  place-items: center;
}

.video-category {
  scroll-margin-top: calc(var(--header-height) + 64px);
  padding-block: 130px 150px;
}

.video-category--soft {
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 85% 50%, rgba(99, 18, 18, 0.18), transparent 34%),
    #09090a;
}

.video-category__heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: end;
  margin-bottom: 64px;
}

.video-category__heading h2,
.video-cta h2 {
  margin: 0;
  background: linear-gradient(180deg, #fff 15%, #85858c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  font-weight: 570;
  letter-spacing: -0.062em;
  line-height: 0.92;
}

.video-category__heading > div:last-child > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 20px;
}

.video-card {
  min-width: 0;
}

.video-card button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.video-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #111;
}

.video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: filter 350ms ease, transform 700ms var(--ease);
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.52) 100%);
  transition: background 300ms ease;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  padding-left: 3px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(4, 4, 4, 0.48);
  color: white;
  font-size: 0.9rem;
  opacity: 0;
  place-items: center;
  transform: translate(-50%, -40%);
  transition: opacity 250ms ease, transform 350ms var(--ease), background 250ms ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.video-card__duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 7px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.67rem;
}

.video-card button:hover .video-card__media img,
.video-card button:focus-visible .video-card__media img {
  filter: brightness(0.7) saturate(1.06);
  transform: scale(1.045);
}

.video-card button:hover .video-card__play,
.video-card button:focus-visible .video-card__play {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.video-card button:focus-visible {
  border-radius: 10px;
  outline: 2px solid white;
  outline-offset: 5px;
}

.video-card__copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: start;
  padding-top: 16px;
}

.video-card__number {
  grid-row: 1 / 3;
  padding-top: 4px;
  color: #5f5f64;
  font-size: 0.64rem;
}

.video-card__copy strong {
  overflow: hidden;
  font-size: 1rem;
  font-weight: 520;
  letter-spacing: -0.018em;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.video-card__copy > span:last-child {
  color: #76767b;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.video-card__copy i {
  margin-left: 4px;
  font-style: normal;
}

.video-noscript {
  margin-block: 30px;
  color: var(--muted);
}

.video-noscript a {
  color: white;
  text-decoration: underline;
}

.video-cta {
  position: relative;
  overflow: hidden;
  padding: 145px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #080808;
  text-align: center;
  isolation: isolate;
}

.video-cta__glow {
  position: absolute;
  z-index: -1;
  inset: 8% 15% -55%;
  background: radial-gradient(circle, rgba(125, 22, 22, 0.46), transparent 62%);
  filter: blur(25px);
}

.video-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-cta__inner > p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px auto 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

.video-dialog {
  width: min(1120px, calc(100vw - 44px), 125svh);
  max-width: none;
  max-height: calc(100svh - 34px);
  overflow: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: #080809;
  color: white;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.75);
}

.video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.video-dialog__panel {
  position: relative;
  padding: 18px;
}

.video-dialog__close {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 14px auto;
  padding: 6px 8px;
  border: 0;
  background: transparent;
  color: #a5a5aa;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.video-dialog__close span {
  font-size: 1.7rem;
  font-weight: 200;
  line-height: 0.7;
}

.video-dialog__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: black;
}

.video-dialog__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-dialog__details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 40px;
  align-items: center;
  padding: 24px 8px 8px;
}

.video-dialog__title-group .eyebrow {
  margin-bottom: 7px;
}

.video-dialog__title-group h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.25rem, 2.3vw, 2.15rem);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.video-dialog__count {
  margin: 8px 0 0;
  color: #6d6d73;
  font-size: 0.75rem;
}

.video-dialog__navigation {
  display: flex;
  gap: 10px;
}

.video-dialog__navigation button {
  display: inline-flex;
  min-width: 128px;
  min-height: 48px;
  gap: 15px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #121214;
  color: white;
  transition: border-color 180ms ease, background 180ms ease;
}

.video-dialog__navigation button:hover,
.video-dialog__navigation button:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  background: #1b1b1e;
}

.video-dialog__playlist {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0;
  font-size: 0.78rem;
}

.learn {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.learn-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.learn .section-heading h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.text-link {
  display: inline-flex;
  gap: 16px;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 200ms ease;
}

.text-link:hover {
  border-color: white;
}

.youtube-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #111;
}

.youtube-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about {
  overflow: hidden;
  background: #050505;
}

.about-glow {
  top: 50%;
  left: 50%;
  width: 900px;
  height: 620px;
  background: radial-gradient(circle, rgba(127, 20, 20, 0.38), transparent 62%);
  filter: blur(30px);
  transform: translate(-50%, -50%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.about-copy > p {
  max-width: 560px;
}

.about-copy .button {
  margin-top: 20px;
}

.about-image {
  position: relative;
  height: 650px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(1.5deg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  transform: scale(1.02);
}

.social-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 46px;
  color: var(--muted);
  font-size: 0.9rem;
}

.social-links a:hover {
  color: white;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 140px 0 120px;
  background: #080808;
  isolation: isolate;
}

.contact-video {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  filter: grayscale(0.8) contrast(1.15);
}

.contact-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, #050505 0%, transparent 25%, rgba(0, 0, 0, 0.52) 100%),
    radial-gradient(circle at 50% 60%, rgba(36, 36, 39, 0.35), #050505 75%);
}

.contact .section-heading {
  max-width: 800px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 790px;
  margin: 64px auto 0;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(12, 12, 13, 0.68);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.contact-form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: #d9d9df;
  font-size: 0.88rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span,
.field legend {
  color: #b0b0b5;
  font-size: 0.76rem;
}

.field small {
  color: #6f6f74;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  transition: border-color 200ms ease, background 200ms ease;
}

.field input,
.field select {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
  padding: 14px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #76767b;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.11);
}

.service-options {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  border: 0;
}

.service-options legend {
  width: 100%;
  margin-bottom: 8px;
}

.service-options label {
  cursor: pointer;
}

.service-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.service-options label span {
  display: block;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.service-options input:checked + span {
  background: white;
  color: black;
}

.service-options input:focus-visible + span {
  outline: 2px solid white;
  outline-offset: 3px;
}

.submit-button {
  width: 100%;
  border-color: white;
  background: white;
  color: black;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #d9d9dc;
  color: black;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand img {
  width: 110px;
  height: 70px;
  object-fit: contain;
}

.footer-grid > p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  justify-self: end;
}

.footer-links a:hover {
  color: var(--muted);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: space-between;
  color: #6e6e73;
  font-size: 0.74rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 800ms var(--ease);
}

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

.thank-you-page {
  display: grid;
  min-height: 100svh;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 70%, rgba(120, 20, 20, 0.32), transparent 35%),
    #050505;
  place-items: center;
}

.thank-you-card {
  width: min(720px, 100%);
  padding: 70px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(14, 14, 15, 0.8);
  text-align: center;
}

.thank-you-card > img {
  width: 110px;
  height: 70px;
  margin: 0 auto 34px;
  object-fit: contain;
}

.thank-you-card h1 {
  font-size: clamp(3rem, 7vw, 5rem);
}

.thank-you-card > p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px auto;
  color: var(--muted);
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .section {
    padding: 105px 0;
  }

  .menu-panel {
    grid-template-columns: 1fr;
    align-content: end;
    padding-inline: 28px;
  }

  .menu-meta {
    min-height: auto;
    flex-direction: row;
  }

  .service-card {
    grid-template-columns: 70px 1fr auto;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .difference-card {
    min-height: 220px;
  }

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

  .learn-grid {
    gap: 48px;
  }

  .about-grid {
    gap: 60px;
  }

  .about-image {
    width: min(650px, 100%);
    height: min(720px, 100vw);
    margin: 0 auto;
  }

  .video-hero {
    padding-top: calc(var(--header-height) + 80px);
  }

  .video-hero__layout {
    grid-template-columns: 1fr;
  }

  .video-hero__copy {
    max-width: 620px;
  }

  .video-hero__collage {
    min-height: 520px;
  }

  .video-hero__frame--main {
    width: 62%;
    height: 410px;
  }

  .video-hero__frame--top {
    width: 43%;
    height: 230px;
  }

  .video-hero__frame--bottom {
    width: 44%;
    height: 225px;
  }

  .video-category__heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .video-dialog__details {
    grid-template-columns: 1fr;
  }

  .video-dialog__navigation {
    grid-row: 2;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 62px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
    width: 68px;
  }

  .brand img {
    height: 43px;
  }

  .header-actions {
    grid-column: 2;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-panel {
    display: grid;
  }

  .button-compact {
    display: none;
  }

  .header-language {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.13) 0%, rgba(0, 0, 0, 0.25) 50%, #050505 100%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 110px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 13vw, 4rem);
  }

  .hero-copy br {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .menu-panel nav a {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .menu-meta {
    gap: 30px;
    flex-direction: column;
  }

  .logo-item {
    width: 150px;
    height: 62px;
    flex-basis: 150px;
    padding-inline: 20px;
  }

  .logo-item img {
    width: 110px;
    height: 52px;
  }

  .cover-showcase {
    padding: 48px 0 70px;
  }

  .section-kicker {
    width: var(--shell);
  }

  .section-kicker span:first-child {
    display: none;
  }

  .cover-viewport {
    overflow-x: auto;
    padding: 0 16px 16px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .cover-viewport::-webkit-scrollbar {
    display: none;
  }

  .cover-track {
    animation: none;
  }

  .cover-card {
    width: min(78vw, 320px);
    height: min(78vw, 320px);
    flex-basis: min(78vw, 320px);
    scroll-snap-align: center;
  }

  .cover-card[data-duplicate="true"] {
    display: none;
  }

  .mobile-drag-hint {
    display: block;
    margin: 8px 16px 0;
    color: #65656a;
    font-size: 0.72rem;
    text-align: center;
    text-transform: uppercase;
  }

  .section-heading h2,
  .about h2,
  .contact h2 {
    font-size: clamp(2.65rem, 11.5vw, 3.8rem);
  }

  .section-heading h2 br {
    display: none;
  }

  .service-list {
    margin-top: 48px;
  }

  .service-card {
    grid-template-columns: 1fr auto;
    gap: 18px;
    min-height: 0;
    padding: 25px 22px;
  }

  .service-icon {
    grid-column: 1;
    font-size: 2rem;
  }

  .service-card > div {
    grid-column: 1 / -1;
  }

  .card-index {
    grid-column: 2;
    grid-row: 1;
  }

  .difference-grid {
    margin-top: 50px;
  }

  .portfolio-card {
    min-height: 380px;
  }

  .portfolio-card::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.28) 78%, rgba(0, 0, 0, 0.06) 100%);
  }

  .portfolio-card > div {
    min-height: 380px;
    padding: 28px;
  }

  .learn .section-heading h2 {
    font-size: 3.6rem;
  }

  .about-image {
    height: 118vw;
    max-height: 650px;
  }

  .contact {
    padding: 110px 0 90px;
  }

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

  .field-wide {
    grid-column: 1;
  }

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

  .footer-links {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .footer-bottom {
    gap: 14px;
    flex-direction: column;
  }

  .video-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 74px) 0 70px;
  }

  .video-hero h1 {
    font-size: clamp(4rem, 19vw, 5.5rem);
  }

  .video-hero__copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .video-hero__collage {
    min-height: 390px;
  }

  .video-hero__frame--main {
    top: 35px;
    left: 0;
    width: 78%;
    height: 310px;
  }

  .video-hero__frame--top {
    right: -6%;
    width: 47%;
    height: 170px;
  }

  .video-hero__frame--bottom {
    right: 0;
    width: 48%;
    height: 160px;
  }

  .video-hero__frame figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 7px 8px;
    font-size: 0.55rem;
  }

  .video-category-nav {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .video-category-nav::-webkit-scrollbar {
    display: none;
  }

  .video-category-nav__inner {
    width: max-content;
    min-height: 58px;
    gap: 22px;
    padding-inline: 16px;
  }

  .video-category-nav__inner > span {
    display: none;
  }

  .video-category {
    padding-block: 96px 110px;
  }

  .video-category__heading {
    margin-bottom: 44px;
  }

  .video-category__heading h2,
  .video-cta h2 {
    font-size: clamp(2.7rem, 11.5vw, 3.8rem);
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .video-card__play {
    width: 52px;
    height: 52px;
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .video-card__copy strong {
    font-size: 1.03rem;
  }

  .video-cta {
    padding: 110px 0;
  }

  .video-dialog {
    width: calc(100vw - 12px);
    max-height: calc(100svh - 12px);
    border-radius: 10px;
  }

  .video-dialog__panel {
    padding: 10px;
  }

  .video-dialog__details {
    gap: 20px;
    padding: 20px 6px 8px;
  }

  .video-dialog__navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .video-dialog__navigation button {
    min-width: 0;
  }

  .thank-you-card {
    padding: 48px 24px;
  }
}

@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;
  }

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