:root {
  --ink: #1f2740;
  --deep: #111828;
  --blue-900: #26304f;
  --blue-700: #4f5d80;
  --blue-500: #7885a9;
  --mist: #dfe5f5;
  --white: #f8f9ff;
  --line: rgba(255, 255, 255, 0.34);
  --shadow: 0 24px 80px rgba(19, 26, 46, 0.28);
  --header-height: 88px;
  font-family:
    "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #eef2fb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--blue-700);
}

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

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

button {
  border: 0;
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(24px, 4vw, 72px);
  color: #fff;
  transition:
    color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(13, 19, 34, 0.56), rgba(13, 19, 34, 0));
  pointer-events: none;
  transition: opacity 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 247, 255, 0.84);
  box-shadow: 0 16px 50px rgba(19, 27, 49, 0.12);
  color: var(--blue-900);
  backdrop-filter: blur(18px);
}

.site-header[data-theme="light"]:not(.is-scrolled) {
  color: var(--blue-900);
}

.site-header[data-theme="light"]::before,
.site-header.is-scrolled::before {
  opacity: 0;
}

.brand {
  position: relative;
  z-index: 2;
  width: clamp(168px, 13vw, 220px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 300ms ease;
}

.site-header[data-theme="light"] .brand-logo,
.site-header.is-scrolled .brand-logo {
  filter: none;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.site-nav a {
  opacity: 0.9;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.login-link,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.login-link {
  padding: 0 20px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 30px rgba(22, 30, 52, 0.12);
}

.site-header[data-theme="light"]:not(.is-scrolled) .login-link {
  background: rgba(255, 255, 255, 0.72);
}

.nav-toggle {
  display: none;
}

.hero-slider {
  --hero-left: clamp(30px, 8vw, 164px);
  --hero-bottom: clamp(34px, 4.4vw, 72px);
  position: relative;
  min-height: 640px;
  height: clamp(640px, 56vw, 920px);
  overflow: hidden;
  isolation: isolate;
  background: var(--deep);
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6200ms ease;
}

.slide.is-active .slide__image {
  transform: scale(1);
}

.slide__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 35, 58, 0.34), rgba(28, 35, 58, 0.02) 52%),
    linear-gradient(180deg, rgba(10, 15, 28, 0.12), rgba(10, 15, 28, 0.1));
}

.slide__wash--light {
  background: linear-gradient(90deg, rgba(238, 243, 255, 0.2), rgba(238, 243, 255, 0));
}

.slide__content {
  position: absolute;
  left: var(--hero-left);
  top: 50%;
  width: min(760px, calc(100vw - 60px));
  color: #f9fbff;
  transform: translateY(-42%);
  opacity: 0;
  transition:
    opacity 700ms ease 160ms,
    transform 700ms ease 160ms;
}

.slide.is-active .slide__content {
  opacity: 1;
  transform: translateY(-50%);
}

.slide__content--dark {
  color: var(--blue-900);
}

.slide__content--wide {
  width: min(860px, calc(100vw - 60px));
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.slide__content--dark .eyebrow,
.section-kicker {
  color: rgba(46, 55, 86, 0.66);
}

.slide h1 {
  margin: 0;
  font-size: clamp(30px, 3vw, 56px);
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: 0;
}

.slide p:not(.eyebrow) {
  margin: 34px 0 0;
  max-width: 780px;
  font-size: clamp(18px, 1.4vw, 27px);
  line-height: 1.85;
  letter-spacing: 0.08em;
}

.primary-action,
.secondary-action {
  margin-top: 38px;
  padding: 0 34px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 30px 90px rgba(19, 26, 46, 0.32);
}

.primary-action--ink {
  color: #fff;
  background: var(--blue-900);
}

.primary-action--ink:hover,
.primary-action--ink:focus-visible {
  background: var(--deep);
}

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

.assessment-actions .primary-action,
.assessment-actions .secondary-action {
  margin-top: 0;
}

.secondary-action--inline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.secondary-action--inline:hover,
.secondary-action--inline:focus-visible {
  color: var(--blue-900);
  border-color: rgba(255, 255, 255, 0.78);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 700px;
  margin-top: 52px;
  color: #fff;
}

.metric-row span {
  display: grid;
  gap: 8px;
  padding: 0 34px;
  border-left: 1px solid var(--line);
}

.metric-row span:first-child {
  padding-left: 0;
  border-left: 0;
}

.metric-row strong {
  font-size: clamp(36px, 3.2vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.metric-row small {
  font-size: 18px;
  letter-spacing: 0.2em;
}

.hero-metrics {
  position: absolute;
  left: var(--hero-left);
  bottom: var(--hero-bottom);
  z-index: 5;
  width: min(590px, calc(100vw - var(--hero-left) - var(--hero-left)));
  margin-top: 0;
  text-shadow: 0 8px 28px rgba(12, 18, 32, 0.42);
  pointer-events: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.06);
}

.slider-arrow span {
  position: absolute;
  inset: 18px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.slider-arrow--prev {
  left: clamp(18px, 3vw, 48px);
}

.slider-arrow--prev span {
  transform: translateX(4px) rotate(-45deg);
}

.slider-arrow--next {
  right: clamp(18px, 3vw, 48px);
}

.slider-arrow--next span {
  transform: translateX(-4px) rotate(135deg);
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 4vw, 58px);
  z-index: 5;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 46px;
  height: 4px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.42);
  transition:
    width 220ms ease,
    background 220ms ease;
}

.slider-dot.is-active {
  width: 86px;
  background: #fff;
}

.slider-pause {
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  bottom: clamp(22px, 4vw, 50px);
  z-index: 5;
  min-width: 74px;
  min-height: 36px;
  border-radius: 999px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.story-section,
.power-section,
.type-section,
.closing-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--header-height);
  background-size: cover;
  background-position: center top;
}

.story-section,
.power-section,
.type-section {
  color: #fff;
}

.story-section {
  background-image:
    linear-gradient(180deg, rgba(72, 84, 123, 0.54), rgba(72, 84, 123, 0.78)),
    url("/assets/background/home-d1-q92.webp");
}

.power-section {
  background-image:
    linear-gradient(180deg, rgba(46, 55, 86, 0.62), rgba(31, 39, 64, 0.82)),
    url("/assets/background/home-d2-q92.webp");
}

.type-section {
  background-image:
    linear-gradient(180deg, rgba(62, 73, 110, 0.6), rgba(36, 44, 74, 0.84)),
    url("/assets/background/home-d3-q92.webp");
}

.story-section {
  display: grid;
  place-items: center;
  min-height: 760px;
  padding: 150px 24px 110px;
  text-align: center;
}

.story-copy {
  width: min(900px, 100%);
}

.story-copy p {
  margin: 0;
  font-size: clamp(21px, 2vw, 34px);
  line-height: 2.2;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.84);
}

.story-copy p + p {
  margin-top: 36px;
}

.story-copy .story-emphasis {
  color: #fff;
}

.scroll-cue {
  display: grid;
  gap: 12px;
  margin-top: 70px;
}

.scroll-cue span {
  width: 28px;
  height: 28px;
  border-right: 4px solid rgba(255, 255, 255, 0.72);
  border-bottom: 4px solid rgba(255, 255, 255, 0.72);
  transform: rotate(45deg);
  animation: cue 1.4s ease-in-out infinite;
}

.scroll-cue span:nth-child(2) {
  animation-delay: 120ms;
}

.scroll-cue span:nth-child(3) {
  animation-delay: 240ms;
}

.power-section {
  display: grid;
  place-items: center;
  min-height: clamp(420px, 46vw, 560px);
  padding: 94px 24px 84px;
  text-align: center;
}

.power-content h2,
.type-section h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.closing-section h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 82px);
  line-height: 1.36;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.power-content p:not(.section-kicker),
.section-heading p:not(.section-kicker),
.closing-inner p:not(.section-kicker) {
  max-width: 780px;
  margin: 26px 0 0;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.72);
}

.power-section::before,
.type-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.32;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1.3px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.4px);
  background-position:
    20px 30px,
    54px 8px;
  background-size:
    92px 78px,
    138px 104px;
}

.power-content,
.section-heading,
.type-grid,
.type-section > .secondary-action {
  position: relative;
  z-index: 1;
}

.power-content {
  width: min(760px, 100%);
}

.power-content p:not(.section-kicker) {
  max-width: 650px;
  margin: 20px auto 0;
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1.7;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.58);
}

.power-section .primary-action {
  min-height: 50px;
  margin-top: 34px;
  padding: 0 30px;
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.9);
}

.battery-panel {
  justify-self: center;
  width: min(100%, 440px);
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.battery {
  position: relative;
  height: 178px;
  padding: 18px;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
}

.battery::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 14px;
  height: 68px;
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-50%);
}

.battery__charge {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: 22px;
  background: linear-gradient(90deg, #d9f1ff, #b9a7ff);
  animation: chargePulse 2.4s ease-in-out infinite;
}

.battery-percent {
  margin-top: 28px;
  font-size: 78px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
}

.type-section {
  min-height: clamp(540px, 54vw, 700px);
  padding: 84px clamp(24px, 8vw, 150px) 92px;
  text-align: center;
}

.section-heading {
  width: min(900px, 100%);
  margin: 0 auto 34px;
}

.type-section .section-heading p:not(.section-kicker) {
  max-width: 520px;
  margin: 10px auto 0;
  font-size: clamp(12px, 0.9vw, 16px);
  line-height: 1.55;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.48);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.type-card {
  min-height: 212px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px 16px;
  border-radius: 10px;
  color: var(--ink);
  background: rgba(247, 249, 255, 0.84);
  box-shadow: 0 18px 42px rgba(18, 25, 46, 0.12);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.type-card:hover,
.type-card:focus-within {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 60px rgba(18, 25, 46, 0.18);
}

.type-mark {
  width: min(104px, 72%);
  margin-bottom: 5px;
}

.type-mark svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.type-mark circle {
  fill: #eef3ff;
}

.type-mascot {
  fill: #75cfdd;
}

.type-flipper {
  fill: #4fb6c8;
}

.type-board {
  fill: none;
  stroke: #f2a03c;
  stroke-linecap: round;
  stroke-width: 6;
}

.type-eye {
  fill: #2f5663;
}

.type-card p {
  margin: 0;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.04em;
  background: var(--blue-700);
}

.type-card h3 {
  margin: 8px 0 0;
  font-size: 17px;
  letter-spacing: 0.1em;
}

.type-card span {
  display: block;
  margin-top: 18px;
  color: rgba(31, 39, 64, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

.secondary-action {
  margin-top: 32px;
}

.closing-section {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 120px 24px;
  text-align: center;
  color: var(--blue-900);
  background-image:
    linear-gradient(90deg, rgba(234, 239, 252, 0.78), rgba(255, 255, 255, 0.72)),
    url("/assets/background/home-d4-q92.webp");
  background-position: center;
}

.closing-inner {
  width: min(880px, 100%);
}

.closing-inner p:not(.section-kicker) {
  margin-inline: auto;
  color: rgba(31, 39, 64, 0.72);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(24px, 6vw, 100px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--deep);
}

.site-footer .brand-logo {
  width: 180px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 760ms ease,
    transform 760ms ease;
}

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

@keyframes cue {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(-8px) rotate(45deg);
  }
  50% {
    opacity: 0.95;
    transform: translateY(6px) rotate(45deg);
  }
}

@keyframes chargePulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.12);
  }
}

@media (max-width: 1440px) and (min-width: 1025px) {
  .slider-controls,
  .slider-pause {
    bottom: 22px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    position: relative;
    z-index: 30;
    display: grid;
    gap: 7px;
    width: 48px;
    height: 48px;
    place-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: currentColor;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 200ms ease,
      opacity 200ms ease;
  }

  .site-header.nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 25;
    display: grid;
    justify-items: start;
    gap: 22px;
    padding: 110px 28px 34px;
    color: var(--blue-900);
    background: rgba(246, 249, 255, 0.96);
    box-shadow: 0 18px 60px rgba(17, 24, 40, 0.16);
    transform: translateY(-110%);
    transition: transform 280ms ease;
  }

  .site-header.nav-open .site-nav {
    transform: translateY(0);
  }

  .login-link {
    display: none;
  }

  .hero-slider {
    min-height: 720px;
    height: 100svh;
  }

  .slide__content {
    top: auto;
    bottom: 112px;
    transform: translateY(22px);
  }

  .slide.is-active .slide__content {
    transform: translateY(0);
  }

  .slide__content--dark {
    width: min(520px, calc(100vw - 56px));
  }

  .slide:nth-child(1) .slide__image {
    object-position: 28% center;
  }

  .slide:nth-child(2) .slide__image {
    object-position: 30% center;
  }

  .slide:nth-child(3) .slide__image {
    object-position: 24% center;
  }

  .metric-row {
    max-width: 520px;
    margin-top: 34px;
  }

  .hero-metrics {
    width: min(520px, calc(100vw - 56px));
    margin-top: 0;
  }

  .metric-row span {
    padding: 0 18px;
  }

  .power-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

@media (max-width: 700px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand {
    width: 154px;
  }

  .slide__content {
    left: 24px;
    width: calc(100vw - 48px);
    bottom: 206px;
  }

  .slide h1 {
    font-size: clamp(24px, 6.6vw, 32px);
    line-height: 1.42;
  }

  .slide p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

  .slider-arrow {
    display: none;
  }

  .slider-controls {
    left: 24px;
    bottom: 36px;
    transform: none;
  }

  .slider-dot {
    width: 30px;
  }

  .slider-dot.is-active {
    width: 58px;
  }

  .slider-pause {
    right: 24px;
    bottom: 22px;
  }

  .hero-metrics {
    left: 24px;
    bottom: 78px;
    width: calc(100vw - 48px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .hero-metrics span {
    padding: 0 10px;
  }

  .hero-metrics span:first-child {
    padding-left: 0;
  }

  .hero-metrics strong {
    font-size: clamp(28px, 8vw, 38px);
  }

  .hero-metrics small {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .story-section {
    min-height: 680px;
    padding: 110px 22px 90px;
  }

  .story-copy p {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }

  .story-copy p + p {
    margin-top: 30px;
  }

  .power-section,
  .type-section {
    padding-inline: 22px;
  }

  .power-content h2,
  .type-section h2 {
    font-size: 24px;
    letter-spacing: 0.12em;
  }

  .closing-section h2 {
    font-size: 34px;
    letter-spacing: 0.04em;
  }

  .battery-panel {
    padding: 30px 26px;
  }

  .battery {
    height: 132px;
  }

  .battery-percent {
    font-size: 58px;
  }

  .signal-list {
    grid-template-columns: 1fr;
  }

  .type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .type-card {
    min-height: 184px;
    padding: 16px 10px 14px;
  }

  .type-mark {
    width: min(92px, 74%);
  }

  .type-card h3 {
    font-size: 15px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }
}

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