
:root {
  --bg: #070707;
  --fg: #f2efe8;
  --muted: rgba(242, 239, 232, .54);
  --radius: 10px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --brand-orange: #ff6a1a;
}

.structure-profile-close,
.bigdoor-case-modal-close,
.design-usa-person-close,
.aero-contact-modal__close {
  position: absolute;
  width: 44px !important;
  height: 44px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border: 2px solid var(--brand-orange, #ff6a1a) !important;
  border-radius: 50% !important;
  background: rgba(245, 243, 237, .94) !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 1 !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24) !important;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.structure-profile-close::before,
.structure-profile-close::after,
.bigdoor-case-modal-close::before,
.bigdoor-case-modal-close::after,
.design-usa-person-close::before,
.design-usa-person-close::after,
.aero-contact-modal__close::before,
.aero-contact-modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-orange, #ff6a1a);
  transform-origin: center;
}

.structure-profile-close::before,
.bigdoor-case-modal-close::before,
.design-usa-person-close::before,
.aero-contact-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.structure-profile-close::after,
.bigdoor-case-modal-close::after,
.design-usa-person-close::after,
.aero-contact-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.structure-profile-close:hover,
.structure-profile-close:focus-visible,
.bigdoor-case-modal-close:hover,
.bigdoor-case-modal-close:focus-visible,
.design-usa-person-close:hover,
.design-usa-person-close:focus-visible,
.aero-contact-modal__close:hover,
.aero-contact-modal__close:focus-visible {
  outline: 0 !important;
  background: #fffaf2 !important;
  border-color: var(--brand-orange, #ff6a1a) !important;
  box-shadow: 0 0 0 4px rgba(255, 106, 26, .18), 0 12px 30px rgba(0, 0, 0, .28) !important;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Source Han Sans K", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; }

.home {
  position: relative;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background: #070707;
  isolation: isolate;
}

.nav {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f2efe8;
  text-transform: uppercase;
  font-size: 14px;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.brand-lockup {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 2px 8px 2px 0;
}

.brand-lockup img {
  height: 28px;
  width: auto;
  display: block;
  background: transparent;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
  mix-blend-mode: difference;
  font-family: "PingFang SC", "Source Han Sans K", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
  letter-spacing: .04em;
}

.nav nav a,
.nav-dropdown__trigger {
  font: inherit;
  transition: color 180ms var(--ease-out);
}

.nav nav a:hover,
.nav nav a:focus-visible,
.nav nav a[aria-current="page"],
.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown:focus-within .nav-dropdown__trigger {
  color: var(--brand-orange) !important;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 0;
  margin: -12px 0;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: default;
  letter-spacing: inherit;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  min-width: 116px;
  padding: 17px 16px;
  border-radius: 6px;
  background: #f2efe8;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
  mix-blend-mode: normal;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-orange) 0 50%, #3768ff 50% 100%);
  transform: translateX(-50%);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav nav .nav-dropdown__menu a {
  display: block;
  padding: 9px 7px;
  color: #111 !important;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  border-radius: 4px;
}

.nav nav .nav-dropdown__menu a:hover,
.nav nav .nav-dropdown__menu a:focus-visible {
  color: var(--brand-orange) !important;
  background: rgba(255, 106, 26, .1);
}

.media-canvas {
  position: fixed;
  left: -350px;
  top: 0;
  width: calc(100vw + 700px);
  height: 100svh;
  z-index: 10;
  opacity: 0;
  transform: translateZ(0) scale(1);
  transform-origin:center center;
  will-change:transform;
  pointer-events: none;
  touch-action: none;
  user-select: none;
  animation: aeroCanvasIntro 1550ms var(--ease-out) 1120ms forwards;
}

.media-canvas.is-ready {
  pointer-events: auto;
}

.case {
  --px: 0px;
  --py: 0px;
  --scale: 1;
  --media-x: 50%;
  --media-y: 50%;
  --ratio: 5 / 4;
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w, clamp(150px, 14vw, 244px));
  aspect-ratio: var(--ratio);
  display: block;
  cursor: pointer;
  overflow: visible;
  opacity: 1;
  will-change: transform;
  transform: translate(calc(-50% + var(--px)), calc(-50% + var(--py))) rotate(0deg) scale(var(--scale));
  transition: opacity 500ms var(--ease-out);
  touch-action: none;
  -webkit-user-drag: none;
}

.case:hover {
  z-index: 30;
}

.case--placeholder {
  cursor: default;
}

.case--placeholder,
.case--placeholder * {
  pointer-events: none;
}

.case__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--bgc);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .34);
  opacity: 0;
  transform: scale(.72);
  transform-origin: center;
  animation: aeroCardIntro 1200ms var(--ease-out) forwards;
}

.case:nth-child(1) .case__media { animation-delay: 1180ms; }
.case:nth-child(2) .case__media { animation-delay: 1290ms; }
.case:nth-child(3) .case__media { animation-delay: 1400ms; }
.case:nth-child(4) .case__media { animation-delay: 1510ms; }
.case:nth-child(5) .case__media { animation-delay: 1620ms; }
.case:nth-child(6) .case__media { animation-delay: 1730ms; }
.case:nth-child(7) .case__media { animation-delay: 1840ms; }
.case:nth-child(8) .case__media { animation-delay: 1950ms; }
.case:nth-child(9) .case__media { animation-delay: 2060ms; }
.case:nth-child(10) .case__media { animation-delay: 2170ms; }
.case:nth-child(11) .case__media { animation-delay: 2280ms; }
.case:nth-child(12) .case__media { animation-delay: 2390ms; }
.case:nth-child(13) .case__media { animation-delay: 2500ms; }
.case:nth-child(14) .case__media { animation-delay: 2610ms; }
.case:nth-child(15) .case__media { animation-delay: 2720ms; }

.case__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-x) var(--media-y);
  opacity: 1;
  filter: none;
}

.case__media::before,
.case__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.case__media::before {
  display: none;
}

.case__media::after {
  border: 2px solid rgba(255, 106, 26, 0);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12);
  transition: border-color 180ms ease;
}

.case:hover .case__media::after,
.case:focus-visible .case__media::after {
  border-color: var(--brand-orange);
}

.case--timberland {
  --ratio: 3 / 4;
  --w: clamp(142px, 12.5vw, 208px);
}

.case--byd-shark-6,
.case--byd-red-dirt,
.case--byd-uae {
  --ratio: 4 / 3;
  --w: clamp(174px, 16vw, 270px);
}

.case--byd-shark-6 .case__media img {
  transform: translateY(-3%) scale(1.12);
  transform-origin: center center;
}

.case--haval-h3 {
  --ratio: 4 / 3;
  --w: clamp(168px, 15vw, 260px);
}

.case--jetour {
  --ratio: 3 / 4;
  --w: clamp(142px, 12.5vw, 208px);
}

.case--bib {
  --ratio: 3 / 4;
  --w: clamp(136px, 12vw, 200px);
}

.case--okx-pay {
  --ratio: 3 / 4;
  --w: clamp(140px, 12.5vw, 206px);
}

.case--binance {
  --ratio: 4 / 3;
  --w: clamp(168px, 15vw, 260px);
}

.case--vivo {
  --ratio: 4 / 3;
  --w: clamp(160px, 14vw, 238px);
}

.case--eastbay {
  --ratio: 4 / 3;
  --w: clamp(168px, 15vw, 260px);
}

.case--longi {
  --ratio: 4 / 3;
  --w: clamp(168px, 15vw, 260px);
}

.case--longi-solar {
  --ratio: 4 / 3;
  --w: clamp(176px, 16vw, 272px);
}

.case--longi-sudan {
  --ratio: 3 / 4;
  --w: clamp(140px, 12.5vw, 206px);
}

.case--ohmygaode {
  --ratio: 16 / 9;
  --w: clamp(178px, 16vw, 276px);
}

.case__caption {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: max-content;
  min-width: 100%;
  max-width: 280px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
  color: #f2efe8;
  mix-blend-mode: difference;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Source Han Sans K", "Microsoft YaHei", sans-serif;
}

.case:hover .case__caption {
  opacity: 1;
  transform: translateY(0);
}

.case__title {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
}

.case--timberland .case__title { text-transform: none; }

.case__sub {
  font-size: 11px;
  line-height: 1.16;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(242, 239, 232, .78);
}

.logo-blend,
.logo-overlap__motion {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(.65);
  will-change: transform;
}

.particle-logo {
  position: fixed;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: difference;
  transition: opacity 480ms cubic-bezier(.4, 0, .2, 1);
}

.particle-logo-hit {
  position: fixed;
  inset: 0;
  z-index: 34;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: difference;
  filter: saturate(1.3) contrast(1.08);
  transition: opacity 480ms cubic-bezier(.4, 0, .2, 1);
}

.particle-logo__canvas,
.particle-logo-hit__canvas {
  width: 100%;
  height: 100%;
}

html.home-particle-logo-ready .particle-logo,
html.home-particle-logo-ready .particle-logo-hit {
  opacity: 1;
}

html.home-particle-logo-ready .logo-blend,
html.home-particle-logo-ready .logo-overlap {
  opacity: 0;
}

.logo-blend {
  z-index: 40;
  mix-blend-mode: difference;
  transition: opacity 480ms cubic-bezier(.4, 0, .2, 1);
}

.logo-overlap {
  position: fixed;
  inset: 0;
  z-index: 50;
  overflow: hidden;
  pointer-events: none;
  display: block;
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
  mix-blend-mode: difference;
  filter: saturate(1.3) contrast(1.08);
  transition: opacity 480ms cubic-bezier(.4, 0, .2, 1);
}

.logo-overlap__motion {
  z-index: 1;
}

.logo-blend img,
.logo-overlap__motion img {
  width: min(127.4vw, 2002px);
  opacity: 1;
  border: 0;
  outline: 0;
  transform: translateY(-1vh);
  transform-origin: center;
  animation: aeroLogoIntro 3600ms cubic-bezier(.16, 1, .3, 1) both;
}

.logo-overlap__motion img {
  filter:
    brightness(0) invert(1)
    drop-shadow(2px 0 0 rgba(0, 229, 255, .34))
    drop-shadow(-2px 0 0 rgba(255, 106, 26, .34))
    drop-shadow(0 0 14px rgba(242, 239, 232, .16));
}

.logo-shadow {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 6vh;
  display: flex;
  justify-content: center;
  pointer-events: none;
  will-change: transform;
}

.logo-shadow span {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 13vw;
  line-height: .78;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(242, 239, 232, .038);
}

.info {
  position: fixed;
  z-index: 90;
  left: 30px;
  top: 82px;
  width: min(460px, calc(100vw - 60px));
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 100ms ease, transform 100ms ease;
  mix-blend-mode: difference;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Source Han Sans K", "Microsoft YaHei", sans-serif;
}

.info.active {
  opacity: 1;
  transform: none;
}

.info__cat {
  color: rgba(242, 239, 232, .58);
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 10px;
}

.info__title {
  font-size: clamp(34px, 4vw, 76px);
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.info__sub {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.15;
  color: rgba(242, 239, 232, .78);
}

.status {
  position: fixed;
  z-index: 100;
  left: 30px;
  right: 30px;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(242, 239, 232, .54);
  mix-blend-mode: difference;
  text-transform: uppercase;
  font-size: 11px;
  pointer-events: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.aero-contact-footer {
  position: relative;
  min-height: clamp(390px, 38vw, 500px);
  margin: 72px clamp(14px, 2vw, 30px) clamp(6px, .8vw, 12px);
  padding: 22px clamp(24px, 11.8vw, 160px) clamp(54px, 5.8vw, 78px);
  display: grid;
  grid-template-rows: auto 1fr;
  color: #070707;
  background: #f2efe8;
  border-radius: 18px;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Source Han Sans K", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  overflow: hidden;
}

.aero-contact-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: clamp(6px, .8vw, 10px);
  background: var(--brand-orange);
}

.aero-contact-footer__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  margin: 0;
  min-height: 25px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.aero-contact-footer__grid {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 7vw, 120px);
  align-items: start;
  text-align: center;
}

.aero-contact-footer__block {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.aero-contact-footer__label,
.aero-contact-footer__text {
  margin: 0;
}

.aero-contact-footer__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.aero-contact-footer__text {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.32;
  font-weight: 700;
  font-style: normal;
}

.aero-contact-footer__link {
  color: inherit;
  text-decoration: none;
}

.aero-contact-footer__link:hover,
.aero-contact-footer__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav .lang-switch,
.aero-unified-nav .lang-switch,
.jetour-nav .lang-switch,
.byd-nav .lang-switch,
.longi-nav .lang-switch,
.vivo-nav .lang-switch,
.gaode-nav .lang-switch,
.eastbay-nav .lang-switch {
  color: rgba(242, 239, 232, .58);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.nav .lang-switch:hover,
.nav .lang-switch:focus-visible,
.aero-unified-nav .lang-switch:hover,
.aero-unified-nav .lang-switch:focus-visible,
.jetour-nav .lang-switch:hover,
.jetour-nav .lang-switch:focus-visible,
.byd-nav .lang-switch:hover,
.byd-nav .lang-switch:focus-visible,
.longi-nav .lang-switch:hover,
.longi-nav .lang-switch:focus-visible,
.vivo-nav .lang-switch:hover,
.vivo-nav .lang-switch:focus-visible,
.gaode-nav .lang-switch:hover,
.gaode-nav .lang-switch:focus-visible,
.eastbay-nav .lang-switch:hover,
.eastbay-nav .lang-switch:focus-visible {
  color: var(--brand-orange);
}

.aero-contact-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  line-height: 1;
}

.aero-contact-footer__social-icon {
  display: inline-grid;
  place-items: center;
  width: clamp(34px, 2.8vw, 42px);
  height: clamp(34px, 2.8vw, 42px);
  color: #070707;
  border: 1px solid rgba(7, 7, 7, .22);
  border-radius: 50%;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.aero-contact-footer__social-icon svg {
  width: 58%;
  height: 58%;
  overflow: visible;
}

.aero-contact-footer__social-icon--facebook span,
.aero-contact-footer__social-icon--shuying span {
  display: block;
  color: currentColor;
  transform: translateY(-.5px);
}

.aero-contact-footer__social-icon--facebook span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 1.8vw, 27px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: 0;
  transform: translate(1px, 0);
}

.aero-contact-footer__social-icon--shuying span {
  font-family: "PingFang SC", "Source Han Sans K", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(12px, .9vw, 14px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-.5px);
}

.aero-contact-footer__social-icon--shuying {
  background: transparent;
}

.aero-contact-footer__social-icon svg rect,
.aero-contact-footer__social-icon svg circle,
.aero-contact-footer__social-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aero-contact-footer__social-icon .aero-contact-footer__social-fill,
.aero-contact-footer__social-icon .aero-contact-footer__social-dot {
  fill: currentColor;
  stroke: none;
}

.aero-contact-footer__social-icon:hover,
.aero-contact-footer__social-icon:focus-visible {
  color: #fff;
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  transform: translateY(-2px);
}

@keyframes aeroLogoIntro {
  0% {
    transform: translateY(-1vh) scale(2.2);
  }
  28% {
    transform: translateY(-1vh) scale(2.2);
  }
  100% {
    transform: translateY(-1vh) scale(1);
  }
}

@keyframes aeroCanvasIntro {
  0% {
    opacity: 0;
    transform: translateZ(0) scale(1.72);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
}

@keyframes aeroCardIntro {
  0% {
    opacity: 0;
    transform: scale(.82);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.mobile-case-drawer {
  display: none;
}

.home-atmosphere,
.home-footage {
  display: none;
}

@media (max-width: 760px) {
  .nav {
    padding: 18px 20px;
    font-size: 10px;
  }

  .home {
    height: 100svh;
    overflow: hidden;
  }

  .media-canvas {
    display: none;
  }

  .home-atmosphere {
    display: none;
  }

  .home-footage {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: block;
    overflow: hidden;
    background: #070707;
    pointer-events: none;
  }

  .home-footage__video,
  .home-footage__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--clip-x, 50%) var(--clip-y, 50%);
    opacity: 0;
    filter: saturate(1.25) contrast(1.08) brightness(.94);
    transform: translate3d(0, 0, 0) scale(1.01);
    transition: opacity 160ms linear;
    will-change: opacity;
  }

  .home-footage.is-lightweight .home-footage__video {
    display: none;
  }

  .home-footage__video.is-active,
  .home-footage__image.is-active {
    opacity: .86;
  }

  .nav nav {
    display: flex !important;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 12px;
    max-width: calc(100vw - 170px);
    font-size: 10px;
    line-height: 1.2;
  }

  .brand-lockup img {
    height: 22px;
  }

  .logo-blend,
  .logo-overlap__motion {
    transform: none !important;
  }

  html.home-mobile-flat-logo .logo-blend {
    opacity: 1 !important;
    mix-blend-mode: difference;
    filter: saturate(1.3) contrast(1.08);
    animation: aeroFlatLogoBlendPulse 8200ms linear infinite;
  }

  .logo-blend img,
  .logo-overlap__motion img {
    width: min(90vw, 500px);
    transform: translateY(-2vh);
    animation: aeroLogoIntroMobile 4200ms cubic-bezier(.16, 1, .3, 1) both;
  }

  html.home-mobile-flat-logo .logo-blend img {
    filter:
      drop-shadow(2px 0 0 rgba(0, 229, 255, .34))
      drop-shadow(-2px 0 0 rgba(255, 106, 26, .34))
      drop-shadow(0 0 14px rgba(242, 239, 232, .16));
  }

  @keyframes aeroFlatLogoBlendPulse {
    0%,
    100% {
      filter: saturate(1.24) contrast(1.08) hue-rotate(0deg);
    }

    35% {
      filter: saturate(1.55) contrast(1.14) hue-rotate(16deg);
    }

    68% {
      filter: saturate(1.42) contrast(1.1) hue-rotate(-18deg);
    }
  }

  @keyframes aeroLogoIntroMobile {
    0% {
      transform: translateY(-2vh) scale(1.08);
    }

    34% {
      transform: translateY(-2vh) scale(1.08);
    }

    100% {
      transform: translateY(-2vh) scale(1);
    }
  }

  .logo-overlap,
  .info,
  .status,
  .logo-shadow {
    display: none;
  }

  html.home-mobile-flat-logo .particle-logo,
  html.home-mobile-flat-logo .particle-logo-hit {
    display: none !important;
    opacity: 0 !important;
  }

  .home-intro {
    bottom: 86px;
  }

  .mobile-case-drawer {
    display: block;
    position: fixed;
    z-index: 140;
    left: 16px;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    height: 54px;
    border: 1px solid rgba(255, 106, 26, .92);
    border-radius: 999px;
    background: rgba(255, 106, 26, .95);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .34);
    overflow: hidden;
    transition: height 420ms cubic-bezier(.16, 1, .3, 1), border-radius 420ms cubic-bezier(.16, 1, .3, 1), background-color 220ms ease;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Source Han Sans K", "Microsoft YaHei", sans-serif;
  }

  .mobile-case-drawer.is-open {
    height: 80svh;
    border-radius: 28px;
    background: rgba(255, 106, 26, .96);
  }

  .mobile-case-drawer__toggle {
    position: absolute;
    right: 14px;
    top: 8px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #070707;
    color: #f2efe8;
    cursor: pointer;
  }

  .mobile-case-drawer__toggle span {
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 260ms ease, opacity 220ms ease;
  }

  .mobile-case-drawer.is-open .mobile-case-drawer__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-case-drawer.is-open .mobile-case-drawer__toggle span:nth-child(2) {
    opacity: 0;
  }

  .mobile-case-drawer.is-open .mobile-case-drawer__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-case-drawer__panel {
    height: 100%;
    opacity: 0;
    pointer-events: none;
    padding: 22px 18px 24px;
    color: #070707;
    transform: translateY(8px);
    transition: opacity 220ms ease 80ms, transform 300ms cubic-bezier(.16, 1, .3, 1);
  }

  .mobile-case-drawer.is-open .mobile-case-drawer__panel {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-case-drawer__head {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding-right: 52px;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
  }

  .mobile-case-drawer__list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding-bottom: 18px;
  }

  .mobile-case-item {
    display: grid;
    gap: 5px;
    padding: 15px 0;
    color: #070707;
    text-decoration: none;
    border-top: 1px solid rgba(7, 7, 7, .22);
  }

  .mobile-case-item span {
    font-size: 20px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0;
  }

  .mobile-case-item em {
    font-style: normal;
    font-size: 12px;
    line-height: 1.3;
    color: rgba(7, 7, 7, .66);
  }

  .mobile-case-drawer {
    display: none !important;
  }

  .aero-contact-footer {
    min-height: auto;
    width: var(--aero-mobile-rail, calc(100vw - 32px));
    max-width: var(--aero-mobile-rail, calc(100vw - 32px));
    margin: 56px auto 8px;
    padding: 26px 20px 42px;
    grid-template-rows: auto auto;
    align-content: start;
    gap: 34px;
  }

  .aero-contact-footer__grid {
    align-self: start;
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
