:root {
  --bg: #fafafa;
  --paper: #ffffff;
  --ink: #000000;
  --muted: rgba(0, 0, 0, 0.7);
  --hover: rgba(0, 0, 0, 0.5);
  --control-bg: rgba(240, 240, 240, 0.9);
  --line: rgba(0, 0, 0, 0.12);
  --accent: #000000;
  --accent-strong: #000000;
  --shadow:
    0 0 40px rgba(0, 0, 0, 0.035),
    0 18px 50px rgba(0, 0, 0, 0.055);
  --glass-motion: 420ms cubic-bezier(0.16, 1, 0.3, 1);
  --glass-motion-fast: 260ms cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1000px;
  --feed-max-width: 800px;
  --intro-gap: clamp(54px, 9vw, 118px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

picture,
img,
video {
  display: block;
  width: 100%;
  height: 100%;
}

img,
video {
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.24em;
}

a:hover {
  color: var(--accent-strong);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: 10px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  padding: clamp(76px, 10vw, 116px) clamp(18px, 4vw, 56px) 0;
}

.site-header.compact {
  padding-bottom: 22px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--feed-max-width);
  margin: 0 auto;
  padding-bottom: var(--intro-gap);
}

.compact .nav {
  padding-bottom: 0;
}

.wordmark {
  text-decoration: none;
}

.footer-wordmark {
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.intro {
  max-width: var(--feed-max-width);
  margin: 0 auto;
  padding-bottom: var(--intro-gap);
  text-align: center;
}

.intro-kicker,
.project-eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  text-transform: uppercase;
}

.intro h1,
.about-copy h1 {
  max-width: 840px;
  margin: 0;
}

.about-copy h1 {
  font-size: var(--style-heading-1-size);
}

.intro h1 {
  font-size: var(--style-heading-1-size);
}

.intro-copy {
  max-width: 720px;
  margin: 19px auto 0;
  color: var(--ink);
}

@media (min-width: 641px) {
  .intro-copy {
    padding-block: 2px;
  }
}

.intro-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.about-card-shell {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 4vw, 40px);
  visibility: hidden;
  pointer-events: none;
}

.about-card-shell.is-open,
.about-card-shell.is-closing {
  visibility: visible;
  pointer-events: auto;
}

.about-card-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity 360ms ease;
}

.about-card-shell.is-open .about-card-backdrop {
  opacity: 1;
}

.about-card-shell.is-closing .about-card-backdrop {
  opacity: 0;
}

.about-card {
  position: relative;
  width: min(calc(100vw - 28px), 560px);
  max-height: min(88vh, 840px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  padding: clamp(34px, 5vw, 48px) clamp(28px, 6vw, 56px) clamp(34px, 5vw, 48px);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
  opacity: 0;
  outline: none;
  transform: translateY(110%) scale(0.96);
  transition:
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 320ms ease;
}

.about-card::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.about-card-shell.is-open .about-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-card-close {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: var(--ink);
  cursor: pointer;
  transition: opacity 160ms ease;
}

.about-card-close:hover {
  opacity: 0.7;
}

.about-card-close span,
.about-card-close span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.about-card-close span {
  transform: translate(-50%, -50%) rotate(45deg);
}

.about-card-close span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.about-collage {
  position: relative;
  width: min(100%, 420px);
  height: clamp(248px, 34vw, 330px);
  margin: 0 auto 28px;
}

.about-collage-tile {
  position: absolute;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: scale(0.72) rotate(var(--tile-rotate, 0deg));
}

.about-collage-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card-shell.is-open .about-collage-tile {
  animation: aboutTilePop 980ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-collage-tile.is-swapping {
  animation: aboutTileSwap 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card-shell.is-open.has-entered .about-collage-tile {
  opacity: 1;
  animation: none;
  transform: scale(1) translateY(0) rotate(var(--tile-rotate, 0deg));
}

.about-card-shell.is-open.has-entered .about-collage-tile.is-swapping {
  animation: aboutTileSwap 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-collage-tile-1 {
  top: 6px;
  left: 46px;
  width: 128px;
  --tile-rotate: -3deg;
  animation-delay: 280ms;
}

.about-collage-tile-2 {
  top: 28px;
  right: 34px;
  width: 128px;
  --tile-rotate: 2deg;
  animation-delay: 430ms;
}

.about-collage-tile-3 {
  bottom: 24px;
  left: 22px;
  width: 130px;
  --tile-rotate: -2deg;
  animation-delay: 560ms;
}

.about-collage-tile-4 {
  top: 104px;
  left: 50%;
  z-index: 2;
  width: 132px;
  margin-left: -66px;
  --tile-rotate: 1deg;
  animation-delay: 700ms;
}

.about-collage-tile-5 {
  right: 54px;
  bottom: 22px;
  width: 118px;
  --tile-rotate: 3deg;
  animation-delay: 820ms;
}

.about-card-copy {
  text-align: center;
}

.about-card-copy h2 {
  margin: 0;
}

.about-card-bio {
  display: grid;
  gap: 24px;
  max-width: 440px;
  margin: 28px auto 0;
}

.about-card-bio p {
  margin: 0;
}

.about-card-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
}

.about-card-links a {
  color: var(--ink);
  text-decoration: none;
  transition: color 160ms ease;
}

.about-card-links a:hover {
  color: var(--hover);
}

.is-about-card-open {
  overflow: hidden;
}

@keyframes aboutTilePop {
  0% {
    opacity: 0;
    transform: scale(0.64) translateY(22px) rotate(calc(var(--tile-rotate, 0deg) - 8deg));
  }

  56% {
    opacity: 1;
    transform: scale(1.08) translateY(-6px) rotate(calc(var(--tile-rotate, 0deg) + 2deg));
  }

  78% {
    opacity: 1;
    transform: scale(0.98) translateY(2px) rotate(var(--tile-rotate, 0deg));
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(var(--tile-rotate, 0deg));
  }
}

@keyframes aboutTileSwap {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(var(--tile-rotate, 0deg));
  }

  36% {
    opacity: 0;
    transform: scale(0.76) translateY(10px) rotate(calc(var(--tile-rotate, 0deg) - 8deg));
  }

  64% {
    opacity: 0;
    transform: scale(0.76) translateY(10px) rotate(calc(var(--tile-rotate, 0deg) + 8deg));
  }

  82% {
    opacity: 1;
    transform: scale(1.08) translateY(-4px) rotate(calc(var(--tile-rotate, 0deg) + 2deg));
  }
}

.project-row {
  display: block;
  width: min(calc(100% - clamp(36px, 8vw, 112px)), var(--feed-max-width));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 92px) 0 clamp(24px, 5vw, 68px);
}

.project-row:first-child {
  padding-top: 0;
}

.project-copy {
  max-width: 760px;
  margin-bottom: clamp(22px, 4vw, 38px);
}

.project-copy h2 {
  margin: 0;
}

.project-description {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.intro h1 a,
.intro-links a,
.project-description a,
.footer a {
  color: var(--ink);
  text-decoration: none;
  transition: color 160ms ease;
}

.intro h1 a:hover,
.intro-links a:hover,
.project-description a:hover,
.footer a:hover {
  color: var(--hover);
}

.project-media,
.about-media {
  min-width: 0;
}

.media-carousel {
  position: relative;
}

.media-frame {
  position: relative;
  border-radius: 24px;
}

.media-stage {
  position: relative;
  overflow: hidden;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 0;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: auto;
}

.media-stage::-webkit-scrollbar {
  display: none;
}

.media-track {
  display: flex;
  height: 100%;
}

.media-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
  margin: 0;
  background: transparent;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.media-slide.is-loading::before,
.media-slide.is-loading::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.media-slide.is-loading::before {
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.038), rgba(0, 0, 0, 0.018)),
    rgba(255, 255, 255, 0.2);
}

.media-slide.is-loading::after {
  top: 0;
  bottom: 0;
  left: -64%;
  z-index: 3;
  width: 54%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 24%,
    rgba(255, 255, 255, 0.88) 48%,
    rgba(255, 255, 255, 0.28) 72%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translate3d(-140%, 0, 0) skewX(-13deg);
  will-change: opacity, transform;
  animation: media-shimmer 2400ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes media-shimmer {
  0% {
    opacity: 0;
    transform: translate3d(-140%, 0, 0) skewX(-13deg);
  }

  12% {
    opacity: 1;
  }

  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(460%, 0, 0) skewX(-13deg);
  }
}

.media-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 180px;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  text-align: center;
}

.media-placeholder span {
  max-width: 240px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.7);
}

.media-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}

.media-dot {
  width: 4px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  padding: 0;
  transition: transform 160ms ease;
}

.media-dot.is-active {
  background: var(--ink);
  transform: scale(1.5);
}

.media-nav-button {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 5;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--control-bg);
  cursor: pointer;
  opacity: 0;
  padding: 0;
  transition: opacity 160ms ease;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.project-info-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 4;
  width: 220px;
  max-width: calc(100% - 64px);
  border-radius: 23px;
  background: transparent;
  color: var(--ink);
  opacity: 0;
  padding: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.985);
  transform-origin: bottom left;
  transition:
    background-color var(--glass-motion),
    backdrop-filter var(--glass-motion),
    border-radius var(--glass-motion),
    bottom var(--glass-motion),
    color var(--glass-motion),
    left var(--glass-motion),
    opacity var(--glass-motion-fast),
    padding var(--glass-motion),
    transform var(--glass-motion),
    -webkit-backdrop-filter var(--glass-motion),
    max-width var(--glass-motion),
    width var(--glass-motion);
}

.media-frame:hover .project-info-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.project-info-card.is-expanded {
  bottom: 16px;
  left: 16px;
  width: 260px;
  max-width: calc(100% - 32px);
  border-radius: 21px;
  background: var(--control-bg);
  padding: 20px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.project-info-summary {
  display: block;
}

.project-info-summary-text {
  min-width: 0;
}

.project-info-title-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.project-info-title,
.project-info-meta,
.project-info-description {
  margin: 0;
}

.project-info-title {
  color: var(--ink);
}

.project-info-meta,
.project-info-description {
  color: var(--muted);
}

.project-info-meta {
  margin-top: 2px;
}

.project-info-card.is-expanded .project-info-title {
  color: var(--ink);
}

.project-info-card.is-expanded .project-info-meta,
.project-info-card.is-expanded .project-info-description {
  color: var(--muted);
}

.project-info-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  cursor: pointer;
  padding: 0;
  transition: transform var(--glass-motion-fast);
}

.project-info-toggle:hover {
  transform: scale(1.08);
}

.project-info-toggle::before,
.project-info-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--paper);
  content: "";
  transform: translate(-50%, -50%);
}

.project-info-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.project-info-card.is-expanded .project-info-toggle::after {
  opacity: 0;
}

.project-info-card.is-expanded .project-info-toggle {
  background: var(--ink);
}

.project-info-card.is-expanded .project-info-toggle::before,
.project-info-card.is-expanded .project-info-toggle::after {
  background: var(--paper);
}

.project-row-opensea .project-info-title {
  color: var(--paper);
}

.project-row-opensea .project-info-meta,
.project-row-opensea .project-info-description {
  color: rgba(255, 255, 255, 0.7);
}

.project-row-opensea .project-info-toggle {
  background: var(--paper);
}

.project-row-opensea .project-info-toggle::before,
.project-row-opensea .project-info-toggle::after {
  background: var(--ink);
}

.project-row-opensea .project-info-card.is-expanded .project-info-title {
  color: var(--ink);
}

.project-row-opensea .project-info-card.is-expanded .project-info-meta,
.project-row-opensea .project-info-card.is-expanded .project-info-description {
  color: var(--muted);
}

.project-row-opensea .project-info-card.is-expanded .project-info-toggle {
  background: var(--ink);
}

.project-row-opensea .project-info-card.is-expanded .project-info-toggle::before,
.project-row-opensea .project-info-card.is-expanded .project-info-toggle::after {
  background: var(--paper);
}

.project-info-description {
  max-height: 0;
  max-width: none;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    margin-top var(--glass-motion),
    max-height var(--glass-motion),
    opacity 300ms ease,
    transform var(--glass-motion);
}

.project-info-card.is-expanded .project-info-description {
  max-height: 180px;
  margin-top: 10px;
  opacity: 1;
  transform: translateY(0);
}

.project-info-description a {
  color: var(--ink);
  text-decoration: none;
  transition: color 160ms ease;
}

.project-info-description a:hover {
  color: var(--hover);
}

.media-nav-button-previous {
  right: 68px;
}

.media-nav-button-next {
  right: 16px;
}

.media-nav-chevron {
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
}

.media-nav-button-previous .media-nav-chevron {
  transform: translateX(2px) rotate(225deg);
}

.media-nav-button-next .media-nav-chevron {
  transform: translateX(-2px) rotate(45deg);
}

.has-carousel-nav:hover .media-nav-button {
  opacity: 1;
}

.has-carousel-nav:hover .media-nav-button:not(.is-disabled):hover {
  opacity: 0.7;
}

.media-nav-button.is-disabled {
  opacity: 0;
  pointer-events: none;
}

.has-carousel-nav:hover .media-nav-button.is-disabled {
  opacity: 0.4;
}

.about-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 44px);
  max-width: var(--feed-max-width);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 86px) clamp(18px, 4vw, 56px) clamp(54px, 9vw, 120px);
  text-align: center;
}

.about-media {
  overflow: hidden;
  width: min(160px, 42vw);
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.about-copy {
  display: grid;
  justify-items: center;
}

.about-copy h1 {
  margin: 0;
}

.about-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
}

.experience-section {
  width: min(calc(100% - clamp(36px, 8vw, 112px)), var(--feed-max-width));
  margin: 0 auto;
  padding: 0 0 clamp(54px, 9vw, 118px);
}

.section-heading {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  margin: 0;
}

.experience-list {
  display: grid;
}

.experience-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 78px);
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.experience-period,
.experience-meta,
.experience-summary {
  margin: 0;
  color: var(--muted);
}

.experience-details h3 {
  margin: 0 0 4px;
}

.experience-summary {
  max-width: 620px;
  margin-top: 6px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(calc(100% - clamp(36px, 8vw, 112px)), var(--feed-max-width));
  margin: 0 auto;
  padding: 34px 0 44px;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 16px;
}

@media (max-width: 640px) {
  .about-card-shell {
    align-items: flex-end;
    padding: 64px 0 0;
  }

  .about-card {
    width: 100vw;
    max-height: calc(100vh - 64px);
    padding: 38px 26px max(34px, env(safe-area-inset-bottom));
    border-radius: 32px 32px 0 0;
    transform: translateY(100%) scale(1);
  }

  .about-card-close {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .about-collage {
    width: 300px;
    height: 238px;
    margin-bottom: 24px;
  }

  .about-collage-tile {
    border-radius: 24px;
  }

  .about-collage-tile-1 {
    top: 6px;
    left: 24px;
    width: 96px;
  }

  .about-collage-tile-2 {
    top: 28px;
    right: 14px;
    width: 96px;
  }

  .about-collage-tile-3 {
    bottom: 18px;
    left: 12px;
    width: 98px;
  }

  .about-collage-tile-4 {
    top: 88px;
    width: 108px;
    margin-left: -54px;
  }

  .about-collage-tile-5 {
    right: 40px;
    bottom: 20px;
    width: 94px;
  }

  .about-card-bio {
    gap: 22px;
  }

  .about-card-links {
    margin-top: 30px;
  }

  .about-media {
    width: 80px;
  }

  .media-stage {
    aspect-ratio: 2 / 3;
  }

  .project-row-opensea .media-stage {
    aspect-ratio: 1 / 1;
  }

  .project-row-opensea .media-slide picture,
  .project-row-opensea .media-slide img,
  .project-row-opensea .media-slide video {
    height: 100%;
  }

  .media-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .media-slide img,
  .media-slide video {
    height: 95%;
    object-fit: cover;
  }

  .project-row:first-child .media-slide-first-video video {
    height: 100%;
  }

  .media-slide-first-video video {
    transform: scale(0.95);
    transform-origin: center;
  }

  .project-row:first-child .media-slide-first-video video {
    transform: scale(1.01);
  }

  .media-nav-button {
    display: none;
  }

  .project-info-card {
    width: calc(100% - 64px);
    max-width: none;
  }

  .project-info-card.is-expanded {
    left: 20px;
    width: calc(100% - 40px);
    max-width: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .media-nav-button {
    display: none;
  }

  .project-info-card {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 820px) {
  :root {
    --intro-gap: 48px;
  }

  .site-header {
    padding-top: 56px;
  }

  .site-header.compact {
    padding-top: 20px;
  }

  .project-row,
  .about-layout,
  .section-heading,
  .experience-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (max-width: 420px) {
  .footer {
    gap: 12px;
  }

  .footer-links {
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .media-slide.is-loading::after {
    animation: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
