/* ============================================================
   DaiFire — mihoyo-style fullpage, LIGHT theme
   ============================================================ */

:root {
  --bg: #f8f9fb;
  --bg-deep: #eef0f4;
  --foreground: #2b3039;
  --muted: #6b7080;
  --blue: #3778e5;
  --blue-hover: #2563eb;
  --border: rgba(43, 48, 57, 0.1);
  --card-bg: #ffffff;
  --cyan: #0891b2;
  --violet: #7c3aed;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ui-font: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --noise: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAXCAYAAADgKtSgAAAA40lEQVR4nGNgIAEEBYWJwNje3v5CpOhliI1NxNDg5ualDmNbWdmJk2QgNiAvryxKsSGDGgQHh+tTxSAFBRUDT09fNRA7KSlNDFkOnY+uUYFUyxQVVY3IcyYVgK6uIWlJNTk5XZdmrsEF5OSUDMnSaGFhY4ouFhgYaokulpycLkum21CBs7O7DDZxGxsHeQxBIyMzraCgMEwJIoCJiYUWOfoGDnh5ZxFfiKmra5uTqkdLS0+SaMVyckoDlwtpCiwsbHRI1mRtbU//bG5mZmWopKRGVIHk7OwuTFXLExNTiU8tlAIAKgceGqrxEzkAAAAASUVORK5CYII=");
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
}

body {
  font-family: var(--ui-font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--foreground);
  background-color: var(--bg);
  background-image: var(--noise);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

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

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

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

/* ============================================================
   Particle background (light theme: soft gray-blue dots)
   ============================================================ */

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ============================================================
   Boot loader (keep dark for brand pop)
   ============================================================ */

#app-boot-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--ui-font);
  background:
    radial-gradient(circle at 18% 16%, rgb(34 211 238 / 0.16), transparent 30%),
    radial-gradient(circle at 80% 12%, rgb(139 92 246 / 0.14), transparent 34%),
    linear-gradient(135deg, #050505 0%, #09090b 52%, #0b1020 100%);
  transition: opacity 320ms ease, visibility 320ms ease;
}

body.app-ready #app-boot-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.app-boot-loader__content {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.app-boot-loader__mark {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    conic-gradient(from 0deg, #22d3ee, #60a5fa, #a78bfa, #22d3ee) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 42px rgb(96 165 250 / 0.28);
  animation: app-boot-spin 1.2s linear infinite;
}

.app-boot-loader__mark::after {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: inherit;
  background: linear-gradient(135deg, #22d3ee, #a78bfa);
  box-shadow: 0 0 22px rgb(34 211 238 / 0.36);
}

.app-boot-loader__title {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: 0.3em;
}

.app-boot-loader__subtitle {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.5;
}

@keyframes app-boot-spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   Shell
   ============================================================ */

.mhy-home {
  position: relative;
  height: 100dvh;
  overflow: hidden;
}

/* ============================================================
   Top bar (light)
   ============================================================ */

.mhy-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 249, 251, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.mhy-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
}

.mhy-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mhy-logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
}

.mhy-logo__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mhy-logo__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--foreground);
}

.mhy-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mhy-nav__item {
  position: relative;
  padding: 4px 14px;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
  text-align: center;
  line-height: 1.25;
}

.mhy-nav__item span,
.mhy-nav__item em {
  display: block;
}

.mhy-nav__item em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(43, 48, 57, 0.45);
  margin-top: 2px;
  text-transform: uppercase;
}

.mhy-nav__item:hover {
  color: var(--foreground);
}

.mhy-nav__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width 0.25s;
}

.mhy-nav__item.is-active {
  color: var(--foreground);
  font-weight: 600;
}

.mhy-nav__item.is-active::after {
  width: 20px;
}

.mhy-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.mhy-lang__item {
  padding: 4px 6px;
  color: var(--muted);
  transition: color 0.2s;
}

.mhy-lang__item:hover {
  color: var(--foreground);
}

.mhy-lang__item.is-active {
  color: var(--blue);
  font-weight: 600;
}

.mhy-lang__sep {
  color: rgba(43, 48, 57, 0.3);
}

@media (max-width: 640px) {
  .mhy-nav {
    display: none;
  }
}

/* ============================================================
   Fullpage container
   ============================================================ */

.fp-container {
  position: relative;
  height: 100dvh;
  transition: transform 0.9s var(--ease);
  will-change: transform;
}

.fp-page {
  position: relative;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   Right dot nav
   ============================================================ */

.fp-dots {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fp-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.18);
  transition: background 0.3s, transform 0.3s;
}

.fp-dot:hover {
  background: rgba(0, 0, 0, 0.35);
}

.fp-dot.is-active {
  background: var(--blue);
  transform: scale(1.3);
}

/* ============================================================
   Buttons
   ============================================================ */

.mhy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  height: 48px;
  border-radius: 6px;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
}

.mhy-btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 20px rgba(55, 120, 229, 0.25);
}

.mhy-btn--primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

.mhy-btn--ghost-dark {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--foreground);
}

.mhy-btn--ghost-dark:hover {
  background: rgba(0, 0, 0, 0.04);
}

.mhy-btn--disabled {
  background: rgba(0, 0, 0, 0.06);
  color: var(--muted);
  cursor: default;
}

.mhy-btn--sm {
  height: 32px;
  padding: 0 16px;
  font-size: 12px;
}

/* ============================================================
   Screen 0 — brand hero (light, mihoyo-style)
   ============================================================ */

.fp-page--0 {
  background-image: var(--noise), linear-gradient(180deg, #f6f8fc 0%, #e9edf4 100%);
  background-color: #e9edf4;
}

.brand-hero {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.brand-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.brand-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: orb-drift 14s ease-in-out infinite alternate;
}

.brand-hero__orb--1 {
  width: 480px;
  height: 480px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.28), transparent 65%);
}

.brand-hero__orb--2 {
  width: 520px;
  height: 520px;
  bottom: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.24), transparent 65%);
  animation-delay: -5s;
}

.brand-hero__orb--3 {
  width: 360px;
  height: 360px;
  top: 40%;
  left: 55%;
  background: radial-gradient(circle, rgba(55, 120, 229, 0.18), transparent 65%);
  animation-delay: -9s;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, -30px) scale(1.08); }
}

.brand-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-hero__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(28px);
}

.brand-hero__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fp-page--0.is-active .brand-hero__mark {
  animation: hero-rise 0.9s var(--ease) 0.1s forwards;
}

.brand-hero__slogan {
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--foreground);
  opacity: 0;
  transform: translateY(28px);
}

.fp-page--0.is-active .brand-hero__slogan {
  animation: hero-rise 0.9s var(--ease) 0.3s forwards;
}

.brand-hero__sub {
  margin-top: 18px;
  font-size: 16px;
  letter-spacing: 0.16em;
  color: var(--muted);
  opacity: 0;
  transform: translateY(28px);
}

.fp-page--0.is-active .brand-hero__sub {
  animation: hero-rise 0.9s var(--ease) 0.5s forwards;
}

.brand-hero__actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(28px);
}

.fp-page--0.is-active .brand-hero__actions {
  animation: hero-rise 0.9s var(--ease) 0.7s forwards;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll tip (mihoyo-style) */
.scroll-tip {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-tip__mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  position: relative;
}

.scroll-tip__mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: var(--blue);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-wheel 1.6s var(--ease) infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 12px); }
  100% { opacity: 0; }
}

.scroll-tip__arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(0, 0, 0, 0.25);
  border-bottom: 2px solid rgba(0, 0, 0, 0.25);
  transform: rotate(45deg);
  animation: scroll-bounce 1.6s var(--ease) infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(4px, 4px); }
}

/* ============================================================
   Screen 1 — lineup
   ============================================================ */

.fp-page--1 {
  background-image: var(--noise);
  background-color: var(--bg);
}

.lineup {
  position: relative;
  z-index: 2;
  width: min(1160px, 92%);
  margin: 0 auto;
}

.lineup__head {
  margin-bottom: 2px;
}

.lineup__eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--cyan);
  margin-bottom: 12px;
  font-weight: 600;
}

.lineup__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--foreground);
}

.lineup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (max-width: 1100px) {
  .lineup__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .lineup__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .lineup {
    width: min(1160px, 94%);
  }
  .lineup__head {
    margin-bottom: 0;
  }
  .lineup__eyebrow {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .lineup__title {
    font-size: 1.5rem;
  }
  .lineup-card {
    border-radius: 10px;
  }
  .lineup-card__body {
    padding: 6px 10px 8px;
  }
  .lineup-card__name {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .lineup-card__desc {
    font-size: 11px;
    line-height: 14px;
    max-height: 28px;
    overflow: hidden;
    margin-bottom: 4px;
  }
  .lineup-card__desc em {
    font-size: 10px;
    line-height: 14px;
  }
}

.lineup-card {
  background-color: var(--card-bg);
  background-image: var(--noise);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.lineup-card:hover {
  transform: translateY(-4px);
  border-color: rgba(55, 120, 229, 0.35);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.lineup-card__img {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s var(--ease);
}

.lineup-card:hover .lineup-card__img {
  transform: scale(1.04);
}

.lineup-card__body {
  padding: 8px 12px 10px;
}

.lineup-card__name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--foreground);
}

.lineup-card__name span {
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
}

.lineup-card__desc {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 8px;
}

.lineup-card__desc em {
  font-style: normal;
  font-size: 11px;
  color: rgba(43, 48, 57, 0.45);
}

/* ============================================================
   Screen 2 — about
   ============================================================ */

.fp-page--2 {
  background-image: var(--noise);
  background-color: var(--bg-deep);
  color: var(--foreground);
}

.about {
  position: relative;
  z-index: 2;
  width: min(900px, 90%);
  margin: 0 auto;
  text-align: center;
}

.about__tabs {
  display: inline-flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.about__tab {
  position: relative;
  padding: 12px 32px;
  font-size: 16px;
  color: var(--muted);
  transition: color 0.25s;
  line-height: 1.3;
}

.about__tab em {
  display: block;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(43, 48, 57, 0.45);
  margin-top: 2px;
}

.about__tab.is-active em {
  color: rgba(21, 78, 157, 0.45);
}

.about__tab:hover {
  color: var(--foreground);
}

.about__tab.is-active {
  color: var(--blue);
  font-weight: 600;
}

.about__tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--blue);
}

.about__panels {
  position: relative;
  min-height: 300px;
}

.about__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), visibility 0.6s;
}

.about__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.about__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.35;
}

.about__title-en {
  display: block;
  margin-top: 8px;
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(43, 48, 57, 0.45);
}

.about__text {
  max-width: 640px;
  margin: 0 auto 12px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.about__text-en {
  font-size: 12px;
  color: rgba(43, 48, 57, 0.45);
  line-height: 1.6;
}

/* ============================================================
   Screen 3 — news
   ============================================================ */

.fp-page--3 {
  background-image: var(--noise);
  background-color: var(--bg);
}

.news {
  position: relative;
  z-index: 2;
  width: min(1100px, 92%);
  margin: 0 auto;
}

.news__eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--cyan);
  margin-bottom: 12px;
  font-weight: 600;
}

.news__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  color: var(--foreground);
  line-height: 1.35;
}

.news__title-en {
  display: inline-block;
  margin-left: 12px;
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(43, 48, 57, 0.45);
  vertical-align: middle;
}

.news__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

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

.news__first {
  cursor: pointer;
}

.news__first-img {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s var(--ease);
}

.news__first:hover .news__first-img {
  transform: scale(1.02);
}

.news__first-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--foreground);
}

.news__first-date {
  font-size: 12px;
  color: var(--muted);
}

.news__list {
  display: flex;
  flex-direction: column;
}

.news__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.news__item:hover {
  color: var(--blue);
}

.news__item-date {
  font-size: 12px;
  color: var(--muted);
  min-width: 48px;
  font-variant-numeric: tabular-nums;
}

.news__item-title {
  font-size: 14px;
}

/* ============================================================
   Screen 4 — contact
   ============================================================ */

.fp-page--4 {
  background-image: var(--noise);
  background-color: var(--bg);
}

.contact {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(700px, 90%);
  margin: 0 auto;
}

.contact__eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--cyan);
  margin-bottom: 16px;
  font-weight: 600;
}

.contact__title {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: var(--foreground);
  line-height: 1.35;
}

.contact__title-en {
  display: inline-block;
  margin-left: 12px;
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(43, 48, 57, 0.45);
  vertical-align: middle;
}

.contact__copy {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 36px;
}

.contact__copy em {
  font-style: normal;
  font-size: 13px;
  color: rgba(43, 48, 57, 0.45);
}

.contact__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.contact__socials {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.contact__socials a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.contact__socials a:hover {
  color: var(--blue);
}

/* ============================================================
   Footer
   ============================================================ */

.mhy-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 14px 0 18px;
  text-align: center;
  pointer-events: none;
}

.mhy-footer p {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 640px) {
  .fp-dots {
    right: 10px;
  }
}

/* ============================================================
   Mobile (<=900px): normal page scroll, no fullpage
   ============================================================ */

@media (max-width: 900px) {
  body {
    overflow: visible;
  }
  .mhy-home {
    height: auto;
    overflow: visible;
  }
  .fp-container {
    height: auto;
    transform: none !important;
  }
  .fp-page {
    height: auto;
    overflow: visible;
    padding: 92px 0 56px;
    scroll-margin-top: 64px;
  }
  .fp-page--0 {
    min-height: 100svh;
    padding: 0;
  }
  .fp-dots {
    display: none;
  }
  .mhy-footer {
    position: static;
    padding: 18px 0 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-hero__mark,
  .brand-hero__slogan,
  .brand-hero__sub,
  .brand-hero__actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
