/* =========================================================
   THE LINE / Apex themed homepage
   Editable: brand colors and spacing live in :root below
   ========================================================= */

:root {
  --color-red: #da292a;
  --color-black: #0b0b0b;
  --color-white: #f4f4f4;
  --color-grey: #1a1c1f;
  --color-grey-light: #e8e9ee;
  --color-cream: #f0ebe3;
  --font: DenimWeb, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.14, 1, 0.34, 1);
  --gutter: 0.8rem;
}

@media (min-width: 1024px) {
  :root {
    --gutter: 0.46296vw;
  }
}

@font-face {
  font-family: DenimWeb;
  font-style: normal;
  font-weight: 300 800;
  src: url("../fonts/DenimVF.woff2") format("woff2");
  font-display: swap;
}

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

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  background-color: var(--color-grey);
  color: var(--color-black);
  font-family: var(--font);
  font-feature-settings: "ss03" on;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  overflow-x: hidden;
  min-height: 100%;
}

body.theme-apex {
  background-color: #121417;
}

body.is-loading {
  overflow: hidden;
}

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

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

button {
  background: none;
  border: none;
  color: currentColor;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

.gutters {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 var(--gutter);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(9, 1fr);
  }
}

/* ---------- Type ---------- */
.ttu {
  text-transform: uppercase;
}

.fw300 {
  font-weight: 300;
}

.fw440 {
  font-weight: 440;
}

.fw470 {
  font-weight: 470;
}

.slash-light em,
.slash-light i {
  font-style: normal;
  font-weight: 300;
}

.h1 {
  font-size: 7.2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.8;
}

.h2 {
  font-size: 4rem;
  font-weight: 440;
  letter-spacing: -0.03em;
  line-height: 0.85;
}

.h2--s {
  font-size: 3.4rem;
  font-weight: 440;
  letter-spacing: -0.04em;
  line-height: 0.8;
}

.h3 {
  font-size: 3.2rem;
  font-weight: 470;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

.h5 {
  font-size: 3.2rem;
  font-weight: 440;
  letter-spacing: -0.03em;
  line-height: 0.85;
}

.p1 {
  font-size: 2.4rem;
  font-weight: 440;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

.p2 {
  font-size: 2.4rem;
  font-weight: 470;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.p5 {
  font-size: 2rem;
  font-weight: 440;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.p6 {
  font-size: 1.6rem;
  font-weight: 440;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.p7 {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1667;
}

.p4 {
  font-size: 1.4rem;
  font-weight: 470;
  letter-spacing: -0.01em;
  line-height: 0.85;
}

@media (min-width: 1024px) {
  .h1 {
    font-size: 12.15278vw;
  }

  .h2 {
    font-size: 7.40741vw;
    font-weight: 470;
  }

  .h2--s {
    font-size: 5.55556vw;
    font-weight: 470;
  }

  .h3 {
    font-size: 3.7037vw;
  }

  .h5 {
    font-size: 2.31481vw;
  }

  .p1 {
    font-size: 1.85185vw;
    font-weight: 470;
    line-height: 1.1;
  }

  .p2 {
    font-size: 1.62037vw;
  }

  .p5 {
    font-size: 1.15741vw;
  }

  .p6 {
    font-size: 0.92593vw;
  }

  .p7 {
    font-size: 0.69444vw;
  }

  .p4 {
    font-size: 1.27315vw;
    font-weight: 440;
  }
}

.section-title {
  color: currentColor;
  display: flex;
  padding-bottom: 1.6rem;
}

@media (min-width: 1024px) {
  .section-title {
    padding-bottom: 0.92593vw;
  }
}

/* ---------- Dot ---------- */
.dot {
  display: inline-flex;
  position: relative;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
}

.dot--filled::before {
  opacity: 1;
}

.dot--8 {
  width: 0.8rem;
  height: 0.8rem;
}

.dot--15 {
  width: 1rem;
  height: 1rem;
}

.dot--red {
  color: var(--color-red);
}

.dot--white {
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .dot--8 {
    width: 0.46296vw;
    height: 0.46296vw;
  }

  .dot--15 {
    width: 0.86806vw;
    height: 0.86806vw;
  }
}

/* ---------- Arrow link ---------- */
.arrow-link {
  align-items: center;
  color: currentColor;
  cursor: pointer;
  display: inline-flex;
  position: relative;
}

.arrow-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 0.1rem;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.8s var(--ease-out);
}

.arrow-link__label {
  display: flex;
  position: relative;
  transition: transform 0.8s var(--ease-out);
}

.arrow-link__svg {
  height: 1.8rem;
  width: 2rem;
  margin-left: 3.2rem;
  flex-shrink: 0;
  transition: transform 0.8s var(--ease-out);
}

.arrow-link__svg--clone {
  display: none;
}

.arrow-link__count {
  font-size: 0.8rem;
  font-weight: 440;
  margin-left: 0.3rem;
  position: relative;
  top: -0.6rem;
}

@media (min-width: 1024px) {
  .arrow-link::after {
    bottom: -0.23148vw;
  }

  .arrow-link__svg {
    height: 1.04167vw;
    width: 1.15741vw;
    margin-left: 1.50463vw;
  }

  .arrow-link__count {
    position: absolute;
    right: -1.38889vw;
    top: 0;
    margin-left: 0;
  }

  .arrow-link__svg--clone {
    display: flex;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -0.52083vw;
    margin-left: 0;
    opacity: 0;
    transform: translateX(-100%);
  }

  .arrow-link:hover::after {
    transform: scaleX(0);
    transform-origin: right;
  }

  .arrow-link:hover .arrow-link__label {
    transform: translateX(2.5463vw);
  }

  .arrow-link:hover .arrow-link__svg--main {
    transform: translateX(100%);
  }

  .arrow-link:hover .arrow-link__svg--clone {
    transform: translateX(0);
    opacity: 1;
  }
}

.arrow-link--full-length {
  width: 100%;
  justify-content: space-between;
}

.arrow-link--full-length .arrow-link__svg--main {
  margin-left: auto;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0.8rem;
  z-index: 600;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.4s ease, color 0.6s var(--ease-out);
  pointer-events: none;
}

.header.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.header.is-dark {
  color: var(--color-black);
}

.header.is-nav-open {
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .header {
    top: 0.46296vw;
  }
}

.header-logo {
  display: flex;
  grid-column: 1 / span 4;
  z-index: 600;
  position: relative;
}

@media (min-width: 1024px) {
  .header-logo {
    grid-column-end: span 2;
  }
}

.header-logo__link {
  display: flex;
  height: 2.2rem;
  width: 12.6rem;
  color: currentColor;
}

.header-logo__text {
  align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
  width: auto;
}

@media (min-width: 1024px) {
  .header-logo__link {
    height: 1.27315vw;
    width: 7.29167vw;
  }

  .header-logo__text {
    font-size: 1.4vw;
    height: auto;
    width: auto;
  }
}

.header-logo__svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.header-status {
  display: flex;
  align-items: baseline;
  column-gap: 0.4rem;
}

@media (max-width: 1023px) {
  .header-status {
    position: absolute;
    left: 0.8rem;
    top: calc(100% + 0.5rem);
  }
}

@media (min-width: 1024px) {
  .header-status {
    grid-column: 3 / span 1;
    column-gap: 0.28935vw;
  }
}

.header-location {
  display: none;
}

@media (min-width: 1024px) {
  .header-location {
    display: flex;
    grid-column: 4 / span 1;
    position: relative;
  }

  .header-location__email {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.4s ease;
  }

  .header-location:hover .header-location__label {
    opacity: 0;
  }

  .header-location:hover .header-location__email {
    opacity: 1;
  }
}

.nav-toggle {
  position: absolute;
  right: 0.8rem;
  top: 0;
  z-index: 600;
  color: currentColor;
  display: flex;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__svg--burger {
  height: 1.4rem;
  width: 5.2rem;
  fill: currentColor;
}

.nav-toggle__svg--close {
  height: 2.2rem;
  width: 5rem;
  fill: currentColor;
  position: absolute;
  left: calc(50% - 2.5rem);
  top: calc(50% - 1.1rem);
  opacity: 0;
}

.header.is-nav-open .nav-toggle__svg--burger {
  opacity: 0;
}

.header.is-nav-open .nav-toggle__svg--close {
  opacity: 1;
}

.nav {
  z-index: 500;
}

@media (max-width: 1023px) {
  .nav {
    position: fixed;
    inset: 0;
    background: var(--color-grey);
    color: var(--color-white);
    pointer-events: none;
    transform: translate(20%, -110%) rotate(8deg);
    transition: transform 0.8s cubic-bezier(0.9, 0, 0.1, 1);
  }

  .nav.is-open {
    pointer-events: all;
    transform: translate(0) rotate(0);
    transition-timing-function: var(--ease-in-out);
  }

  .nav__wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transform: translate(30%, -80%) rotate(14deg);
    transition: transform 0.8s cubic-bezier(0.9, 0, 0.1, 1);
  }

  .nav.is-open .nav__wrapper {
    transform: none;
    transition-delay: 0.1s;
    transition-timing-function: var(--ease-in-out);
  }

  .nav__wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-red);
  }

  .nav__list {
    display: flex;
    flex-direction: column;
    padding: 7rem 0.8rem;
    row-gap: 0.2rem;
    position: relative;
    z-index: 1;
  }

  .nav-item {
    font-size: 4.6rem;
    font-weight: 470;
    letter-spacing: -0.03em;
    line-height: 0.8;
  }

  .nav-item__slash {
    display: none;
  }

  .nav__contact {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding: 0 0.8rem 1.3rem;
    row-gap: 1.4rem;
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    grid-column: 5 / span 5;
    justify-content: flex-end;
    margin-right: 0.46296vw;
  }

  .nav__wrapper {
    display: flex;
    justify-content: flex-end;
  }

  .nav__list {
    display: flex;
    flex-direction: row;
  }

  .nav__contact {
    display: none;
  }

  .nav-item {
    display: flex;
    align-items: baseline;
  }

  .nav-item__slash {
    display: flex;
    padding: 0 0.2em;
  }

  .nav-item__link {
    display: flex;
    align-items: baseline;
    column-gap: 0.28935vw;
    transition: color 0.6s var(--ease-out);
  }

  .nav-item__link .dot {
    transform: scale(0);
    transition: transform 0.4s var(--ease-out);
  }

  .nav-item__link.is-active,
  .nav-item__link:hover {
    color: var(--color-red);
  }

  .nav-item__link.is-active .dot {
    transform: scale(1);
  }
}

.nav-item__link {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  color: currentColor;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: var(--color-red);
  color: var(--color-cream);
  display: flex;
  padding: 0.8rem;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .preloader {
    padding: 0 1.27315vw 1.27315vw;
    background: var(--color-red);
  }
}

.preloader__fps {
  position: absolute;
  left: 0.8rem;
  top: 4rem;
  display: flex;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .preloader__fps {
    left: 0.46296vw;
    top: 3.00926vw;
  }
}

.preloader__wrapper {
  margin-top: auto;
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.6s ease, transform 0.8s var(--ease-out);
}

.preloader.is-ready .preloader__wrapper {
  opacity: 1;
  transform: none;
}

.preloader__logo {
  width: 100%;
  height: auto;
  fill: currentColor;
}

.preloader__wordmark {
  width: 100%;
  margin: 0;
  font-size: clamp(6rem, 22vw, 28rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.8;
  text-transform: uppercase;
}

.preloader__r {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.4rem);
  width: 1.9rem;
  height: 1.9rem;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}

.preloader.is-ready .preloader__r {
  opacity: 1;
}

@media (min-width: 1024px) {
  .preloader__r {
    bottom: calc(100% + 0.81019vw);
    width: 4.97685vw;
    height: 4.97685vw;
  }
}

.preloader__r svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ---------- Story scroll (FlowArt pin/rotate — motion only) ---------- */
.flow-root {
  width: 100%;
  overflow-x: hidden;
}

[data-flow-section] {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.flow-art-container {
  position: relative;
  width: 100%;
  transform-origin: bottom left;
  will-change: transform;
}

/* ---------- Hero ---------- */
.home-hero {
  min-height: 100lvh;
  position: relative;
  background: transparent;
}

.home-hero__panel {
  min-height: 100lvh;
  height: 100lvh;
  overflow: hidden;
  background: var(--color-black);
}

.home-hero__fig {
  position: absolute;
  inset: -0.1rem;
  opacity: 0;
  transform: translate(-10%, 124%) rotate(15deg);
  transition: transform 1s var(--ease-out), opacity 0.3s ease;
}

.home-hero__fig.is-visible {
  opacity: 1;
  transform: none;
}

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

.home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.home-hero__logo-text {
  width: 100%;
  margin: 0;
  font-size: clamp(6rem, 22vw, 28rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.75;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0;
  transition: opacity 0.6s ease 0.2s;
}

.home-hero.is-revealed .home-hero__logo-text {
  opacity: 1;
}

.home-hero__acetate {
  position: absolute;
  inset: 0;
  background: var(--color-red);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.home-hero__wrapper {
  position: relative;
  z-index: 2;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 0.8rem 0.8rem;
  color: var(--color-cream);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .home-hero__wrapper {
    padding: 0 1.27315vw 1.27315vw;
  }
}

.home-hero__logo {
  width: 100%;
  height: auto;
  fill: currentColor;
  opacity: 0;
  transition: opacity 0.6s ease 0.2s;
}

.home-hero.is-revealed .home-hero__logo {
  opacity: 1;
}

.footer__brand-text {
  margin: 0;
  font-size: clamp(6rem, 22vw, 28rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.8;
  text-transform: uppercase;
  color: var(--color-black);
}

.player-alt__iframe,
.player-alt__media {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: contain;
  background: #000;
}

/* ---------- Intro ---------- */
.home-intro {
  position: relative;
  background: transparent;
}

.home-intro > .flow-art-container {
  background: var(--color-white);
}

.home-intro__wrapper {
  background: var(--color-white);
  padding-top: 0.8rem;
  padding-bottom: 2rem;
}

@media (min-width: 1024px) {
  .home-intro__wrapper {
    padding-top: 0.46296vw;
  }
}

.home-intro__links {
  display: flex;
  flex-direction: column;
  padding-top: 7rem;
  row-gap: 2.6rem;
  padding-bottom: 2rem;
}

@media (min-width: 1024px) {
  .home-intro__links {
    flex-direction: row;
    column-gap: 2.08333vw;
    padding-top: 3.47222vw;
    padding-bottom: 0.5787vw;
  }
}

/* ---------- Featured work ---------- */
.home-featured-work {
  position: relative;
  background: transparent;
  min-height: 100lvh;
}

.home-featured-work > .flow-art-container {
  background: var(--color-grey-light);
  min-height: 100lvh;
  height: 100lvh;
  overflow: hidden;
}

.featured-asset {
  position: relative;
  height: 100lvh;
  min-height: 100lvh;
  opacity: 1;
  pointer-events: all;
  background: hsla(228, 8%, 88%, 0.95);
  overflow: hidden;
}

.featured-asset.is-active {
  opacity: 1;
  pointer-events: all;
  z-index: 1;
}

.featured-asset__title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 24%;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .featured-asset__title-row {
    height: auto;
    padding-top: 2.31481vw;
    padding-bottom: 0;
  }
}

.featured-asset__title {
  max-width: 60%;
  color: var(--color-black);
}

.featured-asset__media {
  position: absolute;
  left: 0;
  top: 24%;
  width: 100%;
  height: 76%;
}

@media (min-width: 1024px) {
  .featured-asset__media {
    top: 16%;
    height: 84%;
  }
}

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

.featured-asset__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ---------- About ---------- */
.home-about {
  background: transparent;
  overflow: hidden;
  position: relative;
}

.home-about > .flow-art-container {
  background: var(--color-white);
}

.home-about__header {
  padding-top: 0.8rem;
  padding-bottom: 8rem;
}

@media (min-width: 1024px) {
  .home-about__header {
    padding-top: 0.46296vw;
    padding-bottom: 18.51852vw;
  }
}

.home-about__figs {
  grid-column: 2 / span 4;
  position: relative;
}

@media (min-width: 1024px) {
  .home-about__figs {
    grid-column: 1 / span 3;
  }
}

.home-about__fig {
  position: relative;
  z-index: 1;
}

.home-about__fig:not(:first-child) {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.home-about__fig.is-show {
  opacity: 1;
  z-index: 2;
}

.home-about__fig img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1023px) {
  .home-about__fig img {
    transform: translateX(-30%);
    width: 160%;
    max-width: none;
  }
}

.home-about__content {
  grid-column: 1 / span 5;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .home-about__content {
    grid-column: 6 / span 4;
    padding-top: 0;
  }
}

.home-about__copy {
  padding-bottom: 6.4rem;
  max-width: 40rem;
}

@media (min-width: 1024px) {
  .home-about__copy {
    max-width: 37.26852vw;
    padding-bottom: 3.7037vw;
  }
}

.home-about__awards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .home-about__awards {
    flex-direction: row;
    column-gap: 0.8rem;
  }
}

@media (min-width: 1024px) {
  .home-about__awards {
    column-gap: 0.46296vw;
  }
}

.home-about__awards ul {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
  row-gap: 0.2rem;
}

.home-about__awards a {
  position: relative;
}

.home-about__awards a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.8s var(--ease-out);
}

@media (hover: hover) {
  .home-about__awards a:hover::after {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.home-about__quote-wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 6.4rem;
  row-gap: 0.3rem;
}

@media (min-width: 1024px) {
  .home-about__quote-wrapper {
    padding-top: 3.7037vw;
    row-gap: 0.34722vw;
  }
}

.home-about__author {
  padding-left: 1.5rem;
}

@media (min-width: 1024px) {
  .home-about__author {
    padding-left: 0.86806vw;
  }
}

/* ---------- Clients ---------- */
.home-clients {
  background: transparent;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.home-clients.flow-art-container,
.home-clients > .flow-art-container {
  background: var(--color-white);
  padding-top: 8rem;
  padding-bottom: 4rem;
}

/* When clients is wrapped, padding moves to inner */
section.home-clients {
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .home-clients > .flow-art-container {
    padding-top: 18.75vw;
  }
}

.home-clients__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.2em;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}

@media (min-width: 1024px) {
  .home-clients__list {
    padding-top: 0.69444vw;
    padding-bottom: 0.5787vw;
  }
}

.home-client {
  display: flex;
  align-items: center;
}

.home-client__slash {
  margin-right: 0.15em;
  font-weight: 300;
}

.home-client__fig {
  height: 2.6rem;
  display: flex;
}

@media (min-width: 1024px) {
  .home-client__fig {
    height: 2.5463vw;
  }
}

.home-client__fig img {
  height: 100%;
  width: auto;
  max-width: none;
}

/* ---------- Showreel player ---------- */
.player-alt {
  background: transparent;
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
}

.player-alt > .flow-art-container {
  background: var(--color-white);
  padding-bottom: 4rem;
  overflow: hidden;
  position: relative;
}

.player-alt__fig {
  aspect-ratio: 390 / 220;
  position: relative;
  z-index: 1;
  margin-left: -0.8rem;
  margin-right: -0.8rem;
  transition: transform 1s var(--ease-out);
}

@media (min-width: 768px) {
  .player-alt__fig {
    aspect-ratio: 1712 / 964;
    margin: 0;
  }
}

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

.player-alt__btn {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.player-alt__overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16.9rem;
  aspect-ratio: 1;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.6s var(--ease-out);
}

@media (min-width: 768px) {
  .player-alt__overlay {
    width: 41.84028vw;
  }
}

.player-alt__overlay--acetate {
  background: var(--color-red);
  mix-blend-mode: multiply;
}

.player-alt__content {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  position: relative;
}

.player-alt__meta {
  position: absolute;
  top: 0.4rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .player-alt__meta {
    top: 0.23148vw;
    font-size: 0.69444vw;
  }
}

.player-alt__meta--left {
  left: 0.4rem;
}

.player-alt__meta--center {
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 0.3rem;
}

@media (min-width: 768px) {
  .player-alt__meta--center {
    display: flex;
  }

  .player-alt__meta--left {
    left: 0.23148vw;
  }

  .player-alt__meta--right {
    right: 0.23148vw;
  }
}

.player-alt__meta--right {
  right: 0.4rem;
}

.player-alt__title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-alt__title-svg {
  height: 2.4rem;
  width: 2.7rem;
  margin-right: 0.4rem;
  fill: currentColor;
}

@media (min-width: 768px) {
  .player-alt__title-svg {
    height: 4.91898vw;
    width: 4.28241vw;
    margin-right: 1.09954vw;
  }
}

.player-alt__video {
  position: absolute;
  inset: 0;
  background: var(--color-black);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

@media (min-width: 1024px) {
  .player-alt__video {
    inset: 0 0.46296vw;
  }
}

.player-alt__video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.player-alt.is-open .player-alt__fig {
  transform: translateY(-120%) rotate(-4deg);
  pointer-events: none;
}

.player-alt.is-open .player-alt__overlay {
  transform: translate(-50%, -250%) scale(1) rotate(12deg);
}

.player-alt.is-open .player-alt__btn {
  pointer-events: none;
}

.player-alt.is-open .player-alt__video {
  opacity: 1;
  pointer-events: all;
}

.player-alt__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  color: var(--color-white);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: none;
}

.player-alt.is-open .player-alt__close {
  display: block;
}

/* ---------- News ---------- */
.home-featured-news {
  background: transparent;
  padding-bottom: 0;
}

.home-featured-news > .flow-art-container {
  background: var(--color-white);
  padding-bottom: 10rem;
}

@media (min-width: 1024px) {
  .home-featured-news > .flow-art-container {
    padding-bottom: 18.51852vw;
  }
}

.home-featured-news__header {
  margin-bottom: 8rem;
  padding-top: 0.8rem;
}

@media (min-width: 1024px) {
  .home-featured-news__header {
    margin-bottom: 18.51852vw;
    padding-top: 0.46296vw;
  }
}

.home-featured-news__cta {
  display: flex;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .home-featured-news__cta {
    margin-bottom: 1.04167vw;
  }
}

.news-list {
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
}

@media (min-width: 768px) {
  .news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.8rem;
  }
}

@media (min-width: 1024px) {
  .news-list {
    column-gap: 0.46296vw;
    row-gap: 12.26852vw;
  }
}

.news-item__link {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.news-item__fig {
  aspect-ratio: 390 / 249;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-left: -0.8rem;
  margin-right: -0.8rem;
  width: calc(100% + 1.6rem);
}

@media (min-width: 1024px) {
  .news-item__fig {
    aspect-ratio: 852 / 544;
    margin: 0;
    width: 100%;
  }
}

.news-item__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.6s ease;
}

.news-item__link:hover .news-item__fig img {
  filter: grayscale(0);
}

.news-item__meta {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  right: 0.4rem;
  text-align: center;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 1.2rem;
  mix-blend-mode: difference;
}

@media (min-width: 1024px) {
  .news-item__meta {
    text-align: left;
    left: 0.23148vw;
    top: 0.23148vw;
    font-size: 0.69444vw;
  }
}

.news-item__title {
  padding: 1rem 0;
  max-width: 90%;
}

.news-item__title p {
  display: inline;
}

.news-item__excerpt {
  max-width: 33rem;
  color: var(--color-black);
}

@media (min-width: 1024px) {
  .news-item__excerpt {
    max-width: 31.25vw;
  }

  .news-item__title {
    padding: 0.46296vw 0;
    max-width: 80%;
  }
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  overflow: clip;
  background: transparent;
}

.footer > .flow-art-container {
  position: relative;
  overflow: clip;
}

.footer__cta-wrap {
  background: var(--color-white);
  position: relative;
  z-index: 4;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-black);
  padding: 2rem 0;
  position: relative;
}

.footer-cta__svg {
  height: 5rem;
  width: 5.8rem;
  fill: currentColor;
  margin-left: 0.3rem;
  transition: transform 0.8s var(--ease-out);
}

@media (min-width: 1024px) {
  .footer-cta__svg {
    height: 8.96991vw;
    width: 10.70602vw;
    margin-left: 0.5787vw;
  }
}

.footer-cta__label {
  position: relative;
  display: flex;
}

.footer-cta__label::before {
  content: "";
  position: absolute;
  left: 0.072em;
  right: -0.065em;
  bottom: -0.5rem;
  height: 0.1rem;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.8s var(--ease-out);
}

@media (hover: hover) {
  .footer-cta:hover .footer-cta__label::before {
    transform: scaleX(0);
    transform-origin: right;
  }

  .footer-cta:hover .footer-cta__svg {
    transform: translateX(8%);
  }
}

.footer__brand-mark {
  background: var(--color-white);
  padding: 8rem var(--gutter) 0.8rem;
}

@media (min-width: 1024px) {
  .footer__brand-mark {
    padding-top: 17.36111vw;
    padding-bottom: 0.46296vw;
  }
}

.footer__brand-mark svg {
  width: 100%;
  height: auto;
  fill: var(--color-black);
  display: block;
}

.footer__body {
  background: var(--color-red);
  color: var(--color-white);
  position: relative;
  padding-top: 2rem;
}

.footer__fig {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  opacity: 0.2;
  mix-blend-mode: multiply;
  filter: grayscale(0.3);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .footer__fig {
    left: 29%;
    width: 26.04167vw;
    opacity: 1;
  }
}

.footer__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 4.8rem;
}

@media (min-width: 1024px) {
  .footer__inner {
    display: flex;
    grid-column: 6 / span 4;
    column-gap: 6.42361vw;
    padding-bottom: 7.98611vw;
  }

  .footer__inner--demo {
    grid-column: 1 / -1;
    max-width: 56rem;
  }

  .footer-col--demo {
    flex: 1;
    margin-bottom: 0;
  }
}

.footer-col {
  grid-column: 1 / span 5;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .footer-col--contact {
    grid-column: 1 / span 3;
    margin-bottom: 0;
  }

  .footer-col--address {
    max-width: 14.87269vw;
  }

  .footer-col--nav {
    padding-left: 1.62037vw;
  }
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col__link {
  position: relative;
  line-height: 1.2;
}

.footer-col__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.8s var(--ease-out);
}

@media (hover: hover) {
  .footer-col__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.footer-col__copy a {
  position: relative;
}

.footer-col__copy a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  background: currentColor;
}

.footer-col__copy em {
  font-style: normal;
  font-weight: 300;
}

.footer__newsletter {
  grid-column: 1 / span 5;
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

@media (min-width: 1024px) {
  .footer__newsletter {
    grid-column: 1 / span 4;
    max-width: 35.24306vw;
  }
}

.newsletter {
  position: relative;
}

.newsletter__form {
  display: flex;
  border-bottom: 0.1rem solid currentColor;
  position: relative;
}

.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--color-white);
  padding: 1rem 4rem 1rem 0;
  outline: none;
  font-family: inherit;
  font-size: 3.2rem;
  font-weight: 470;
  letter-spacing: -0.01em;
  line-height: 0.8;
}

@media (min-width: 1024px) {
  .newsletter__input {
    font-size: 3.7037vw;
  }
}

.newsletter__input::placeholder {
  color: var(--color-white);
  font-weight: 470;
}

.newsletter__btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: currentColor;
  display: flex;
}

.newsletter__btn svg {
  height: 2.2rem;
  width: 2.5rem;
  fill: currentColor;
}

@media (min-width: 1024px) {
  .newsletter__btn svg {
    height: 3.06713vw;
    width: 3.47222vw;
  }
}

.newsletter__message {
  position: absolute;
  bottom: 100%;
  left: 0;
  padding-bottom: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.newsletter__message.is-show {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  grid-column: 1 / span 5;
  padding: 2.4rem 0 0.8rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .footer__bottom {
    grid-column: 6 / span 4;
    justify-content: flex-end;
    padding-bottom: 0.46296vw;
    padding-right: 0.46296vw;
  }
}

.footer__azryno {
  width: 100%;
  text-align: center;
  padding: 1.6rem 0 2.4rem;
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.footer__azryno a {
  position: relative;
}

.footer__azryno a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 0.1rem;
  background: currentColor;
}

@media (min-width: 1024px) {
  .footer__azryno {
    font-size: 0.69444vw;
  }
}

.footer__credits-btn {
  margin-left: auto;
}

@media (min-width: 1024px) {
  .footer__credits-btn {
    margin-left: 2rem;
  }
}

.footer-credits {
  background: var(--color-grey);
  color: var(--color-black);
  padding: 3rem var(--gutter);
  display: none;
}

.footer-credits.is-open {
  display: block;
}

.footer-credits__copy {
  max-width: 80rem;
  line-height: 1.4;
  font-size: 1.4rem;
}

.footer-credits__copy a:hover {
  color: var(--color-red);
}

.footer-credits__copy strong {
  color: var(--color-red);
  font-weight: 470;
}

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

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

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