:root {
  color-scheme: dark;
  --void: oklch(6.5% 0.016 275);
  --void-raised: oklch(10.5% 0.024 275);
  --ink: oklch(96% 0.008 275);
  --body: oklch(79% 0.018 275);
  --muted: oklch(64% 0.022 275);
  --line: oklch(54% 0.032 275);
  --line-soft: oklch(22% 0.025 275);
  --pink: oklch(68% 0.238 12);
  --violet: oklch(69% 0.205 305);
  --blue: oklch(82% 0.115 225);
  --display: "Antonio", "Arial Narrow", sans-serif;
  --sans: "Geologica", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --z-canvas: 1;
  --z-content: 2;
  --z-nav: 10;
  --z-backdrop: 20;
  --z-dialog: 21;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--void);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 45%, oklch(14% 0.04 278), transparent 34%),
    var(--void);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 350;
  font-optical-sizing: auto;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: var(--s-4);
  top: var(--s-4);
  transform: translateY(-180%);
  padding: var(--s-3) var(--s-4);
  background: var(--ink);
  color: var(--void);
  text-decoration: none;
  transition: transform 180ms var(--ease);
}
.skip-link:focus {
  transform: none;
}

.background-word {
  position: fixed;
  z-index: 0;
  inset: 2vh auto auto -1.5vw;
  color: oklch(28% 0.027 275);
  font-family: var(--display);
  font-size: clamp(14rem, 34vw, 40rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.82;
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  transform: translate3d(var(--word-x, 0), var(--word-y, 0), 0);
  transition: transform 1.2s var(--ease);
}

.home-page {
  height: 100svh;
  overflow: hidden;
}

.home-shell {
  position: relative;
  z-index: var(--z-content);
  display: grid;
  grid-template-columns: minmax(19rem, 0.86fr) minmax(27rem, 1.18fr) minmax(
      30rem,
      1.16fr
    );
  min-height: 100svh;
  padding: clamp(1.5rem, 3.25vw, 4rem);
  gap: clamp(1.5rem, 2.5vw, 3.5rem);
}

.identity-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: clamp(2rem, 7vh, 6rem) var(--s-3);
}

.identity-copy {
  max-width: 28rem;
}

.folio-label,
.index-heading,
.content-kicker {
  color: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.folio-label {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin: 0 0 var(--s-5);
  text-transform: uppercase;
}

.folio-label::after {
  content: "";
  width: 6rem;
  height: 1px;
  background: var(--line);
}

.identity-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.8rem, 7vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.82;
  text-wrap: balance;
}

.identity-copy h1 span {
  display: block;
}

.education-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: var(--s-5) 0 0;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
  color: var(--body);
  font-size: clamp(0.85rem, 1vw, 1.05rem);
  letter-spacing: 0.03em;
}
.education-line i {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--pink);
}

.north-star {
  max-width: 29ch;
  margin: var(--s-5) 0 var(--s-6);
  color: var(--ink);
  font-size: clamp(0.95rem, 1.08vw, 1.16rem);
  line-height: 1.5;
  text-wrap: pretty;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-5);
  min-height: 44px;
  padding: 0 0.1rem 0.25rem 0;
  border: 0;
  border-bottom: 1px solid var(--pink);
  background: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms,
    gap 350ms var(--ease);
}
.contact-link:hover {
  color: oklch(83% 0.14 12);
  gap: var(--s-6);
}

.identity-footer > p {
  max-width: 30ch;
  margin: 0 0 var(--s-5);
  color: var(--muted);
  font-size: 0.72rem;
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4) var(--s-5);
}

.section-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--body);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms;
}
.section-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.3rem;
  height: 1px;
  background: var(--pink);
  transition: right 320ms var(--ease);
}
.section-nav a:hover,
.section-nav a.active {
  color: var(--ink);
}
.section-nav a:hover::after,
.section-nav a.active::after {
  right: 0;
}

.visual-stage {
  position: relative;
  min-width: 0;
  min-height: 28rem;
  overflow: hidden;
  outline: none;
  cursor: crosshair;
  touch-action: none;
  isolation: isolate;
}

.visual-stage:focus-visible {
  box-shadow: inset 0 0 0 1px var(--blue);
}

#particle-field {
  position: absolute;
  z-index: var(--z-canvas);
  inset: 0;
  width: 100%;
  height: 100%;
}

.stage-crosshair {
  position: absolute;
  z-index: 3;
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 50%);
  width: 1.6rem;
  height: 1.6rem;
  opacity: var(--cursor-opacity, 0);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 180ms;
}
.stage-crosshair i {
  position: absolute;
  inset: 50% auto auto 50%;
  background: var(--ink);
}
.stage-crosshair i:first-child {
  width: 100%;
  height: 1px;
  transform: translate(-50%, -50%);
}
.stage-crosshair i:last-child {
  width: 1px;
  height: 100%;
  transform: translate(-50%, -50%);
}

.interaction-hint {
  position: absolute;
  z-index: 3;
  right: var(--s-3);
  bottom: var(--s-3);
  display: flex;
  gap: var(--s-4);
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}
.interaction-hint span + span::before {
  content: "·";
  margin-right: var(--s-4);
  color: var(--pink);
}

.motion-toggle {
  position: absolute;
  z-index: 4;
  left: var(--s-3);
  bottom: var(--s-2);
  min-height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.motion-toggle:hover {
  color: var(--ink);
}

.portfolio-index {
  align-self: stretch;
  min-width: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(1rem, 4vh, 3rem) var(--s-3) 0 0;
  scrollbar-color: var(--line) transparent;
  scrollbar-width: thin;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 1.5rem,
    #000 calc(100% - 3rem),
    transparent
  );
}

.index-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding-bottom: var(--s-5);
  color: var(--muted);
}
.index-heading p {
  margin: 0;
  text-transform: uppercase;
}
.index-heading span {
  font-size: 0.58rem;
}

.index-group {
  margin-bottom: clamp(1.35rem, 2.6vh, 2.1rem);
}
.index-group header {
  position: relative;
  display: block;
  align-items: center;
  margin-bottom: var(--s-2);
}
.index-group header h2 {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin: 0;
  color: var(--body);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.index-group header h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-soft);
}
.current-group header::before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 2px;
  background: var(--pink);
  transform: translateX(-2rem) translateY(0.55rem);
}

.index-record {
  position: relative;
  display: grid;
  grid-template-columns: 0.55rem minmax(7rem, 0.78fr) minmax(9rem, 1.22fr);
  align-items: baseline;
  gap: var(--s-3);
  width: 100%;
  min-height: 2.15rem;
  padding: 0.38rem 0.2rem;
  border: 0;
  background: transparent;
  color: var(--body);
  cursor: pointer;
  text-align: left;
  transition:
    color 180ms,
    transform 350ms var(--ease),
    background 180ms;
}
.index-record::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    oklch(68% 0.238 12 / 0.09),
    transparent 72%
  );
  opacity: 0;
  transition: opacity 180ms;
}
.index-record > * {
  position: relative;
}
.index-record i {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--record-color, var(--violet));
  box-shadow: 0 0 0.65rem
    color-mix(in oklch, var(--record-color, var(--violet)) 44%, transparent);
}
.index-record strong {
  color: var(--ink);
  font-size: clamp(0.75rem, 0.78vw, 0.86rem);
  font-weight: 400;
}
.index-record span {
  color: var(--muted);
  font-size: clamp(0.68rem, 0.7vw, 0.78rem);
  line-height: 1.35;
}
.index-record:hover,
.index-record:focus-visible {
  color: var(--ink);
  outline: none;
  transform: translateX(0.35rem);
}
.index-record:hover::before,
.index-record:focus-visible::before {
  opacity: 1;
}
.index-record:focus-visible {
  box-shadow: inset 0 0 0 1px var(--blue);
}

.current-group .index-record {
  --record-color: var(--pink);
}
.recognition-group .index-record {
  --record-color: var(--blue);
}

.index-footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  padding: var(--s-4) 0 var(--s-7);
}
.index-footer a,
.email-fallback {
  color: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-decoration-color: var(--line);
  text-underline-offset: 0.35rem;
  text-transform: uppercase;
}
.index-footer a:hover,
.email-fallback:hover {
  color: var(--ink);
  text-decoration-color: var(--pink);
}

dialog {
  color: var(--ink);
  font-family: var(--sans);
}

.detail-dialog,
.contact-dialog {
  width: min(42rem, calc(100% - 2rem));
  max-height: min(46rem, calc(100svh - 2rem));
  overflow: auto;
  margin: auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  background: var(--void-raised);
  opacity: 0;
  transform: scale(0.96);
  clip-path: polygon(
    1.5rem 0,
    100% 0,
    100% calc(100% - 1.5rem),
    calc(100% - 1.5rem) 100%,
    0 100%,
    0 1.5rem
  );
  transition:
    opacity 240ms,
    transform 420ms var(--ease),
    display 420ms allow-discrete,
    overlay 420ms allow-discrete;
}
.detail-dialog[open],
.contact-dialog[open] {
  opacity: 1;
  transform: none;
}
@starting-style {
  .detail-dialog[open],
  .contact-dialog[open] {
    opacity: 0;
    transform: scale(0.96);
  }
}
.detail-dialog::backdrop,
.contact-dialog::backdrop {
  background: oklch(3% 0.012 275 / 0.88);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  right: var(--s-5);
  top: var(--s-4);
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  color: var(--body);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 300;
}
.dialog-close:hover {
  color: var(--pink);
}
.dialog-category {
  margin: 0 0 var(--s-4);
  color: var(--pink);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.detail-dialog h2,
.contact-dialog h2 {
  max-width: 12ch;
  margin: 0 0 var(--s-6);
  font-family: var(--display);
  font-size: clamp(3.6rem, 8vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-wrap: balance;
}
.dialog-body,
.contact-dialog > p {
  max-width: 62ch;
  color: var(--body);
}
.dialog-body strong {
  color: var(--ink);
  font-weight: 500;
}
.dialog-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.dialog-links a,
.contact-dialog form button {
  min-height: 44px;
  padding: 0.8rem var(--s-4);
  border: 0;
  background: var(--pink);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}
.contact-dialog form {
  display: grid;
  gap: var(--s-5);
  margin: var(--s-6) 0;
}
.contact-dialog label {
  color: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-dialog input,
.contact-dialog textarea {
  display: block;
  width: 100%;
  margin-top: var(--s-2);
  padding: var(--s-3) 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  text-transform: none;
}
.contact-dialog input:focus,
.contact-dialog textarea:focus {
  border-color: var(--pink);
}
.contact-dialog textarea {
  resize: vertical;
}

/* Secondary pages */
.subpage {
  min-height: 100svh;
}
.subpage .background-word {
  font-size: clamp(13rem, 29vw, 34rem);
  opacity: 0.12;
}
.subpage-particles {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  width: min(48vw, 52rem);
  height: 100svh;
  min-height: 0;
  opacity: 0.3;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, #000 32%);
}
.subpage-shell {
  position: relative;
  z-index: var(--z-content);
  width: min(92rem, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 3rem);
}
.subpage-header {
  position: sticky;
  z-index: var(--z-nav);
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  min-height: 4.5rem;
  background: linear-gradient(var(--void) 68%, transparent);
}
.wordmark {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}
.wordmark i {
  color: var(--pink);
  font-style: normal;
}
.subpage-header .section-nav {
  justify-content: flex-end;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(4rem, 10vh, 8rem) 0 var(--s-8);
}
.content-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}
.content-kicker {
  margin: 0 0 var(--s-5);
  color: var(--pink);
  text-transform: uppercase;
}
.content-intro h1 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.84;
  text-wrap: balance;
}
.content-intro > p:not(.content-kicker) {
  max-width: 34ch;
  margin-top: var(--s-6);
  color: var(--body);
  text-wrap: pretty;
}

.content-body {
  min-width: 0;
}
.content-section {
  padding: var(--s-7) 0;
  border-top: 1px solid var(--line-soft);
}
.content-section:first-child {
  border-top-color: var(--line);
}
.content-section h2 {
  margin: 0 0 var(--s-5);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.content-section p {
  max-width: 68ch;
  color: var(--body);
  text-wrap: pretty;
}
.content-section p.lead {
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
}
.question-list,
.plain-list,
.timeline-list {
  margin: var(--s-6) 0 0;
  padding: 0;
  list-style: none;
}
.question-list li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
}
.question-list span {
  color: var(--pink);
  font-size: 0.7rem;
}
.plain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
}
.plain-list li {
  min-height: 7rem;
  padding: var(--s-5);
  background: var(--void);
}
.plain-list strong {
  display: block;
  margin-bottom: var(--s-2);
  color: var(--ink);
  font-weight: 500;
}
.plain-list span {
  color: var(--muted);
  font-size: 0.82rem;
}
.timeline-list li {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: var(--s-5);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--line-soft);
}
.timeline-list time {
  color: var(--pink);
  font-size: 0.72rem;
}
.timeline-list strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
}
.timeline-list span {
  color: var(--muted);
  font-size: 0.82rem;
}
.portrait-row {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.portrait-row img {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}
.empty-note {
  padding: var(--s-7) 0;
  color: var(--body);
  font-size: 1.2rem;
}
.subpage-footer {
  display: flex;
  justify-content: space-between;
  gap: var(--s-5);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.68rem;
}

@media (max-width: 1180px) {
  .home-page {
    height: auto;
    overflow-y: auto;
  }
  .home-shell {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(23rem, 1.18fr);
    grid-template-rows: minmax(42rem, 100svh) auto;
  }
  .identity-panel {
    grid-column: 1;
    grid-row: 1;
  }
  .visual-stage {
    grid-column: 2;
    grid-row: 1;
  }
  .portfolio-index {
    grid-column: 1 / -1;
    grid-row: 2;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 var(--s-7);
    mask-image: none;
    padding-top: var(--s-7);
  }
  .index-heading,
  .index-footer {
    grid-column: 1 / -1;
  }
  .background-word {
    font-size: 42vw;
  }
}

@media (max-width: 760px) {
  .home-shell {
    display: block;
    padding: max(var(--s-4), env(safe-area-inset-top)) var(--s-4)
      max(5.5rem, env(safe-area-inset-bottom));
  }
  .identity-panel {
    min-height: auto;
    padding: var(--s-7) 0 var(--s-5);
  }
  .identity-copy h1 {
    font-size: clamp(4.7rem, 25vw, 7rem);
  }
  .identity-copy {
    max-width: none;
  }
  .identity-footer > p {
    margin-top: var(--s-7);
  }
  .section-nav {
    position: fixed;
    z-index: var(--z-nav);
    left: 0;
    right: 0;
    bottom: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    padding: 0 max(var(--s-3), env(safe-area-inset-left))
      max(0.4rem, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line-soft);
    background: var(--void-raised);
  }
  .section-nav a {
    flex: 0 0 auto;
    padding: 0 var(--s-4);
  }
  .visual-stage {
    height: 62svh;
    min-height: 28rem;
    margin-inline: calc(var(--s-4) * -1);
  }
  .interaction-hint {
    right: var(--s-4);
  }
  .portfolio-index {
    display: block;
    padding-top: var(--s-8);
  }
  .index-heading {
    padding-bottom: var(--s-7);
  }
  .index-group {
    margin-bottom: var(--s-7);
  }
  .index-record {
    grid-template-columns: 0.55rem minmax(7.5rem, 0.9fr) minmax(0, 1.1fr);
    min-height: 2.75rem;
  }
  .index-record strong,
  .index-record span {
    font-size: 0.72rem;
  }
  .background-word {
    top: 6rem;
    font-size: 72vw;
    writing-mode: vertical-rl;
  }
  .subpage-shell {
    padding-bottom: 5rem;
  }
  .subpage-particles {
    width: 100%;
    opacity: 0.16;
    mask-image: linear-gradient(180deg, #000, transparent 68%);
  }
  .subpage-header {
    position: static;
  }
  .subpage-header .section-nav {
    justify-content: flex-start;
  }
  .content-layout {
    display: block;
    padding-top: var(--s-8);
  }
  .content-intro {
    position: static;
    margin-bottom: var(--s-8);
  }
  .content-intro h1 {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }
  .plain-list {
    grid-template-columns: 1fr;
  }
  .timeline-list li {
    grid-template-columns: 4.2rem 1fr;
  }
  .subpage-footer {
    display: grid;
    padding-bottom: var(--s-8);
  }
}

@media (max-height: 760px) and (min-width: 1181px) {
  .home-shell {
    padding-block: var(--s-5);
  }
  .identity-panel {
    padding-block: var(--s-5);
  }
  .identity-copy h1 {
    font-size: clamp(4rem, 6.4vw, 6.7rem);
  }
  .north-star {
    margin-block: var(--s-4);
  }
  .portfolio-index {
    padding-top: var(--s-4);
  }
  .index-group {
    margin-bottom: var(--s-4);
  }
  .index-record {
    min-height: 1.85rem;
    padding-block: 0.25rem;
  }
}

@media (pointer: coarse) {
  .index-record {
    min-height: 44px;
  }
  .motion-toggle {
    padding: 0 var(--s-3);
  }
}

@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;
  }
}
