@font-face {
  font-family: "XiangYu";
  src: url("/assets/font1.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --black: #090909;
  --paper: #f2f0e9;
  --white: #ffffff;
  --line: rgba(9, 9, 9, 0.22);
  --blue: #1f52ff;
  --orange: #ff6433;
  --header-height: 86px;
  --text-h1-size: clamp(58px, 7.1vw, 112px);
  --text-h2-size: clamp(46px, 6vw, 94px);
  --text-h2-display-size: clamp(74px, 10vw, 158px);
  --text-h2-panel-size: clamp(78px, 11vw, 178px);
  --text-h2-split-size: clamp(64px, 7vw, 110px);
  --text-h3-size: 16px;
  --text-body-lg-size: 17px;
  --text-body-size: 15px;
}

* {
  box-sizing: border-box;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: "XiangYu", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--black);
  color: var(--white);
}

.text-h1,
.text-h2,
.text-h2-display,
.text-h2-panel,
.text-h2-split,
.text-h3 {
  margin-top: 0;
  font-family: "XiangYu", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 500;
}

.text-h1 {
  font-size: var(--text-h1-size);
  line-height: 0.94;
  letter-spacing: -0.068em;
}

.text-h2 {
  font-size: var(--text-h2-size);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.text-h2-display {
  font-size: var(--text-h2-display-size);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.text-h2-panel {
  font-size: var(--text-h2-panel-size);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.text-h2-split {
  font-size: var(--text-h2-split-size);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.text-h3 {
  font-size: var(--text-h3-size);
}

.text-body-lg {
  font-size: var(--text-body-lg-size);
  line-height: 1.7;
}

.text-body {
  font-size: var(--text-body-size);
  line-height: 1.65;
}

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 0;
  height: 2px;
  background: var(--orange);
  pointer-events: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding: 0 clamp(22px, 4vw, 64px);
  background: transparent;
}

.brand {
  display: block;
  width: clamp(142px, 12vw, 176px);
  line-height: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
  height: 100%;
}

.main-nav > a {
  position: relative;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 180ms ease;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(9, 9, 9, 0.38);
}

.nav-cta span {
  margin-left: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 14px 10px;
  background: transparent;
  border: 0;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--black);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #b9d5ea;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    url("./assets/images/hero.png") center 52% / cover no-repeat;
  transform: scale(1.015);
  filter: saturate(0.88) contrast(0.96);
  animation: hero-arrive 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(232, 242, 248, 0.28), transparent 35%),
    linear-gradient(90deg, rgba(218, 235, 245, 0.2), transparent 58%),
    linear-gradient(0deg, rgba(36, 32, 27, 0.12), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding: clamp(145px, 17vh, 190px) clamp(24px, 4vw, 64px) 82px;
}

.eyebrow,
.section-index,
.section-kicker,
.business-heading > span,
.split-content > span {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .text-h1 {
  max-width: 900px;
  margin: 26px 0 0;
}

.hero-note {
  justify-self: end;
  max-width: 300px;
  padding-top: 2px;
  --text-body-size: 14px;
}

.hero-note p {
  margin: 0 0 8px;
}

.hero-note strong {
  font-weight: 800;
}

.hero-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 196px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(9, 9, 9, 0.65);
  font-size: 13px;
  font-weight: 600;
}

.hero-link-arrow {
  font-size: 18px;
  transition: transform 200ms ease;
}

.hero-link:hover .hero-link-arrow {
  transform: translate(4px, 4px);
}

.hero-bottom {
  align-self: end;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-industries {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 38px);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.72;
}

.section {
  padding: 0 32px;
}

.section-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 130px;
  border-bottom: 1px solid var(--black);
}

.section-kicker {
  justify-self: end;
}

.about {
  padding-top: 80px;
  background: var(--paper);
}

.about-statement {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.72fr);
  gap: 9vw;
  padding: 94px 0 120px;
}

.about-statement .text-h2 {
  margin: 0;
}

.about-statement h2 span {
  color: #9b9a94;
}

.about-statement > p {
  align-self: end;
  max-width: 380px;
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.metric,
.about-principle {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.metric {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-number {
  font-size: clamp(66px, 7vw, 112px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.07em;
}

.metric-label,
.about-principle p {
  font-size: 12px;
  font-weight: 700;
}

.about-principle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--orange);
}

.about-principle p {
  margin: 0;
}

.about-principle strong {
  font-size: clamp(28px, 3vw, 47px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.marquee {
  width: calc(100% + 64px);
  margin-left: -32px;
  padding: 68px 0 72px;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.marquee span {
  padding-right: 0.3em;
  font-size: clamp(84px, 12vw, 190px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.business-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.35fr);
  grid-template-rows: 1fr auto;
  min-height: 96svh;
  padding: 34px;
  overflow: hidden;
  color: var(--white);
  border-top: 1px solid var(--black);
}

.business-image,
.business-overlay,
.technology-grid {
  position: absolute;
  inset: 0;
}

.business-image {
  background-position: center;
  background-size: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.business-panel:hover .business-image {
  transform: scale(1.025);
}

.image-investment {
  background-image: url("./assets/images/investment.png");
}

.image-technology {
  background-image: url("./assets/images/technology.png");
}

.business-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 45%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 48%);
}

.business-heading,
.business-copy,
.tech-data {
  position: relative;
  z-index: 2;
}

.business-heading .text-h2-panel {
  margin: 12px 0 0;
}

.business-copy {
  align-self: end;
  grid-column: 2;
  padding-bottom: 12px;
}

.business-lead {
  margin: 0 0 12px;
  font-size: 25px !important;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.business-copy > p {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
}

.business-copy a {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.technology {
  min-height: 100svh;
  background: var(--black);
}

.technology-grid {
  z-index: 1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 80px 80px;
}

.tech-data {
  position: absolute;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.technology .business-copy {
  margin-bottom: 54px;
}

.culture-education {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-panel {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
}

.split-image,
.split-shade,
.education-lines {
  position: absolute;
  inset: 0;
}

.split-image {
  background: url("./assets/images/culture.png") center / cover no-repeat;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.split-panel:hover .split-image {
  transform: scale(1.03);
}

.split-shade {
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.68));
}

.split-content {
  position: absolute;
  z-index: 2;
  inset: auto 32px 32px;
}

.split-content .text-h2-split {
  margin: 10px 0 24px;
}

.split-content p {
  max-width: 370px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.split-content a {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid currentColor;
  font-size: 22px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.split-culture .split-content a:hover {
  background: var(--white);
  color: var(--black);
}

.split-education .split-content a:hover {
  background: var(--black);
  color: var(--white);
}

.split-culture {
  color: var(--white);
}

.split-education {
  background: #bad8f0;
}

.education-lines {
  opacity: 0.72;
  background:
    linear-gradient(90deg, transparent 49.9%, var(--black) 50%, transparent 50.1%),
    linear-gradient(155deg, transparent 49.9%, var(--black) 50%, transparent 50.1%),
    linear-gradient(25deg, transparent 49.9%, var(--black) 50%, transparent 50.1%);
}

.split-education::before {
  position: absolute;
  top: 49%;
  left: 50%;
  z-index: 1;
  width: min(34vw, 450px);
  aspect-ratio: 1;
  content: "";
  background: rgba(239, 241, 255, 0.82);
  border: 1px solid var(--black);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.75);
}

.split-education .split-content {
  top: 32px;
  bottom: auto;
}

.split-education .split-content p {
  max-width: 310px;
}

.education-quote {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-align: right;
}

.company-culture {
  padding-top: 80px;
  padding-bottom: 100px;
  background: var(--orange);
  border-top: 1px solid var(--black);
}

.culture-intro {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 10vw;
  padding: 90px 0 120px;
}

.culture-intro .text-h2-display {
  margin: 0;
}

.culture-intro p {
  align-self: end;
  max-width: 390px;
  margin: 0;
  line-height: 1.65;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.value {
  min-height: 280px;
  padding: 22px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.value span {
  display: inline-block;
  margin-bottom: 88px;
  font-size: 11px;
  font-weight: 700;
}

.value .text-h3 {
  margin: 0 0 18px;
}

.value p {
  max-width: 230px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.contact {
  position: relative;
  min-height: 94svh;
  padding: 34px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.contact-orbit {
  position: absolute;
  top: 50%;
  left: 72%;
  width: min(60vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%) rotate(28deg);
}

.contact-orbit::before,
.contact-orbit::after,
.contact-orbit span {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-orbit::after {
  inset: 25%;
}

.contact-orbit span:first-child {
  inset: 38%;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 100px rgba(31, 82, 255, 0.5);
}

.contact-orbit span:last-child {
  inset: 49.5% auto auto 49.5%;
  width: 4px;
  height: 4px;
  background: var(--white);
  border: 0;
}

.contact-content {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 44px;
  left: 34px;
}

.contact .text-h2-display {
  max-width: 1050px;
  margin: 0 0 70px;
  --text-h2-display-size: clamp(70px, 10.5vw, 164px);
}

.contact-content > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  font-size: clamp(18px, 2vw, 30px);
}

.site-footer {
  padding: 86px clamp(24px, 4vw, 64px) 28px;
  background: #ecebe6;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(460px, 1fr);
  gap: 10vw;
  padding-bottom: 90px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand img {
  display: block;
  width: clamp(190px, 19vw, 270px);
  height: auto;
}

.footer-brand p {
  max-width: 320px;
  margin: 42px 0 0;
  color: rgba(9, 9, 9, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav p {
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 700;
}

.footer-nav a {
  margin-bottom: 13px;
  color: rgba(9, 9, 9, 0.56);
  font-size: 12px;
  transition: color 180ms ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(9, 9, 9, 0.18);
  color: rgba(9, 9, 9, 0.52);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 28px;
}

.footer-bottom a {
  transition: color 180ms ease;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes hero-arrive {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

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

@media (max-width: 960px) {
  :root {
    --header-height: 60px;
  }

  .site-header {
    padding: 0 22px;
    background: transparent;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100svh;
    background: var(--paper);
    transform: translateY(-105%);
    transition: transform 320ms cubic-bezier(0.7, 0, 0.2, 1);
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav > a {
    width: 100%;
    height: auto;
    padding: 20px;
    border-top: 1px solid var(--black);
    font-size: 24px;
  }

  .main-nav > a::after {
    display: none;
  }

  .main-nav .nav-cta {
    display: grid;
    margin-left: 0;
    border-bottom: 1px solid var(--black);
  }

  .hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    padding-top: 132px;
  }

  .hero .text-h1 {
    --text-h1-size: clamp(58px, 12vw, 92px);
  }

  .hero-note {
    justify-self: start;
    margin-top: 34px;
  }

  .hero-link {
    width: 176px;
  }

  .hero-bottom {
    gap: 36px;
  }

  .hero-industries {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 8px 24px;
  }

  .about-statement,
  .culture-intro {
    grid-template-columns: 1fr;
  }

  .about-statement > p,
  .culture-intro p {
    max-width: 620px;
  }

  .about-grid,
  .values {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-panel {
    grid-template-columns: 1fr;
  }

  .business-copy {
    grid-column: 1;
    max-width: 390px;
  }

  .culture-education {
    grid-template-columns: 1fr;
  }

  .split-panel {
    min-height: 760px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 126px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    min-height: 100svh;
    padding: 116px 18px 30px;
  }

  .hero-media {
    background-position: 57% 50%;
  }

  .hero .text-h1 {
    margin-top: 16px;
    --text-h1-size: clamp(50px, 16vw, 72px);
    line-height: 0.98;
  }

  .hero-note {
    max-width: 250px;
    font-size: 13px;
  }

  .hero-bottom {
    align-items: flex-end;
  }

  .hero-industries {
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: 8px;
    text-align: right;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-top {
    min-height: 92px;
  }

  .about {
    padding-top: 40px;
  }

  .about-statement {
    gap: 44px;
    padding: 62px 0 76px;
  }

  .about-statement .text-h2 {
    --text-h2-size: 45px;
  }

  .about-statement > p {
    font-size: 15px;
  }

  .about-grid,
  .values {
    grid-template-columns: 1fr;
  }

  .metric,
  .about-principle {
    min-height: 190px;
  }

  .marquee {
    width: calc(100% + 36px);
    margin-left: -18px;
    padding: 48px 0;
  }

  .business-panel {
    min-height: 90svh;
    padding: 22px 18px;
  }

  .business-heading .text-h2-panel {
    --text-h2-panel-size: 68px;
  }

  .business-copy {
    padding-bottom: 20px;
  }

  .tech-data {
    right: 18px;
    left: 18px;
  }

  .tech-data span:nth-child(2) {
    display: none;
  }

  .split-panel {
    min-height: 680px;
  }

  .split-content {
    right: 18px;
    bottom: 24px;
    left: 18px;
  }

  .split-content .text-h2-split {
    --text-h2-split-size: 66px;
  }

  .split-content p {
    max-width: calc(100% - 72px);
  }

  .split-education .split-content {
    top: 24px;
  }

  .education-quote {
    right: 18px;
    bottom: 22px;
    left: 18px;
  }

  .company-culture {
    padding-top: 40px;
    padding-bottom: 70px;
  }

  .culture-intro {
    gap: 48px;
    padding: 64px 0 80px;
  }

  .culture-intro .text-h2-display {
    --text-h2-display-size: 68px;
  }

  .culture-intro p {
    font-size: 15px;
  }

  .value {
    min-height: 210px;
  }

  .value span {
    margin-bottom: 54px;
  }

  .contact {
    min-height: 82svh;
    padding: 24px 18px;
  }

  .contact-orbit {
    left: 74%;
    width: 100vw;
  }

  .contact-content {
    right: 18px;
    bottom: 28px;
    left: 18px;
  }

  .contact .text-h2-display {
    margin-bottom: 50px;
    --text-h2-display-size: 61px;
  }

  .site-footer {
    padding: 64px 18px 24px;
  }

  .footer-main {
    gap: 58px;
    padding-bottom: 58px;
  }

  .footer-brand p {
    margin-top: 28px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 24px;
    flex-direction: column;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
