:root {
  color-scheme: light;
  --bg: #f4f9ff;
  --bg-soft: #eef6ff;
  --line: rgba(68, 139, 255, 0.18);
  --line-strong: rgba(68, 139, 255, 0.3);
  --text: #0d1b3d;
  --muted: #5573a8;
  --primary: #1f6dff;
  --primary-deep: #124ac8;
  --primary-soft: rgba(31, 109, 255, 0.12);
  --white: #ffffff;
  --shadow: 0 36px 90px rgba(18, 74, 200, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
  font-family: "HarmonyOS Sans SC", "Avenir Next", "PingFang SC", "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(119, 197, 255, 0.35), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(63, 134, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f3f8ff 42%, #edf4ff 100%);
}

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

picture {
  display: block;
  line-height: 0;
}

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

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 3vw, 40px);
  background: rgba(244, 249, 255, 0.75);
  border-bottom: 1px solid rgba(68, 139, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 243, 255, 0.9));
  box-shadow:
    0 18px 40px rgba(59, 138, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}

.brand-mark picture,
.hero-visual picture,
.feature-visual picture,
.pro-mark picture,
.pro-visual-wide picture,
.pro-gallery picture {
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.product-pill:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: 0 12px 30px rgba(31, 109, 255, 0.12);
}

.product-pill.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary) 0%, #5c9bff 100%);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(31, 109, 255, 0.22);
}

.product-pill.is-gold {
  border-color: transparent;
  background: linear-gradient(135deg, #8f6728 0%, #c79a54 52%, #f4d090 100%);
  color: #170f06;
  box-shadow: 0 16px 32px rgba(184, 138, 55, 0.28);
}

.product-pill.is-disabled {
  color: rgba(13, 27, 61, 0.48);
  cursor: not-allowed;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 5vw, 64px) clamp(18px, 3vw, 40px) clamp(56px, 7vw, 92px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  min-height: calc(100svh - 110px);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(77, 151, 255, 0.18);
  border-radius: 999px;
  filter: blur(0.2px);
  animation: orbitDrift 18s ease-in-out infinite alternate;
}

.hero-orbit-left {
  width: 52vw;
  height: 52vw;
  max-width: 760px;
  max-height: 760px;
  left: -10vw;
  top: 3vh;
}

.hero-orbit-right {
  width: 32vw;
  height: 32vw;
  max-width: 420px;
  max-height: 420px;
  right: 3vw;
  top: 12vh;
  animation-duration: 15s;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.hero-subtitle {
  margin: 20px 0 0;
  max-width: 8em;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 800;
}

.hero-subtitle-track {
  position: relative;
  display: inline-block;
  padding: 0 0.08em;
  color: #102247;
  transition: color 520ms ease, text-shadow 520ms ease;
}

.hero-subtitle-track.is-active {
  color: transparent;
  background-image: radial-gradient(circle at var(--hover-x, 50%) var(--hover-y, 50%), #2f7cff 0%, #58a8ff 30%, #0d1b3d 68%);
  background-size: 180% 180%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 18px rgba(72, 145, 255, 0.18);
}

.hero-description,
.feature-copy p,
.final-cta p {
  margin: 18px 0 0;
  max-width: 30em;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #b8141a 0%, #d92c31 42%, #f04d44 100%);
  color: var(--white);
  box-shadow: 0 20px 40px rgba(224, 49, 49, 0.24);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.hero-download-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(85, 115, 168, 0.86);
}

.button[disabled] {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid rgba(68, 139, 255, 0.16);
}

.hero-proof li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  inset: 18% 14% 12%;
  background:
    radial-gradient(circle at 50% 32%, rgba(142, 212, 255, 0.68), transparent 40%),
    radial-gradient(circle at 58% 66%, rgba(53, 127, 255, 0.24), transparent 42%);
  filter: blur(36px);
  transform: scale(1.05);
}

.hero-shot {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  filter: drop-shadow(0 36px 72px rgba(38, 97, 214, 0.22));
  animation: floatDevice 6.2s ease-in-out infinite;
}

.highlights,
.feature,
.final-cta {
  position: relative;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 3vw, 40px);
}

.section-head {
  max-width: 760px;
}

.section-head h2,
.feature-copy h2,
.final-cta h2,
.pro-copy h2,
.pro-story h3 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.honor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
  padding-top: 12px;
}

.honor-grid article {
  position: relative;
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(68, 139, 255, 0.22);
}

.honor-grid span {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

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

.honor-grid article.honor-emphasis {
  padding: 18px 18px 18px 26px;
  margin: -8px 0;
  border-left-color: transparent;
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 225, 163, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(246, 236, 212, 0.88));
  box-shadow:
    0 18px 40px rgba(164, 126, 54, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -18px 40px rgba(214, 181, 110, 0.1);
  overflow: hidden;
}

.honor-grid article.honor-emphasis span {
  color: #9b6720;
  text-shadow: 0 8px 24px rgba(182, 135, 49, 0.16);
}

.honor-grid article.honor-emphasis p {
  color: #7f6341;
}

.honor-grid article.honor-emphasis::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe0a0 0%, #c58d2f 100%);
  pointer-events: none;
}

.honor-grid article.honor-emphasis::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 233, 184, 0.4) 0%, rgba(255, 214, 130, 0.12) 34%, rgba(255, 211, 122, 0) 72%);
  pointer-events: none;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
}

.feature-reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 440px);
}

.feature-reverse .feature-copy {
  order: 2;
}

.feature-reverse .feature-visual {
  order: 1;
}

.feature-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: 14% 10% 12%;
  background:
    radial-gradient(circle at 50% 35%, rgba(129, 198, 255, 0.34), transparent 46%),
    radial-gradient(circle at 60% 70%, rgba(50, 118, 255, 0.16), transparent 44%);
  filter: blur(30px);
  transform: scale(1.04);
  pointer-events: none;
}

.feature-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  filter:
    drop-shadow(0 12px 18px rgba(255, 255, 255, 0.74))
    drop-shadow(0 34px 74px rgba(30, 84, 196, 0.2));
  transition: transform 360ms ease, filter 360ms ease;
}

.feature-visual:hover img {
  transform: translateY(-8px) scale(1.01);
  filter:
    drop-shadow(0 14px 20px rgba(255, 255, 255, 0.78))
    drop-shadow(0 40px 84px rgba(30, 84, 196, 0.26));
}

.final-cta {
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(60px, 8vw, 96px);
  text-align: center;
}

.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.final-actions {
  justify-content: center;
}

.pro-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 128px) clamp(18px, 3vw, 40px);
  color: #f5ead5;
  background:
    radial-gradient(circle at 18% 18%, rgba(233, 190, 103, 0.12), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(255, 213, 124, 0.08), transparent 22%),
    linear-gradient(180deg, #080706 0%, #0f0c09 34%, #13100b 100%);
}

.pro-backdrop {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(238, 195, 108, 0.12);
  pointer-events: none;
}

.pro-backdrop-left {
  width: 38vw;
  height: 38vw;
  left: -8vw;
  top: 6vh;
}

.pro-backdrop-right {
  width: 24vw;
  height: 24vw;
  right: 2vw;
  top: 18vh;
}

.pro-hero,
.pro-detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
}

.pro-detail {
  margin-top: clamp(64px, 9vw, 108px);
  grid-template-columns: minmax(320px, 1.08fr) minmax(0, 420px);
}

.pro-kicker {
  margin: 0 0 14px;
  color: #d4ac69;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pro-description,
.pro-story p,
.pro-story-lines p,
.pro-download-band p {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(245, 234, 213, 0.72);
}

.pro-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pro-points li {
  padding-left: 18px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 234, 213, 0.82);
}

.pro-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6dc9e 0%, #b87d27 100%);
  box-shadow: 0 0 16px rgba(247, 203, 114, 0.34);
}

.pro-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button-pro-primary {
  color: #130d05;
  background: linear-gradient(135deg, #8c6223 0%, #c79a54 44%, #f2d18f 100%);
  box-shadow: 0 18px 44px rgba(161, 115, 42, 0.26);
}

.button-pro-secondary {
  border-color: rgba(240, 206, 135, 0.28);
  background: rgba(23, 17, 10, 0.78);
  color: #f4e2bc;
  box-shadow: inset 0 1px 0 rgba(255, 226, 165, 0.08);
}

.pro-warning {
  margin: 16px 0 0;
  max-width: 34em;
  font-size: 14px;
  line-height: 1.75;
  color: #f2c980;
}

.pro-visual-wide {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.pro-visual-wide::before {
  content: "";
  position: absolute;
  inset: 14% 10% 12%;
  background:
    radial-gradient(circle at 42% 34%, rgba(235, 195, 113, 0.28), transparent 36%),
    radial-gradient(circle at 68% 64%, rgba(151, 97, 22, 0.18), transparent 38%);
  filter: blur(42px);
}

.pro-mark {
  position: absolute;
  left: clamp(8px, 2vw, 20px);
  top: clamp(8px, 2vw, 20px);
  z-index: 2;
  width: clamp(72px, 8vw, 104px);
  aspect-ratio: 1;
  padding: 8px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 16, 10, 0.92), rgba(40, 29, 14, 0.84));
  border: 1px solid rgba(237, 195, 112, 0.18);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
}

.pro-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.pro-wide-shot {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  border-radius: 30px;
  box-shadow:
    0 1px 0 rgba(255, 233, 193, 0.12),
    0 36px 84px rgba(0, 0, 0, 0.42);
}

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

.pro-gallery picture {
  width: 100%;
}

.pro-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(231, 196, 122, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 241, 209, 0.04),
    0 30px 72px rgba(0, 0, 0, 0.38);
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.pro-gallery img:nth-child(1),
.pro-gallery img:nth-child(3) {
  transform: translateY(24px);
}

.pro-gallery img:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(255, 241, 209, 0.08),
    0 36px 88px rgba(0, 0, 0, 0.46);
}

.pro-story {
  max-width: 440px;
}

.pro-story-lines {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.pro-story-lines div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.pro-story-lines span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #130d05;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, #8c6223 0%, #f0d091 100%);
  box-shadow: 0 12px 30px rgba(177, 129, 56, 0.22);
}

.pro-story-lines p {
  margin: 0;
}

.pro-download-band {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: clamp(60px, 8vw, 96px);
  padding-top: 26px;
  border-top: 1px solid rgba(232, 196, 122, 0.14);
}

.pro-download-band p {
  margin: 0;
  max-width: 26em;
  font-size: 18px;
  color: rgba(244, 228, 195, 0.86);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px 34px;
  border-top: 1px solid rgba(68, 139, 255, 0.12);
}

.footer a {
  font-size: 14px;
  color: var(--muted);
  transition: color 220ms ease;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(.2, .7, .2, 1);
}

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

@keyframes floatDevice {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes orbitDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2.4vw, -1.2vh, 0) scale(1.03);
  }
}

@media (max-width: 1100px) {
  .hero-inner,
  .feature,
  .feature-reverse,
  .pro-hero,
  .pro-detail {
    grid-template-columns: 1fr;
  }

  .feature-reverse .feature-copy,
  .feature-reverse .feature-visual {
    order: initial;
  }

  .hero-copy,
  .feature-copy,
  .section-head,
  .pro-copy,
  .pro-story {
    max-width: 780px;
  }

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

  .pro-gallery {
    order: 2;
  }

  .hero-visual,
  .feature-visual,
  .pro-visual-wide {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .topbar {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .product-switch {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-inner {
    min-height: auto;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 54px);
    white-space: nowrap;
  }

  .hero-subtitle {
    max-width: none;
    font-size: clamp(24px, 9vw, 36px);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .honor-grid {
    grid-template-columns: 1fr 1fr;
  }

  .button,
  .product-pill {
    width: 100%;
  }

  .hero-visual,
  .feature-visual,
  .pro-visual-wide {
    padding-inline: 0;
  }

  .hero-shot,
  .feature-visual img {
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .pro-wide-shot {
    width: 100%;
    max-width: 100%;
  }

  .pro-showcase {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .pro-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pro-gallery img:nth-child(1),
  .pro-gallery img:nth-child(3) {
    transform: none;
  }

  .pro-gallery picture {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .pro-download-band {
    align-items: flex-start;
  }

  .pro-actions .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .topbar {
    gap: 14px;
    padding-inline: 16px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }

  .hero,
  .highlights,
  .feature,
  .final-cta,
  .pro-showcase {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .hero-subtitle {
    font-size: clamp(21px, 7.5vw, 30px);
  }

  .hero-description,
  .feature-copy p,
  .final-cta p,
  .pro-description,
  .pro-story p,
  .pro-story-lines p,
  .pro-download-band p {
    font-size: 15px;
    line-height: 1.72;
  }

  .honor-grid {
    grid-template-columns: 1fr;
  }

  .hero-shot,
  .feature-visual img,
  .pro-gallery picture {
    width: min(100%, 340px);
  }

  .pro-mark {
    width: 72px;
    border-radius: 22px;
  }

  .pro-download-band {
    gap: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
