:root {
  --red: #ff5050;
  --black: #000;
  --white: #fff;
  --header-h: clamp(76px, 8vw, 154px);
  --footer-h: 0px;
  --side-pad: clamp(18px, 3.35vw, 68px);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--white);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
  scroll-snap-type: none;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(96px, 1fr) auto minmax(96px, 1fr);
  align-items: center;
  min-height: var(--header-h);
  padding: 0 var(--side-pad);
  background: transparent;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 360ms ease, transform 360ms ease;
  will-change: opacity, transform;
}

body.is-scrolling-down .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
}

.brand {
  display: inline-flex;
  width: clamp(150px, 11.348vw, 219px);
  height: clamp(74px, 6.248vw, 120px);
  align-items: center;
  justify-content: flex-start;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.6vw, 10px);
  font-size: clamp(16px, 1.12vw, 22px);
  font-weight: 800;
  line-height: 1;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px 6px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  color: var(--black);
  background: var(--red);
}

.nav-menu a:focus-visible,
.global-cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.brand-pill {
  justify-self: end;
  margin: 0;
  font-size: clamp(16px, 1.06vw, 22px);
  font-weight: 800;
  line-height: 0.96;
  text-align: right;
}

.brand-pill span {
  display: block;
}

.menu-toggle {
  display: none;
}

.snap-track {
  position: relative;
}

.section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.section-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transform-origin: center;
  transition: transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}

picture.section-media {
  display: block;
  overflow: hidden;
}

picture.section-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section.is-section-active .section-media {
  transform: scale(1.035);
  will-change: transform;
}

.hero .section-media {
  filter: saturate(0.96) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.06) 42%, rgba(0, 0, 0, 0.3)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.02) 45%, rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: 29vw;
  right: 18vw;
  bottom: calc(var(--footer-h) + 30.2vh);
  z-index: 2;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 4vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
}

.section-copy {
  position: absolute;
  z-index: 2;
  color: var(--white);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.36);
}

.project-label {
  left: var(--side-pad);
  bottom: calc(var(--footer-h) + clamp(42px, 7.2vh, 80px));
  display: grid;
  gap: 2px;
  max-width: min(640px, 62vw);
  font-size: clamp(17px, 1.42vw, 28px);
  line-height: 1.08;
}

.project-label strong {
  font-size: inherit;
  font-weight: 900;
}

.section-copy-large {
  left: var(--side-pad);
  top: clamp(188px, 25vh, 300px);
  max-width: min(630px, 45vw);
}

.section-copy-large h2 {
  margin: 0;
  font-size: clamp(42px, 4vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
}

.text-section {
  display: flex;
  align-items: center;
  color: var(--white);
}

.text-section-red {
  background: var(--red);
}

.text-section-black {
  background: var(--black);
}

.statement-copy,
.services-copy,
.trusted-copy {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 42px) var(--side-pad) 60px;
}

.statement-copy {
  max-width: min(1280px, 72vw);
}

.statement-copy p {
  margin: 0;
  font-size: clamp(42px, 4vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
}

.services-copy p {
  margin: 0;
  font-size: clamp(42px, 4vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
}

.trusted-section {
  display: flex;
  align-items: center;
  background: #f3dbe6;
  color: var(--black);
}

.trusted-copy h2 {
  margin: 0 0 clamp(54px, 8vh, 92px);
  max-width: 720px;
  font-size: clamp(42px, 4vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
}

.brand-wall {
  width: 100vw;
  height: clamp(160px, 25vh, 288px);
  margin-left: calc(var(--side-pad) * -1);
  overflow: hidden;
  background: transparent;
}

.brand-marquee {
  display: flex;
  width: max-content;
  min-width: 100%;
  height: 100%;
  animation: brand-marquee var(--marquee-duration, 52s) linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.brand-marquee.is-marquee-ready {
  animation-play-state: running;
}

.brand-logo-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(56px, 5.2vw, 112px);
  height: 100%;
  padding-right: clamp(56px, 5.2vw, 112px);
}

.brand-logo-set img {
  display: block;
  width: auto;
  max-width: clamp(150px, 14vw, 330px);
  height: clamp(54px, 7vh, 94px);
  object-fit: contain;
}

.brand-logo-set img[src*="mercedes"],
.brand-logo-set img[src*="amex"],
.brand-logo-set img[src*="adidas"] {
  height: clamp(62px, 8vh, 112px);
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }

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

.global-cta {
  position: fixed;
  z-index: 30;
  right: var(--side-pad);
  bottom: calc(var(--footer-h) + clamp(26px, 4.3vh, 50px));
  display: inline-flex;
  min-width: clamp(180px, 12.4vw, 238px);
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 9px 22px 10px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
  color: var(--white);
  font-size: clamp(16px, 1.06vw, 22px);
  line-height: 1;
  backdrop-filter: blur(6px);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.global-cta:hover,
.global-cta:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--black);
}

.section-dots {
  position: fixed;
  z-index: 21;
  top: 50%;
  right: clamp(10px, 1.3vw, 24px);
  display: none;
  gap: 8px;
  transform: translateY(-50%);
}

.section-dots a {
  width: 7px;
  height: 7px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: transparent;
  opacity: 0.65;
  transition: background 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.section-dots a:hover,
.section-dots a.is-active {
  background: var(--white);
  opacity: 1;
  transform: scale(1.15);
}

.contact-section {
  display: grid;
  grid-template-rows: 25svh 75svh;
  background: var(--white);
  color: var(--black);
}

.press-strip {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.press-marquee {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: press-marquee var(--marquee-duration, 52s) linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.press-marquee.is-marquee-ready {
  animation-play-state: running;
}

.press-logo-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(48px, 5vw, 104px);
  padding-right: clamp(48px, 5vw, 104px);
}

.press-logo-set img {
  display: block;
  width: auto;
  max-width: clamp(150px, 14vw, 330px);
  height: clamp(42px, 4vw, 82px);
  object-fit: contain;
}

.press-logo-set img[alt="Complex"],
.press-logo-set img[src*="complex"] {
  height: clamp(58px, 5.6vw, 112px);
}

.press-logo-set img[alt="Nice Kicks"],
.press-logo-set img[src*="nice-kicks"] {
  height: clamp(58px, 5.4vw, 108px);
}

@keyframes press-marquee {
  from {
    transform: translateX(0);
  }

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

.contact-body {
  position: relative;
  min-height: 75svh;
  padding: 0 var(--side-pad);
}

.legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.1vw, 42px);
  align-items: baseline;
  font-size: clamp(18px, 1.55vw, 30px);
  font-weight: 900;
}

.copyright-line {
  margin: 0;
  color: var(--red);
  font-weight: 900;
}

.legal-row a,
.footer-menu a,
.social-row a {
  border-bottom: 0.06em solid currentColor;
  text-decoration: none;
}

.back-to-top {
  position: absolute;
  top: clamp(54px, 8vh, 92px);
  right: var(--side-pad);
  color: var(--red);
  display: inline-flex;
  line-height: 0;
}

.back-to-top svg {
  display: block;
  width: auto;
  height: 40px;
  fill: currentColor;
}

.contact-logo {
  position: absolute;
  left: var(--side-pad);
  bottom: clamp(38px, 7vh, 78px);
  width: clamp(260px, 22vw, 430px);
}

.footer-menu {
  position: absolute;
  right: var(--side-pad);
  top: 34%;
  display: grid;
  justify-items: end;
  font-size: clamp(48px, 5vw, 96px);
  font-weight: 900;
  line-height: 0.98;
}

.legal-row a,
.footer-menu a {
  transition: color 160ms ease;
}

.legal-row a:hover,
.legal-row a:focus-visible,
.footer-menu a:hover,
.footer-menu a:focus-visible {
  color: var(--red);
}

.social-row {
  position: absolute;
  right: var(--side-pad);
  bottom: clamp(96px, 11vh, 126px);
  display: flex;
  gap: clamp(28px, 3.4vw, 66px);
  font-size: clamp(20px, 1.75vw, 34px);
  font-weight: 900;
}

.legal-page {
  min-height: 100svh;
  color: var(--black);
  background: #f4f4f4;
}

.legal-page .site-header {
  color: var(--black);
}

.legal-page .brand-pill {
  color: var(--black);
}

.legal-page .nav-menu a:hover,
.legal-page .nav-menu a:focus-visible {
  color: var(--black);
}

.legal-header {
  position: fixed;
}

.legal-main {
  min-height: 100svh;
  padding: calc(var(--header-h) + clamp(48px, 7vh, 96px)) var(--side-pad) clamp(56px, 8vh, 120px);
}

.legal-back {
  display: inline-flex;
  margin-bottom: clamp(42px, 7vh, 86px);
  border-bottom: 0.06em solid currentColor;
  color: var(--red);
  font-size: clamp(18px, 1.4vw, 26px);
  font-weight: 900;
  line-height: 1;
}

.legal-content {
  max-width: min(980px, 76vw);
}

.legal-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: clamp(18px, 1.4vw, 26px);
  font-weight: 900;
}

.legal-content h1 {
  margin: 0 0 clamp(36px, 5vh, 64px);
  font-size: clamp(56px, 6.6vw, 128px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -2px;
}

.legal-content h2 {
  margin: clamp(34px, 5vh, 58px) 0 12px;
  font-size: clamp(26px, 2.2vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.legal-content h3,
.legal-content h4 {
  max-width: 820px;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.legal-content h3 {
  margin: clamp(24px, 3.6vh, 42px) 0 10px;
  font-size: clamp(20px, 1.55vw, 30px);
  line-height: 1.04;
}

.legal-content h4 {
  margin: clamp(20px, 3vh, 34px) 0 10px;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.08;
}

.legal-content p,
.legal-content li {
  margin: 0 0 16px;
  max-width: 820px;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 1.1em;
}

.legal-content li {
  margin-bottom: 8px;
  padding-left: 0.15em;
}

.legal-content a {
  border-bottom: 0.06em solid currentColor;
  overflow-wrap: anywhere;
  transition: color 160ms ease;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--red);
}

.legal-section + .legal-section {
  margin-top: clamp(64px, 10vh, 128px);
}

@media (min-width: 821px) {
  .hero-copy {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: min(860px, 64vw);
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .project-label {
    bottom: calc(var(--footer-h) + clamp(26px, 4.3vh, 50px));
    font-size: clamp(14px, 1.136vw, 22px);
  }

  #playground .section-copy-large {
    top: 50%;
    transform: translateY(-50%);
  }

  .contact-section {
    --footer-pad-x: clamp(42px, 2vw, 60px);
    --footer-pad-r: clamp(78px, 4.25vw, 130px);
    --footer-top-pad: clamp(42px, 6.5vh, 78px);
    --footer-bottom-pad: clamp(22px, 2.35vh, 28px);
  }

  .copyright-line {
    position: absolute;
    top: auto;
    bottom: var(--footer-bottom-pad);
    left: var(--footer-pad-x);
    font-size: 18px;
  }

  .back-to-top {
    top: var(--footer-top-pad);
    right: var(--footer-pad-r);
  }

  .contact-logo {
    left: var(--footer-pad-x);
    top: var(--footer-top-pad);
    bottom: auto;
    width: clamp(286px, 13.85vw, 416px);
  }

  .footer-menu {
    top: 50%;
    right: var(--footer-pad-r);
    gap: 18px;
    font-size: 60px;
    line-height: 0.94;
    transform: translateY(-50%);
  }

  .legal-row {
    position: absolute;
    left: auto;
    right: var(--footer-pad-r);
    bottom: var(--footer-bottom-pad);
    justify-content: flex-end;
    gap: 34px;
    font-size: 18px;
  }

  body.is-contact-active .global-cta {
    opacity: 0;
    pointer-events: none;
  }

  body.is-contact-active .site-header {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 88px;
    --footer-h: 0px;
    --side-pad: 18px;
  }

  html {
    scroll-snap-type: none;
  }

  .site-header {
    grid-template-columns: auto auto 1fr auto;
    grid-template-rows: auto;
    column-gap: 12px;
    align-content: center;
    min-height: var(--header-h);
    padding-block: 8px;
  }

  .brand {
    width: 88px;
    height: 46px;
  }

  .brand-pill {
    justify-self: start;
    align-self: center;
    padding-top: 0;
    font-size: 13px;
    text-align: left;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.52);
  }

  .menu-toggle {
    position: relative;
    z-index: 31;
    grid-column: 4;
    display: inline-grid;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    border-radius: 999px;
    appearance: none;
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    align-self: center;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.48);
    transition: transform 220ms ease, opacity 160ms ease, color 160ms ease, box-shadow 160ms ease;
  }

  .menu-toggle:active {
    color: var(--red);
  }

  .menu-toggle:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
  }

  body.is-mobile-menu-open .menu-toggle {
    color: var(--red);
  }

  body.is-mobile-menu-open .menu-toggle span {
    box-shadow: none;
  }

  body.is-mobile-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  body.is-mobile-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.is-mobile-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: grid;
    justify-items: end;
    align-content: center;
    width: 100%;
    min-height: 100svh;
    padding: calc(var(--header-h) + 36px) var(--side-pad) 92px;
    gap: 4px;
    background: var(--white);
    color: var(--black);
    font-size: clamp(54px, 15vw, 68px);
    font-weight: 900;
    line-height: 0.98;
    opacity: 0;
    pointer-events: none;
    text-align: right;
    text-shadow: none;
    transform: translateY(-10px);
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .nav-menu a {
    min-height: 0;
    padding: 0;
    border-bottom: 0.06em solid currentColor;
    border-radius: 0;
    background: transparent;
    color: inherit;
    transition: color 160ms ease;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible,
  .nav-menu a.is-active {
    color: var(--red);
    background: transparent;
    text-shadow: none;
  }

  .nav-menu a:active {
    color: var(--red);
  }

  .nav-menu a:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 6px;
  }

  body.is-mobile-menu-open {
    overflow: hidden;
  }

  body.is-mobile-menu-open .site-header,
  body.is-mobile-menu-open.is-scrolling-down .site-header {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

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

  body.is-mobile-menu-open .brand-pill {
    color: var(--black);
    text-shadow: none;
  }

  .hero .section-media {
    object-position: center center;
  }

  .hero-copy {
    left: var(--side-pad);
    right: var(--side-pad);
    bottom: calc(var(--footer-h) + 34vh);
  }

  .hero-copy h1 {
    max-width: 420px;
    font-size: clamp(35px, 10.7vw, 56px);
  }

  .project-label {
    bottom: calc(var(--footer-h) + 86px);
    max-width: calc(100vw - 36px);
    font-size: 18px;
  }

  .section-copy-large {
    top: 30vh;
    max-width: calc(100vw - 36px);
  }

  .section-copy-large h2 {
    font-size: clamp(36px, 10vw, 58px);
  }

  .statement-copy,
  .services-copy,
  .trusted-copy {
    padding: calc(var(--header-h) + 44px) var(--side-pad) 72px;
  }

  .statement-copy {
    max-width: none;
  }

  .statement-copy p {
    font-size: clamp(30px, 7.2vw, 46px);
  }

  .services-copy p {
    font-size: clamp(30px, 8vw, 48px);
  }

  .trusted-copy h2 {
    margin-bottom: 42px;
    font-size: clamp(38px, 10vw, 56px);
  }

  .brand-wall {
    width: 100vw;
    height: clamp(150px, 25vh, 230px);
  }

  .brand-logo-set {
    gap: 48px;
    padding-right: 48px;
  }

  .brand-logo-set img {
    max-width: 210px;
    height: clamp(46px, 7vh, 76px);
  }

  .global-cta {
    bottom: calc(var(--footer-h) + 24px);
    right: var(--side-pad);
    min-width: 206px;
    min-height: 40px;
    font-size: 15px;
  }

  .contact-section {
    grid-template-rows: 25vh 1fr;
  }

  .press-strip {
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .press-logo-set {
    gap: 42px;
    padding-right: 42px;
  }

  .press-logo-set img {
    max-width: 164px;
    height: clamp(34px, 5.2vh, 52px);
  }

  .press-logo-set img[alt="Complex"],
  .press-logo-set img[src*="complex"],
  .press-logo-set img[alt="Nice Kicks"],
  .press-logo-set img[src*="nice-kicks"] {
    height: clamp(42px, 6.4vh, 64px);
  }

  .contact-body {
    padding-top: 34px;
    padding-bottom: 88px;
  }

  .copyright-line {
    position: absolute;
    left: auto;
    right: var(--side-pad);
    bottom: 18px;
    font-size: 13px;
    text-align: right;
  }

  .legal-row {
    position: absolute;
    right: var(--side-pad);
    bottom: 43px;
    max-width: calc(100vw - 36px);
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .back-to-top {
    top: 30px;
    font-size: 54px;
  }

  .contact-logo {
    top: 30px;
    bottom: auto;
    width: 133px;
  }

  .footer-menu {
    top: 35%;
    font-size: clamp(38px, 12vw, 58px);
  }

  .social-row {
    right: var(--side-pad);
    bottom: 118px;
    gap: 18px;
    font-size: 15px;
  }

  .section-dots {
    display: none;
  }

  body.is-contact-active .global-cta {
    opacity: 0;
    pointer-events: none;
  }

  .legal-main {
    padding: calc(var(--header-h) + 34px) var(--side-pad) 64px;
  }

  .legal-content {
    max-width: none;
  }

  .legal-content h1 {
    margin-bottom: 42px;
    font-size: clamp(44px, 13vw, 68px);
  }

  .legal-content h2 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .legal-content h3 {
    font-size: clamp(21px, 5.7vw, 28px);
  }

  .legal-content p,
  .legal-content li {
    max-width: none;
    font-size: 17px;
    line-height: 1.28;
  }
}

@media (max-width: 560px) {
  .section-media {
    object-position: center;
  }

  .hero .section-media {
    object-position: center center;
  }

  .nav-menu {
    justify-content: stretch;
  }
}

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

  .nav-menu a,
  .site-header,
  .global-cta,
  .section-media,
  .press-marquee,
  .brand-marquee,
  .section-dots a {
    transform: none;
    transition: none;
    animation: none;
  }

  .section.is-section-active .section-media {
    transform: none;
  }
}
