:root {
  color-scheme: light;
  --bg: #ffffff;
  --panel: rgba(255, 255, 255, 0.92);
  --ink: #111827;
  --muted: #687387;
  --quiet: #9aa3b2;
  --line: rgba(41, 55, 82, 0.12);
  --line-strong: rgba(41, 55, 82, 0.18);
  --blue: #8caaf2;
  --blue-strong: #6f95ea;
  --green: #62ca8b;
  --violet: #927bee;
  --shadow: none;
  --shadow-soft: none;
  --radius: 18px;
  --max: 1180px;
  --font: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "SF Pro Text", Inter, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #ffffff;
  font-family: var(--font);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection {
  color: #0d1322;
  background: rgba(125, 166, 255, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  min-height: 64px;
  margin: 0;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(41, 55, 82, 0.08);
  background: linear-gradient(
    180deg,
    rgba(253, 253, 255, 0.82),
    rgba(253, 253, 255, 0.48)
  );
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-actions,
.contact-button,
.language-toggle,
.primary-button,
.section-link,
.card-top,
.card-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.brand__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 28px;
  border-radius: 50%;
  filter: none;
}

.brand__icon img {
  width: 36px;
  height: 22px;
  object-fit: contain;
}

.nav-links {
  gap: clamp(30px, 3.6vw, 48px);
  margin-left: auto;
  color: #0d1322;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 8px 2px;
}

.nav-links a::after {
  display: none;
  content: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  background: transparent;
}

.nav-links a.is-active {
  color: #0d1322;
  font-weight: 600;
}

.header-actions {
  flex: 0 0 auto;
  gap: 12px;
}

.language-toggle {
  justify-content: center;
  height: 36px;
  min-width: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4e5b6f;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: none;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.contact-button {
  gap: 10px;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: #111827;
  box-shadow: none;
  font-size: 12px;
  font-weight: 600;
}

.hero {
  padding: 0 0 18px;
}

.hero__stage {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: clamp(300px, 25vw, 350px);
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(140, 170, 242, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 1));
}

.hero__copy {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 0 max(32px, calc((100vw - 1280px) / 2));
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  color: #0d1322;
  font-size: clamp(64px, 6.2vw, 88px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.hero__subtitle {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.22em;
  max-width: 680px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: #0d1322;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.35;
}

.hero-subtitle__line--ai {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
}

@media (min-width: 641px) {
  .hero-subtitle__line--ai {
    white-space: nowrap;
  }
}

.hero__subtitle em {
  color: var(--blue-strong);
  font-style: normal;
  text-shadow: none;
}

.primary-button {
  gap: 12px;
  width: fit-content;
  height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(41, 55, 82, 0.1);
  border-radius: 999px;
  color: #0d1322;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  font-size: 13px;
  font-weight: 600;
}

.product-flow {
  position: absolute;
  inset: -64px -260px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  opacity: 0.46;
  filter: saturate(0.96);
  transform: rotate(-7deg);
  transform-origin: center;
}

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

.product-flow::before {
  background:
    linear-gradient(90deg, rgba(251, 252, 254, 0.72), transparent 14%, transparent 86%, rgba(251, 252, 254, 0.72)),
    linear-gradient(180deg, rgba(251, 252, 254, 0.5), transparent 16%, transparent 82%, rgba(251, 252, 254, 0.56));
}

.product-flow::after {
  background: radial-gradient(circle at 36% 68%, rgba(255, 255, 255, 0.12), transparent 36%);
}

.product-flow__row {
  --flow-start: -120px;
  --flow-end: -650px;
  display: flex;
  gap: 44px;
  width: max-content;
  transform: translateX(var(--flow-start));
  animation: productFlow 44s linear infinite;
}

.product-flow__row--reverse {
  --flow-start: -700px;
  --flow-end: -120px;
  margin-left: 110px;
  animation-duration: 52s;
  opacity: 0.72;
}

.product-flow__row--slow {
  --flow-start: -260px;
  --flow-end: -780px;
  margin-left: 36px;
  animation-duration: 58s;
  opacity: 0.62;
}

.product-flow__row--low {
  --flow-start: -640px;
  --flow-end: -120px;
  margin-left: 180px;
  animation-duration: 54s;
  opacity: 0.5;
}

.flow-card {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  min-width: 280px;
  height: 88px;
  padding: 14px 18px;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
}

.flow-card--featured {
  background: rgba(255, 255, 255, 0.68);
}

.flow-card__icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(41, 55, 82, 0.1);
  border-radius: 14px;
  background: rgba(247, 248, 251, 0.86);
}

.flow-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.flow-card strong {
  display: block;
  margin-bottom: 5px;
  color: rgba(17, 24, 39, 0.72);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.flow-card span:not(.flow-card__icon) {
  display: block;
  color: rgba(104, 115, 135, 0.72);
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
}

.flow-card__icon--speak {
  background:
    linear-gradient(90deg, transparent 0 18%, #8a78ff 18% 29%, transparent 29% 42%, #8a78ff 42% 56%, transparent 56% 69%, #8a78ff 69% 80%, transparent 80%),
    linear-gradient(145deg, #f5f2ff, #ebe6ff);
}

.flow-card__icon--notes {
  background:
    radial-gradient(circle at 50% 50%, #65d58d 0 14px, transparent 15px),
    linear-gradient(145deg, #effbf3, #d9f5e5);
}

.flow-card__icon--local::before,
.flow-card__icon--scan::before,
.flow-card__icon--voice::before,
.flow-card__icon--interface::before {
  position: absolute;
  inset: 13px;
  border: 1.5px solid #9aa3b2;
  content: "";
}

.flow-card__icon--local::before {
  transform: rotate(30deg) skewY(-18deg);
}

.flow-card__icon--scan::before {
  border-width: 2px;
  border-radius: 7px;
  clip-path: polygon(0 0, 40% 0, 40% 22%, 22% 22%, 22% 40%, 0 40%, 0 0, 100% 0, 100% 40%, 78% 40%, 78% 22%, 60% 22%, 60% 0, 100% 0, 100% 100%, 60% 100%, 60% 78%, 78% 78%, 78% 60%, 100% 60%, 100% 100%, 0 100%, 0 60%, 22% 60%, 22% 78%, 40% 78%, 40% 100%, 0 100%);
}

.flow-card__icon--voice::before {
  inset: 12px 10px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 12%, #9aa3b2 12% 20%, transparent 20% 32%, #9aa3b2 32% 42%, transparent 42% 55%, #9aa3b2 55% 65%, transparent 65% 76%, #9aa3b2 76% 84%, transparent 84%);
}

.flow-card__icon--interface::before {
  inset: 14px 12px;
  border: 0;
  background:
    linear-gradient(135deg, transparent 36%, #9aa3b2 36% 42%, transparent 42%),
    linear-gradient(45deg, transparent 36%, #9aa3b2 36% 42%, transparent 42%);
}

.hero__glass {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(251, 252, 254, 0.24) 0%, rgba(251, 252, 254, 0.04) 38%, rgba(251, 252, 254, 0.32) 100%),
    linear-gradient(90deg, rgba(251, 252, 254, 0.32), rgba(251, 252, 254, 0.08) 54%, rgba(251, 252, 254, 0.22)),
    radial-gradient(circle at 25% 78%, rgba(255, 255, 255, 0.38), transparent 34%);
  backdrop-filter: blur(1.2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.section {
  padding: 18px 0 10px;
}

.section--compact {
  padding-top: 22px;
}

.section__inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin-bottom: 4px;
  color: #0d1322;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.section-heading p {
  margin-bottom: 0;
  color: #7b8493;
  font-size: 13px;
}

.section-link {
  gap: 10px;
  color: #273449;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

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

.product-card,
.lab-card,
.idea-card {
  border: 0;
  border-radius: var(--radius);
  background: #f5f5f4;
  box-shadow: none;
  backdrop-filter: none;
}

.product-card {
  min-height: 178px;
  padding: 18px 18px 16px;
}

.card-top {
  gap: 14px;
  margin-bottom: 22px;
}

.app-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  border: 0;
  background: #ffffff;
  box-shadow: none;
}

.app-icon--meyqo img {
  width: 44px;
  height: 44px;
}

.app-icon--xiaoliu img {
  width: 44px;
  height: 44px;
}

.app-icon--speak {
  background: linear-gradient(145deg, #f5f2ff, #ebe6ff);
}

.app-icon--speak i,
.app-icon--notes i,
.app-icon--more i {
  display: block;
  width: 24px;
  height: 24px;
}

.app-icon--speak i {
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 18%, #7861ff 18% 30%, transparent 30% 42%, #7861ff 42% 56%, transparent 56% 68%, #7861ff 68% 80%, transparent 80%);
}

.app-icon--notes {
  background: linear-gradient(145deg, #e9faef, #c8efda);
}

.app-icon--notes i {
  border-radius: 4px 18px 18px;
  background: linear-gradient(145deg, #2ecb70, #8ae5ae);
  transform: rotate(-24deg);
}

.app-icon--more {
  background: #f4f5f8;
}

.app-icon--more i {
  background:
    radial-gradient(circle at 28% 28%, #8a94a6 0 4px, transparent 5px),
    radial-gradient(circle at 72% 28%, #8a94a6 0 4px, transparent 5px),
    radial-gradient(circle at 28% 72%, #8a94a6 0 4px, transparent 5px),
    radial-gradient(circle at 72% 72%, #8a94a6 0 4px, transparent 5px);
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card h3 {
  margin-bottom: 4px;
  color: #0d1322;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.product-card p {
  margin-bottom: 0;
  color: #6f7888;
  font-size: 12px;
  line-height: 1.75;
}

.badge {
  padding: 3px 6px;
  border-radius: 7px;
  color: #5f84df;
  background: rgba(140, 170, 242, 0.16);
  font-size: 11px;
  font-weight: 600;
}

.card-footer {
  justify-content: space-between;
  margin-top: 18px;
  padding: 0;
  color: #858e9e;
  font-size: 12px;
}

.platforms {
  display: flex;
  gap: 13px;
}

.platforms i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #98a1af;
}

.circle-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: none;
  color: #111827;
  font-weight: 600;
}

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

.lab-card {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 70px;
  padding: 16px 18px;
}

.lab-card h3 {
  margin-bottom: 3px;
  color: #273244;
  font-size: 14px;
  font-weight: 600;
}

.lab-card p {
  margin-bottom: 0;
  color: #7b8493;
  font-size: 12px;
}

.lab-icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: #9aa3b2;
}

.lab-icon--cube {
  border: 1px solid currentColor;
  transform: rotate(30deg) skewY(-18deg);
}

.lab-icon--scan {
  border: 2px solid currentColor;
  border-radius: 8px;
  clip-path: polygon(0 0, 38% 0, 38% 20%, 20% 20%, 20% 38%, 0 38%, 0 0, 100% 0, 100% 38%, 80% 38%, 80% 20%, 62% 20%, 62% 0, 100% 0, 100% 100%, 62% 100%, 62% 80%, 80% 80%, 80% 62%, 100% 62%, 100% 100%, 0 100%, 0 62%, 20% 62%, 20% 80%, 38% 80%, 38% 100%, 0 100%);
}

.lab-icon--voice {
  background:
    linear-gradient(90deg, transparent 0 12%, currentColor 12% 20%, transparent 20% 32%, currentColor 32% 42%, transparent 42% 55%, currentColor 55% 65%, transparent 65% 76%, currentColor 76% 84%, transparent 84%);
  border-radius: 999px;
}

.lab-icon--layers {
  background:
    linear-gradient(135deg, transparent 36%, currentColor 36% 40%, transparent 40%),
    linear-gradient(45deg, transparent 36%, currentColor 36% 40%, transparent 40%);
}

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

.idea-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 106px;
  gap: 18px;
  align-items: center;
  min-height: 90px;
  padding: 14px 14px 14px 18px;
}

.idea-card time {
  display: block;
  margin-bottom: 8px;
  color: #9aa3b2;
  font-size: 12px;
}

.idea-card h3 {
  margin-bottom: 8px;
  color: #0d1322;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.idea-card p {
  margin-bottom: 0;
  color: #707987;
  font-size: 12px;
  line-height: 1.55;
}

.idea-art {
  position: relative;
  display: block;
  height: 72px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, rgba(255, 255, 255, 0.72));
}

.idea-art--room::before {
  position: absolute;
  inset: 12px 18px;
  border: 1px solid rgba(93, 105, 124, 0.14);
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(17, 30, 54, 0.06), transparent);
  content: "";
}

.idea-art--wave::before {
  position: absolute;
  right: -12px;
  bottom: -8px;
  width: 94px;
  height: 72px;
  border-radius: 50% 0 0 0;
  background: rgba(140, 170, 242, 0.13);
  transform: rotate(-18deg);
  content: "";
}

.idea-art--steps::before {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 56px;
  height: 58px;
  background:
    linear-gradient(90deg, transparent 0 28%, rgba(17, 30, 54, 0.08) 28% 100%),
    linear-gradient(180deg, transparent 0 32%, rgba(255, 255, 255, 0.86) 32% 46%, transparent 46% 60%, rgba(255, 255, 255, 0.86) 60% 74%, transparent 74%);
  content: "";
}

.closing {
  padding: 54px 0 20px;
}

.closing__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 9vw, 130px);
  padding: 36px 0 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.closing__copy {
  max-width: 680px;
}

.closing__label {
  display: block;
  margin-bottom: 16px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #0d1322;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 600;
  line-height: 1.18;
}

.closing__notes {
  align-self: end;
}

.closing__notes p {
  max-width: 480px;
  margin-bottom: 22px;
  color: #697383;
  font-size: 15px;
  line-height: 1.9;
}

.closing__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.closing__tags span {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5f6978;
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 500;
}

.footer {
  padding: 18px 0 42px;
  color: #858e9e;
  font-size: 13px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.footer__brand {
  justify-self: start;
  color: #596475;
  font-weight: 600;
}

.footer__links {
  display: flex;
  gap: 24px;
  justify-self: center;
}

.footer__links a {
  color: #8a94a3;
}

.footer__inner > span {
  justify-self: end;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes contentRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes productFlow {
  from {
    transform: translateX(var(--flow-start));
  }

  to {
    transform: translateX(var(--flow-end));
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

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

  .hero__stage {
    min-height: 330px;
  }

  .product-grid,
  .lab-grid,
  .idea-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    background: #ffffff;
  }

  .section__inner,
  .footer__inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header {
    gap: 12px;
    padding: 14px 16px;
  }

  .brand {
    gap: 10px;
    font-size: 16px;
  }

  .brand__icon {
    width: 32px;
    height: 24px;
  }

  .brand__icon img {
    width: 32px;
    height: 20px;
  }

  .contact-button {
    display: none;
  }

  .language-toggle {
    height: 36px;
    min-width: 40px;
  }

  .hero {
    padding: 0 0 16px;
  }

  .hero__stage {
    min-height: 230px;
  }

  .hero__copy {
    padding: 0 20px;
  }

  .hero h1 {
    max-width: 350px;
    margin-bottom: 12px;
    font-size: clamp(44px, 13vw, 54px);
    line-height: 1;
  }

  .hero__subtitle {
    max-width: 320px;
    font-size: 17px;
    line-height: 1.45;
  }

  .product-flow {
    inset: -42px -340px;
    gap: 22px;
    transform: rotate(-8deg);
  }

  .product-flow__row {
    gap: 34px;
  }

  .flow-card {
    min-width: 230px;
    height: 76px;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .flow-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .flow-card__icon img {
    width: 34px;
    height: 34px;
  }

  .flow-card strong {
    font-size: 14px;
  }

  .flow-card span:not(.flow-card__icon) {
    font-size: 11px;
  }

  .hero__glass {
    backdrop-filter: blur(1.2px);
  }

  .section-heading {
    align-items: start;
    margin-bottom: 14px;
  }

  .section-link {
    display: none;
  }

  .product-grid,
  .lab-grid,
  .idea-grid {
    grid-template-columns: 1fr;
  }

  .idea-card {
    grid-template-columns: 1fr 92px;
  }

  .closing {
    padding: 38px 0 14px;
  }

  .closing__inner {
    gap: 26px;
    padding: 30px 0 32px;
  }

  .closing__label {
    margin-bottom: 12px;
  }

  .closing h2 {
    font-size: clamp(26px, 8.4vw, 34px);
  }

  .closing__notes {
    align-self: start;
  }

  .closing__notes p {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer__brand,
  .footer__links,
  .footer__inner > span {
    justify-self: start;
  }

  .footer__links {
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
