:root {
  --black: #080808;
  --black-soft: #111111;
  --white: #f6f6f3;
  --muted: #a8a8a3;
  --line: rgba(255, 255, 255, 0.17);
  --line-dark: rgba(8, 8, 8, 0.18);
  --accent: #ef4b35;
  --pad: 48px;
  --header-height: 82px;
  --content: 1320px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: "Coolvetica", "Coolvetica Rg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
}

.skip-link:focus-visible {
  top: 8px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.97);
  transition: background-color 180ms ease;
}

.home .site-header:not(.is-scrolled):not(.is-open) {
  border-bottom-color: transparent;
  background: transparent;
}

.brand {
  display: block;
  width: 184px;
}

.brand img {
  width: 184px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 12px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(246, 246, 243, 0.77);
}

.site-nav a,
.button,
.work-tile__caption strong {
  font-family: "Coolvetica", "Coolvetica Rg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--accent);
  content: "";
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(8, 8, 8, 0.5);
}

.language-switcher button {
  min-width: 30px;
  height: 27px;
  padding: 0 6px;
  border: 0;
  border-radius: 1px;
  background: transparent;
  color: rgba(246, 246, 243, 0.68);
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher button:hover {
  color: var(--white);
}

.language-switcher button[aria-pressed="true"] {
  background: var(--white);
  color: var(--black);
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.icon-button img,
.button img,
.socials img,
.back-link img {
  filter: brightness(0) invert(1);
}

.menu-button {
  display: none;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid var(--white);
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.button:hover {
  background: var(--white);
  color: var(--black);
}

.button:hover img {
  filter: none;
}

.button--solid {
  border-color: var(--accent);
  background: var(--accent);
}

.button--solid:hover {
  border-color: var(--white);
}

.hero {
  position: relative;
  display: flex;
  height: 88svh;
  min-height: 600px;
  max-height: 900px;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--black) url("/assets/hero.webp") center / cover no-repeat;
}

.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  z-index: -1;
  background: rgba(2, 3, 8, 0.5);
}

.hero__content {
  width: min(720px, 75%);
  padding: 0 var(--pad) 104px;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: 72px;
}

.hero__content > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(246, 246, 243, 0.82);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 30px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-banner {
  position: relative;
  display: grid;
  height: 100svh;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.home-banner__video {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.home-banner__video.is-playing {
  opacity: 1;
}

.home-banner__action {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.home-banner__action .button {
  min-width: 240px;
  min-height: 64px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 18px;
}

.home-banner__action .button:hover {
  background: var(--accent);
  color: var(--white);
}

.home-banner__partners {
  position: absolute;
  right: var(--pad);
  bottom: 50px;
  left: var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.home-banner__partners > span {
  color: rgba(246, 246, 243, 0.78);
  font-size: 13px;
}

.home-banner__partners a {
  display: block;
  width: 170px;
}

.home-banner__partners img {
  width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.home-intro {
  padding: 132px var(--pad);
  border-top: 1px solid var(--line);
  background: var(--black);
}

.home-intro__inner {
  display: grid;
  width: min(100%, var(--content));
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(70px, 9vw, 145px);
  margin: 0 auto;
}

.home-intro__heading h1 {
  max-width: 830px;
  font-size: clamp(50px, 6vw, 86px);
  line-height: 0.98;
}

.home-intro__content {
  align-self: end;
}

.home-intro__content > p {
  color: var(--muted);
  font-size: 14px;
}

.home-intro__content .home-intro__lead {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.55;
}

.home-intro__links {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.home-intro__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Coolvetica", "Coolvetica Rg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}

.home-intro__links a:hover {
  color: var(--accent);
}

.faq {
  padding: 132px var(--pad);
  background: var(--black-soft);
  color: var(--white);
}

.faq__inner {
  display: grid;
  width: min(100%, var(--content));
  grid-template-columns: minmax(260px, 0.78fr) minmax(440px, 1.22fr);
  gap: clamp(70px, 10vw, 160px);
  margin: 0 auto;
}

.faq__intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.faq__intro .eyebrow {
  margin-bottom: 24px;
}

.faq__intro h2 {
  max-width: 470px;
  margin-bottom: 27px;
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 0.98;
}

.faq__intro > p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 15px;
}

.faq__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-family: "Coolvetica", "Coolvetica Rg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
}

.faq__contact img {
  filter: brightness(0) invert(1);
  transition: transform 160ms ease;
}

.faq__contact:hover {
  color: var(--accent);
}

.faq__contact:hover img {
  transform: translate(2px, -2px);
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  display: grid;
  min-height: 92px;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 28px;
  padding: 25px 0;
  list-style: none;
  font-family: "Coolvetica", "Coolvetica Rg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 23px;
  line-height: 1.15;
  cursor: pointer;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary:hover {
  color: var(--accent);
}

.faq__icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq__icon::before,
.faq__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
  max-width: 650px;
  padding: 0 56px 30px 0;
}

.faq__answer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.home-footer {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px var(--pad);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.home-footer .socials {
  margin-left: auto;
}

.statement {
  padding: 112px var(--pad);
  background: var(--white);
  color: var(--black);
}

.statement__inner {
  display: grid;
  width: min(100%, var(--content));
  grid-template-columns: 1fr 4fr;
  gap: 70px;
  margin: 0 auto;
}

.statement h2 {
  max-width: 940px;
  font-size: 43px;
  line-height: 1.12;
}

.statement p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-work,
.page-section {
  padding: 112px var(--pad);
}

.section-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: 48px;
}

.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.text-link:hover {
  color: var(--accent);
}

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

.work-tile {
  display: block;
}

.work-tile__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--black-soft);
}

.work-tile:first-child .work-tile__image {
  aspect-ratio: 16 / 9;
}

.work-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.work-tile:hover .work-tile__image img {
  transform: scale(1.02);
}

.work-tile__caption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 13px;
  border-top: 1px solid transparent;
}

.work-tile__caption strong,
.work-tile__caption span {
  display: block;
}

.work-tile__caption strong {
  font-size: 15px;
}

.work-tile__caption span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.home-cta {
  padding: 120px var(--pad);
  border-top: 1px solid var(--line);
  text-align: center;
}

.home-cta h2 {
  max-width: 740px;
  margin: 0 auto 34px;
  font-size: 52px;
}

.page-hero {
  padding: 184px var(--pad) 92px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 26px;
  font-size: 68px;
}

.page-hero > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.page-visual {
  width: calc(100% - (var(--pad) * 2));
  max-width: var(--content);
  height: 620px;
  margin: 0 auto;
  overflow: hidden;
}

.page-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-row h2 {
  font-size: 29px;
}

.service-row p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-row--linked h2 a {
  display: flex;
  max-width: 330px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-row--linked h2 a:hover {
  color: var(--accent);
}

.detail-hero {
  padding: 150px var(--pad) 92px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 70px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.detail-hero h1 {
  max-width: 980px;
  margin-bottom: 30px;
  font-size: clamp(55px, 7vw, 94px);
  line-height: 0.98;
}

.detail-hero .section-inner > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.detail-section,
.detail-process,
.related-work {
  padding: 112px var(--pad);
}

.detail-section {
  border-top: 1px solid var(--line);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(70px, 10vw, 150px);
}

.detail-copy h2 {
  max-width: 720px;
  margin-bottom: 32px;
  font-size: 48px;
  line-height: 1.05;
}

.detail-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
}

.detail-aside {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--black-soft);
}

.detail-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-aside li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.detail-process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black-soft);
}

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

.process-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
}

.process-grid article > span {
  display: block;
  margin-bottom: 64px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
}

.process-grid h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.related-grid--single {
  grid-template-columns: minmax(280px, 0.5fr);
}

.related-grid a {
  display: block;
}

.related-grid--text a {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--black-soft);
  transition: border-color 180ms ease, transform 180ms ease;
}

.related-grid--text a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.related-grid strong,
.related-grid span {
  display: block;
}

.related-grid strong {
  font-family: "Coolvetica", "Coolvetica Rg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 19px;
}

.related-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.case-study-index {
  padding: 96px var(--pad) 120px;
  border-top: 1px solid var(--line);
}

.case-hero h1 {
  max-width: 1120px;
}

.case-player,
.showreel-stage {
  width: calc(100% - (var(--pad) * 2));
  max-width: var(--content);
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}

.case-player {
  aspect-ratio: 16 / 9;
}

.case-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.case-player--poster a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.case-player--poster > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.case-player--poster a:hover > img {
  transform: scale(1.015);
}

.case-player__action {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border: 1px solid rgba(246, 246, 243, 0.75);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.88);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.case-player__action img {
  filter: brightness(0) invert(1);
}

.case-player--poster a:hover .case-player__action {
  border-color: var(--accent);
  background: var(--accent);
}

.case-facts {
  align-self: start;
}

.case-facts dl {
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}

.case-facts dl div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.case-facts dt {
  color: var(--muted);
}

.case-facts dd {
  margin: 0;
}

.case-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.case-pagination a {
  min-height: 170px;
  padding: 48px var(--pad);
  border-right: 1px solid var(--line);
}

.case-pagination a:last-child {
  border-right: 0;
  text-align: right;
}

.case-pagination span,
.case-pagination strong {
  display: block;
}

.case-pagination span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.case-pagination strong {
  font-family: "Coolvetica", "Coolvetica Rg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
}

.case-pagination a:hover strong {
  color: var(--accent);
}

.showreel-stage video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.showreel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.showreel-page .detail-aside a:hover {
  color: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 20px;
}

.work-grid .work-tile__image {
  aspect-ratio: 16 / 10;
}

.work-grid .work-tile:nth-child(3n + 1) {
  grid-column: 1 / -1;
}

.work-grid .work-tile:nth-child(3n + 1) .work-tile__image {
  aspect-ratio: 21 / 9;
}

.references-section {
  padding-top: 26px;
}

.reference-toolbar {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reference-toolbar > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.reference-toolbar > p strong {
  margin-right: 4px;
  color: var(--white);
  font-family: "Coolvetica", "Coolvetica Rg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.reference-filters {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.reference-filters button {
  min-height: 38px;
  padding: 8px 15px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: "Coolvetica", "Coolvetica Rg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  cursor: pointer;
}

.reference-filters button:first-child {
  border-left: 0;
}

.reference-filters button:hover {
  color: var(--white);
}

.reference-filters button[aria-pressed="true"] {
  background: var(--white);
  color: var(--black);
}

.reference-grid {
  counter-reset: reference-card;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px 20px;
}

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

.reference-card[hidden] {
  display: none;
}

.reference-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--black-soft);
}

.reference-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.reference-card--playable {
  cursor: pointer;
}

.reference-card--playable:hover .reference-card__media > img,
.reference-card--playable:focus-visible .reference-card__media > img {
  transform: scale(1.02);
}

.reference-card__play {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(246, 246, 243, 0.7);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.82);
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.reference-card__play img {
  filter: brightness(0) invert(1);
  transform: translateX(1px);
}

.reference-card--playable:hover .reference-card__play,
.reference-card--playable:focus-visible .reference-card__play {
  border-color: var(--accent);
  background: var(--accent);
  transform: scale(1.05);
}

.reference-card__body {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.reference-card__number,
.reference-card time,
.reference-card__category {
  color: var(--muted);
  font-size: 10px;
}

.reference-card__number {
  font-size: 0;
}

.reference-card__number::after {
  content: counter(reference-card, decimal-leading-zero);
  font-size: 10px;
}

.reference-card__category {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}

.reference-card__title {
  display: block;
  font-family: "Coolvetica", "Coolvetica Rg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.08;
}

.reference-card__subtitle {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.reference-card__credits {
  display: block;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(246, 246, 243, 0.12);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.reference-card__credits strong {
  color: var(--white);
  font-weight: 500;
}

.reference-card--playable:hover .reference-card__title,
.reference-card--playable:focus-visible .reference-card__title {
  color: var(--accent);
}

.is-video-open,
.is-callback-open {
  overflow: hidden;
}

.video-dialog {
  width: min(1120px, calc(100% - 36px));
  max-width: none;
  max-height: calc(100dvh - 36px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(246, 246, 243, 0.28);
  border-radius: 4px;
  background: var(--black-soft);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.video-dialog:not([open]) {
  display: none;
}

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

.video-dialog__surface {
  background: var(--black-soft);
}

.video-dialog__header,
.video-dialog__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 24px;
}

.video-dialog__header .eyebrow {
  margin-bottom: 8px;
}

.video-dialog__header h2 {
  font-size: 28px;
  line-height: 1.1;
}

.video-dialog__close {
  flex: 0 0 auto;
}

.video-dialog__frame {
  background: #000;
}

.video-dialog__frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.video-dialog__footer {
  border-top: 1px solid var(--line);
}

.video-dialog__copy {
  max-width: 760px;
}

.video-dialog__footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.video-dialog__footer .video-dialog__credits {
  margin-top: 9px;
  color: var(--white);
  line-height: 1.5;
}

.video-dialog__footer .button {
  flex: 0 0 auto;
}

.callback-prompt {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  width: min(360px, calc(100% - 48px));
  padding: 24px;
  visibility: hidden;
  border: 1px solid rgba(246, 246, 243, 0.28);
  border-radius: 4px;
  background: var(--black-soft);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.callback-prompt.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.callback-prompt__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 34px;
  height: 34px;
  border-color: var(--line);
}

.callback-prompt .eyebrow {
  margin-bottom: 10px;
  padding-right: 42px;
}

.callback-prompt h2 {
  max-width: 285px;
  margin-bottom: 14px;
  font-size: 29px;
  line-height: 1.05;
}

.callback-prompt > p:not(.eyebrow) {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}

.callback-prompt > .button {
  width: 100%;
}

.callback-dialog {
  width: min(520px, calc(100% - 36px));
  max-width: none;
  max-height: calc(100dvh - 36px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(246, 246, 243, 0.28);
  border-radius: 4px;
  background: var(--black-soft);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.callback-dialog:not([open]) {
  display: none;
}

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

.callback-dialog__surface {
  padding: 28px;
}

.callback-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.callback-dialog__header .eyebrow {
  margin-bottom: 8px;
}

.callback-dialog__header h2 {
  font-size: 31px;
  line-height: 1.1;
}

.callback-dialog__close {
  flex: 0 0 auto;
}

.callback-dialog__intro {
  margin: 22px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.film-list {
  border-top: 1px solid var(--line);
}

.film-row {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
  min-height: 550px;
  border-bottom: 1px solid var(--line);
}

.film-row__image {
  position: relative;
  display: block;
  width: 100%;
  min-height: 550px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--black-soft);
  color: inherit;
  text-align: left;
}

.film-row__image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.film-row__play {
  cursor: pointer;
}

.film-row__play:hover > img,
.film-row__play:focus-visible > img {
  transform: scale(1.02);
}

.film-row__play:hover .film-row__play-icon,
.film-row__play:focus-visible .film-row__play-icon {
  border-color: var(--accent);
  background: var(--accent);
  transform: scale(1.05);
}

.film-row__play:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.film-row__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 70px;
}

.film-row__body h2 {
  margin-bottom: 24px;
  font-size: 43px;
}

.film-row__body > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
}

.film-row dl {
  margin: 24px 0 0;
}

.film-row dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.film-row dt {
  color: var(--muted);
}

.film-row dd {
  margin: 0;
}

.film-row:nth-child(even) .film-row__image {
  order: 2;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 20px;
}

.upcoming-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
}

.upcoming-item__body {
  padding: 20px 0 0;
}

.upcoming-item h2 {
  margin: 8px 0 15px;
  font-size: 30px;
}

.upcoming-item p {
  max-width: 610px;
  color: var(--muted);
  font-size: 14px;
}

.team-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 110px;
}

.team-intro img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.team-intro h2 {
  margin-bottom: 30px;
  font-size: 48px;
}

.team-intro p {
  max-width: 600px;
  color: var(--muted);
}

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

.team-grid--single {
  max-width: 520px;
  grid-template-columns: 1fr;
}

.person img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1);
}

.person__body {
  padding-top: 18px;
}

.person h2 {
  margin-bottom: 7px;
  font-size: 23px;
}

.person strong {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 10px;
  text-transform: uppercase;
}

.person p {
  color: var(--muted);
  font-size: 13px;
}

.responsibility {
  margin-top: 110px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.responsibility h2 {
  max-width: 720px;
  margin-bottom: 45px;
  font-size: 43px;
}

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

.responsibility__grid article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.responsibility__grid h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.responsibility__grid p {
  color: var(--muted);
  font-size: 13px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.contact-copy h2 {
  margin-bottom: 28px;
  font-size: 43px;
}

.contact-copy > p {
  max-width: 490px;
  margin-bottom: 46px;
  color: var(--muted);
}

.contact-person {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-person strong,
.contact-person a,
.contact-person address span {
  display: block;
}

.contact-person strong {
  margin-bottom: 7px;
  font-size: 13px;
}

.contact-person a {
  color: var(--muted);
  font-size: 12px;
}

.contact-person address {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.contact-person a:hover {
  color: var(--white);
}

.callback-button {
  margin-top: 28px;
}

.inquiry-form,
.callback-form {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.inquiry-form label,
.callback-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.callback-form input {
  width: 100%;
  min-height: 48px;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
}

.inquiry-form select {
  color-scheme: dark;
}

.inquiry-form textarea {
  min-height: 130px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus,
.callback-form input:focus {
  border-color: var(--accent);
}

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

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-status {
  margin: 0;
  font-size: 11px;
}

.form-status.is-error {
  color: #ff9a8d;
}

.inquiry-form .button:disabled,
.callback-form .button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.site-footer {
  padding: 72px var(--pad) 28px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  width: min(100%, var(--content));
  grid-template-columns: 1.2fr 1fr auto;
  gap: 60px;
  margin: 0 auto;
}

.footer-brand img {
  width: 260px;
}

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

.partners {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.partners span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.partners a:hover {
  text-decoration: underline;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  width: min(100%, var(--content));
  align-items: center;
  justify-content: space-between;
  margin: 56px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 30px;
}

.error-page main {
  max-width: 740px;
}

.error-page main > img {
  width: 260px;
  margin-bottom: 70px;
}

.error-page .language-switcher {
  width: max-content;
  margin-bottom: 24px;
}

.error-page h1 {
  margin-bottom: 30px;
  font-size: 54px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1050px) {
  :root {
    --pad: 30px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 58px;
  }

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

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

  .featured-grid .work-tile:first-child {
    grid-column: 1 / -1;
  }

  .contact-layout {
    gap: 60px;
  }

  .faq__inner {
    gap: 70px;
  }

  .home-intro__inner {
    gap: 70px;
  }

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

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

  .brand,
  .brand img {
    width: 154px;
  }

  .menu-button {
    display: inline-grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    height: calc(100svh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 35px var(--pad);
    background: var(--black);
  }

  .site-nav .language-switcher {
    align-self: flex-start;
    margin-top: 25px;
  }

  .site-nav .language-switcher button {
    min-width: 42px;
    height: 36px;
    font-size: 11px;
  }

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

  .site-nav a {
    padding: 13px 0;
    border-top: 1px solid var(--line);
    font-size: 22px;
  }

  .hero {
    height: 86svh;
    min-height: 0;
  }

  .hero__content {
    width: 100%;
    padding-bottom: 82px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 50px;
  }

  .hero__scroll {
    bottom: 20px;
  }

  .statement,
  .home-work,
  .page-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .statement__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .page-hero {
    padding-top: 148px;
    padding-bottom: 70px;
  }

  .page-visual {
    height: 460px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-row p {
    grid-column: 1;
  }

  .film-row,
  .team-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .film-row__image,
  .film-row {
    min-height: 0;
  }

  .film-row__image {
    height: 480px;
  }

  .film-row:nth-child(even) .film-row__image {
    order: 0;
  }

  .film-row__body {
    padding: 48px 0;
  }

  .team-intro {
    gap: 45px;
  }

  .team-intro img {
    height: 480px;
  }

  .contact-layout {
    gap: 70px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .detail-section,
  .detail-process,
  .related-work,
  .case-study-index {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .faq {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .faq__intro {
    position: static;
  }

  .faq__intro h2 {
    max-width: 560px;
  }

  .home-intro {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .home-intro__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-intro__content {
    max-width: 650px;
  }

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

  .socials {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero__content > p:not(.eyebrow),
  .page-hero > p:not(.eyebrow) {
    font-size: 15px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .section-head h2,
  .home-cta h2,
  .team-intro h2,
  .responsibility h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .featured-grid,
  .work-grid,
  .reference-grid,
  .upcoming-grid,
  .team-grid,
  .responsibility__grid {
    grid-template-columns: 1fr;
  }

  .reference-toolbar {
    align-items: stretch;
    flex-direction: column;
    padding: 16px 0;
  }

  .reference-grid {
    gap: 44px;
  }

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

  .reference-filters button:nth-child(3) {
    border-left: 0;
  }

  .reference-filters button:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .video-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .video-dialog__header,
  .video-dialog__footer {
    padding: 16px;
  }

  .video-dialog__header h2 {
    font-size: 22px;
  }

  .video-dialog__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .video-dialog__footer .button {
    width: 100%;
  }

  .callback-prompt {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    width: auto;
    padding: 20px;
  }

  .callback-prompt h2 {
    max-width: calc(100% - 32px);
    font-size: 26px;
  }

  .callback-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .callback-dialog__surface {
    padding: 20px;
  }

  .callback-dialog__header h2 {
    font-size: 26px;
  }

  .callback-form .form-submit {
    align-items: stretch;
  }

  .callback-form .button {
    width: 100%;
  }

  .work-grid .work-tile:nth-child(3n + 1) {
    grid-column: auto;
  }

  .work-grid .work-tile:nth-child(3n + 1) .work-tile__image,
  .work-grid .work-tile__image {
    aspect-ratio: 4 / 3;
  }

  .page-visual {
    height: 360px;
  }

  .film-row__image {
    height: 400px;
  }

  .film-row__body h2 {
    font-size: 36px;
  }

  .film-row dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .team-intro img {
    height: 390px;
  }

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

  .detail-hero {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .breadcrumbs {
    margin-bottom: 48px;
  }

  .detail-hero h1 {
    font-size: 46px;
  }

  .detail-hero .section-inner > p:not(.eyebrow) {
    font-size: 15px;
  }

  .detail-copy h2 {
    font-size: 36px;
  }

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

  .process-grid article {
    min-height: 210px;
  }

  .case-player,
  .showreel-stage {
    width: 100%;
  }

  .case-facts dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .case-pagination {
    grid-template-columns: 1fr;
  }

  .case-pagination a {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-pagination a:last-child {
    border-bottom: 0;
    text-align: left;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .socials {
    grid-column: auto;
  }

  .home-banner {
    min-height: 650px;
  }

  .home-banner__action {
    top: 63%;
  }

  .home-banner__action .button {
    min-width: 190px;
    min-height: 54px;
    font-size: 16px;
  }

  .home-banner__partners {
    right: 18px;
    bottom: 34px;
    left: 18px;
    gap: 20px;
  }

  .home-banner__partners a {
    width: 100px;
  }

  .home-banner__partners > span {
    font-size: 10px;
    text-align: center;
  }

  .faq {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .faq__inner {
    gap: 52px;
  }

  .faq__intro h2 {
    font-size: 43px;
  }

  .faq__item summary {
    min-height: 82px;
    gap: 18px;
    font-size: 20px;
  }

  .faq__answer {
    padding-right: 46px;
  }

  .home-intro {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .home-intro__heading h1 {
    font-size: 43px;
  }

  .home-intro__content .home-intro__lead {
    font-size: 16px;
  }

  .home-footer {
    flex-wrap: wrap;
  }
}

/* Audio plug-in storefront */
.plugin-shell {
  width: min(calc(100% - (var(--pad) * 2)), var(--content));
  margin: 0 auto;
}

.plugin-hero {
  display: flex;
  min-height: 660px;
  align-items: flex-end;
  padding: 180px 0 110px;
  background:
    radial-gradient(circle at 80% 24%, rgba(255, 255, 255, 0.11), transparent 28%),
    linear-gradient(135deg, #080808 0%, #171717 52%, #050505 100%);
}

.plugin-hero h1 {
  max-width: 1000px;
  margin-bottom: 30px;
  font-size: clamp(64px, 9vw, 132px);
  letter-spacing: -0.025em;
}

.plugin-hero .plugin-shell > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(246, 246, 243, 0.72);
  font-size: 20px;
}

.plugin-directory {
  padding: 120px 0 132px;
  background: var(--white);
  color: var(--black);
}

.plugin-section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) 2fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 60px;
}

.plugin-section-heading .eyebrow {
  margin-bottom: 4px;
}

.plugin-section-heading h2,
.plugin-trust h2,
.product-overview h2,
.product-specs h2,
.product-license h2 {
  font-size: clamp(44px, 5.6vw, 78px);
  letter-spacing: -0.018em;
}

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

.plugin-card {
  position: relative;
  display: flex;
  min-height: 520px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111;
  color: var(--white);
}

.plugin-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.14), transparent 36%);
  content: "";
  pointer-events: none;
}

.plugin-card--cinespacer {
  background: linear-gradient(150deg, #252927, #0d0f0e 62%);
}

.plugin-card--compare {
  background: linear-gradient(150deg, #3e3e3c, #101010 64%);
}

.plugin-card__top,
.plugin-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.plugin-card__index,
.plugin-card__kind,
.plugin-card__footer {
  color: rgba(246, 246, 243, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plugin-status {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(246, 246, 243, 0.32);
  border-radius: 999px;
  color: rgba(246, 246, 243, 0.82);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.plugin-card__body {
  position: relative;
  z-index: 1;
  margin: auto 0;
  padding: 80px 0 48px;
}

.plugin-card__kind {
  margin-bottom: 15px;
}

.plugin-card h3 {
  margin-bottom: 18px;
  font-size: clamp(43px, 4.3vw, 66px);
  letter-spacing: -0.02em;
}

.plugin-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.plugin-card__body > p:last-child {
  max-width: 340px;
  margin-bottom: 0;
  color: rgba(246, 246, 243, 0.7);
  font-size: 14px;
}

.plugin-card__footer {
  padding-top: 20px;
  border-top: 1px solid rgba(246, 246, 243, 0.18);
}

.plugin-card__footer a {
  position: relative;
  z-index: 2;
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
}

.plugin-trust,
.product-license {
  padding: 118px 0;
  border-top: 1px solid var(--line);
}

.plugin-trust__grid,
.product-license__grid,
.product-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}

.plugin-trust__grid > div:last-child,
.product-license__grid > div:last-child {
  max-width: 590px;
  align-self: end;
  color: var(--muted);
  font-size: 18px;
}

.plugin-trust .text-link,
.product-license .text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--white);
}

.plugin-back {
  display: inline-block;
  margin-bottom: 70px;
  color: rgba(246, 246, 243, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.plugin-back:hover {
  color: var(--white);
}

.product-hero {
  min-height: 760px;
  padding: 145px 0 88px;
  background:
    radial-gradient(circle at 14% 76%, rgba(255, 255, 255, 0.08), transparent 31%),
    linear-gradient(145deg, #080808, #191919 62%, #060606);
}

.product-hero--cinespacer {
  background:
    radial-gradient(circle at 18% 78%, rgba(143, 164, 149, 0.16), transparent 34%),
    linear-gradient(145deg, #080a09, #202522 62%, #070807);
}

.product-hero--compare {
  background:
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.13), transparent 34%),
    linear-gradient(145deg, #090909, #30302e 62%, #090909);
}

.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.62fr);
  align-items: end;
  gap: 8vw;
}

.product-hero h1 {
  margin-bottom: 27px;
  font-size: clamp(72px, 10vw, 148px);
  letter-spacing: -0.03em;
}

.product-hero__lead {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(246, 246, 243, 0.74);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.4;
}

.product-purchase {
  padding: 26px;
  border: 1px solid rgba(246, 246, 243, 0.22);
  background: rgba(8, 8, 8, 0.5);
  backdrop-filter: blur(16px);
}

.product-purchase > div:first-child {
  display: flex;
  min-height: 60px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.product-purchase strong {
  color: var(--white);
  font-size: 13px;
  text-align: right;
}

.product-purchase .button {
  width: 100%;
  margin-top: 9px;
}

.button:disabled,
.button[aria-disabled="true"] {
  border-color: rgba(246, 246, 243, 0.28);
  background: rgba(246, 246, 243, 0.08);
  color: rgba(246, 246, 243, 0.48);
  cursor: not-allowed;
}

.button:disabled:hover,
.button[aria-disabled="true"]:hover {
  border-color: rgba(246, 246, 243, 0.28);
  background: rgba(246, 246, 243, 0.08);
  color: rgba(246, 246, 243, 0.48);
}

.product-purchase__status {
  margin: 18px 0 0;
  color: rgba(246, 246, 243, 0.56);
  font-size: 11px;
  line-height: 1.55;
}

.product-purchase__status.is-error {
  color: #ff9d8f;
}

.product-overview {
  padding: 124px 0;
  background: var(--white);
  color: var(--black);
}

.product-copy {
  max-width: 610px;
}

.product-copy > p {
  color: rgba(8, 8, 8, 0.67);
  font-size: 18px;
}

.product-feature-list {
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.product-feature-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 600;
}

.product-feature-list span {
  color: rgba(8, 8, 8, 0.42);
  font-size: 10px;
  font-weight: 700;
}

.product-specs {
  padding: 112px 0 124px;
  background: var(--black-soft);
}

.product-specs__heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 58px;
}

.product-specs__heading .eyebrow {
  margin-bottom: 5px;
}

.product-specs__grid {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-specs__grid div {
  min-height: 130px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-specs dt {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 0;
  font-family: "Coolvetica", "Coolvetica Rg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 23px;
  line-height: 1.1;
}

.plugin-success {
  display: grid;
  min-height: calc(100svh - 120px);
  padding: 160px var(--pad) 100px;
  place-items: center;
  background: radial-gradient(circle at 50% 35%, #262626, #080808 62%);
}

.plugin-success__inner {
  width: min(100%, 760px);
  text-align: center;
}

.plugin-success h1 {
  margin-bottom: 28px;
  font-size: clamp(72px, 11vw, 142px);
}

.plugin-success__inner > p:not(.eyebrow) {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(246, 246, 243, 0.72);
  font-size: 19px;
}

.plugin-success .plugin-success__note {
  color: var(--muted);
  font-size: 13px;
}

.plugin-success .hero__actions {
  justify-content: center;
  margin-top: 34px;
}

@media (max-width: 1050px) {
  .plugin-grid {
    grid-template-columns: 1fr;
  }

  .plugin-card {
    min-height: 420px;
  }

  .plugin-card h3 {
    font-size: 62px;
  }

  .product-hero__grid {
    grid-template-columns: 1fr;
  }

  .product-purchase {
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  .plugin-hero {
    min-height: 570px;
    padding-top: 150px;
    padding-bottom: 76px;
  }

  .plugin-hero h1 {
    font-size: 58px;
  }

  .plugin-hero .plugin-shell > p:last-child,
  .plugin-trust__grid > div:last-child,
  .product-license__grid > div:last-child,
  .product-copy > p {
    font-size: 16px;
  }

  .plugin-directory,
  .product-overview,
  .product-specs,
  .plugin-trust,
  .product-license {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .plugin-section-heading,
  .plugin-trust__grid,
  .product-license__grid,
  .product-overview__grid,
  .product-specs__heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .plugin-section-heading h2,
  .plugin-trust h2,
  .product-overview h2,
  .product-specs h2,
  .product-license h2 {
    font-size: 43px;
  }

  .plugin-card {
    min-height: 390px;
    padding: 22px;
  }

  .plugin-card h3 {
    font-size: 47px;
  }

  .plugin-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-hero {
    min-height: auto;
    padding-top: 125px;
    padding-bottom: 72px;
  }

  .plugin-back {
    margin-bottom: 52px;
  }

  .product-hero h1 {
    font-size: 64px;
  }

  .product-purchase {
    padding: 20px;
  }

  .product-specs__grid {
    grid-template-columns: 1fr;
  }

  .product-specs__grid div {
    min-height: 105px;
  }

  .plugin-success {
    padding-right: 20px;
    padding-left: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

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

  .hero__video,
  .home-banner__video {
    display: none;
  }
}
