@font-face {
  font-family: "Grato Grotesk";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/fonts/grato-grotesk-cy-light.woff2") format("woff2");
}

@font-face {
  font-family: "Grato Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/grato-grotesk-cy-regular.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #111111;
  --ink-soft: #202020;
  --paper: #f3f1ec;
  --paper-deep: #e6e2da;
  --white: #ffffff;
  --muted: #706e69;
  --rule: #cdc9c0;
  --red: #e73331;
  --red-on-dark: #eb413f;
  --red-on-light: #b91f1e;
  --red-surface: #c32322;
  --red-dark: #a91b1a;
  --font-sans: "Grato Grotesk", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  font-synthesis: none;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.shell {
  width: min(1420px, calc(100% - 96px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 10px 15px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: transform 140ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  min-height: 96px;
  padding: 12px 48px;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  color: var(--white);
}

.brand {
  display: inline-flex;
  width: 132px;
  height: 70px;
  align-items: center;
}

.brand img {
  width: 132px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
}

.desktop-nav a,
.header-cta {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  color: rgb(255 255 255 / 68%);
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

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

.header-cta {
  display: inline-flex;
  min-height: 46px;
  padding: 0 19px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgb(255 255 255 / 38%);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.header-cta:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 9%);
}

.hero {
  position: relative;
  min-height: max(760px, 100vh);
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: #292929;
  color: var(--white);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
  animation: hero-image-in 1200ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(9 9 9 / 97%) 0%, rgb(11 11 11 / 90%) 31%, rgb(11 11 11 / 51%) 57%, rgb(11 11 11 / 12%) 84%),
    linear-gradient(0deg, rgb(0 0 0 / 48%) 0%, transparent 45%, rgb(0 0 0 / 14%) 100%);
}

.hero-grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 20% 25%, rgb(255 255 255 / 10%) 0 0.5px, transparent 0.7px),
    radial-gradient(circle at 70% 65%, rgb(0 0 0 / 18%) 0 0.6px, transparent 0.8px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(760px, 100vh);
  min-height: max(760px, 100svh);
  padding-top: 154px;
  padding-bottom: 145px;
  align-items: center;
}

.hero-copy {
  width: min(720px, 58vw);
}

.eyebrow,
.section-index {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 26px;
  color: var(--red-on-dark);
}

.hero h1 {
  max-width: 930px;
  margin-bottom: 30px;
  font-size: clamp(4.35rem, 7.8vw, 8.7rem);
  font-weight: 300;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.hero h1 em {
  color: #dad7d0;
  font-style: normal;
  font-weight: 300;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgb(255 255 255 / 68%);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.65;
}

.hero-copy > * {
  animation: hero-copy-in 760ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy > :nth-child(1) {
  animation-delay: 120ms;
}

.hero-copy > :nth-child(2) {
  animation-delay: 190ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 260ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 330ms;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red-surface);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-quiet {
  border-color: rgb(255 255 255 / 32%);
  color: var(--white);
}

.button-quiet:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 8%);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--ink);
  color: var(--white);
}

.button-outline-light {
  border-color: rgb(255 255 255 / 48%);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero-meta {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 0;
  display: flex;
  min-width: 350px;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 24px;
  border-top: 1px solid rgb(255 255 255 / 20%);
  border-left: 1px solid rgb(255 255 255 / 20%);
  color: rgb(255 255 255 / 64%);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-meta span:first-child {
  color: var(--red-on-dark);
}

.signal-rail {
  display: grid;
  min-height: 72px;
  padding: 0 48px;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 22px;
  background: var(--red-surface);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-rail i {
  height: 1px;
  background: rgb(255 255 255 / 42%);
}

.section {
  padding-block: clamp(96px, 10vw, 160px);
}

.section-index {
  margin-bottom: 28px;
  color: var(--red-on-light);
}

.statement {
  display: grid;
  grid-template-columns: minmax(120px, 0.72fr) minmax(0, 3.8fr);
  gap: 40px;
  align-items: start;
}

.statement h2,
.section-heading h2,
.material-copy h2,
.launch-copy h2,
.not-found h1 {
  font-size: clamp(3.1rem, 6.1vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.statement h2 {
  margin-bottom: 54px;
}

.statement h2 span {
  color: #8b8882;
  font-weight: 300;
}

.statement > div > p {
  max-width: 690px;
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
  line-height: 1.72;
}

.collection {
  background: var(--ink);
  color: var(--white);
}

.collection .section-index {
  color: var(--red-on-dark);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(54px, 6vw, 90px);
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: clamp(44px, 8vw, 120px);
}

.section-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 5px;
  color: #999690;
  font-size: 1.02rem;
  line-height: 1.72;
}

.gesture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #373737;
}

.gesture-card {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.gesture-card-wide {
  grid-column: 1 / -1;
}

.gesture-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--white);
}

.gesture-card-wide .gesture-image-wrap {
  aspect-ratio: 16 / 8.4;
}

.gesture-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 500ms ease;
}

.gesture-card:hover .gesture-image-wrap img {
  transform: scale(1.025);
  filter: contrast(1.025);
}

.gesture-card figcaption {
  display: grid;
  min-height: 144px;
  padding: 26px 28px;
  grid-template-columns: 58px minmax(110px, 0.52fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border-top: 1px solid #393939;
}

.gesture-card figcaption > span {
  color: var(--red-on-dark);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.gesture-card figcaption strong {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.gesture-card figcaption p {
  max-width: 430px;
  margin-bottom: 0;
  color: #908e89;
  font-size: 0.88rem;
  line-height: 1.65;
}

.collection-action {
  display: flex;
  margin-top: 34px;
  padding-top: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid #393939;
}

.collection-action p {
  margin-bottom: 0;
}

.collection-action strong,
.collection-action span {
  display: block;
}

.collection-action strong {
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 400;
}

.collection-action p > span {
  color: #aaa7a0;
  font-size: 0.9rem;
}

.material {
  background: #dcd8d0;
}

.material-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.82fr);
  gap: clamp(54px, 8vw, 124px);
  align-items: center;
}

.material-image {
  position: relative;
  padding-bottom: 34px;
}

.material-image img {
  width: 100%;
  height: auto;
  background: var(--white);
}

.material-image > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  color: #5f5c57;
  font-size: 0.61rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.material-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(3rem, 5vw, 6rem);
}

.material-copy > p:not(.section-index) {
  max-width: 590px;
  margin-bottom: 44px;
  color: #5f5c57;
  font-size: 1.04rem;
  line-height: 1.75;
}

.finish-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #b8b4ac;
}

.finish-list span {
  padding: 17px 4px;
  border-bottom: 1px solid #b8b4ac;
  color: #46443f;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finish-list span:nth-child(odd) {
  border-right: 1px solid #b8b4ac;
}

.finish-list span:nth-child(even) {
  padding-left: 18px;
}

.principles-heading > p {
  color: var(--muted);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.principle-grid article {
  min-height: 290px;
  padding: 32px 34px 40px;
  border-right: 1px solid var(--rule);
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid article > span {
  color: var(--red-on-light);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.principle-grid h3 {
  margin: 80px 0 14px;
  font-size: clamp(1.85rem, 2.6vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.principle-grid p {
  max-width: 310px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.launch {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  background: var(--red-surface);
  color: var(--white);
}

.launch-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #d2d2d2;
}

.launch-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.launch:hover .launch-visual img {
  transform: scale(1.025);
}

.launch-copy {
  display: flex;
  padding: clamp(72px, 9vw, 144px) clamp(48px, 9vw, 150px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.launch-copy .eyebrow {
  color: var(--white);
}

.launch-copy h2 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 5.9vw, 6.8rem);
}

.launch-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 36px;
  color: var(--white);
  font-size: 1.04rem;
  line-height: 1.72;
}

.email-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: 28px;
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 58%);
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.launch-status {
  margin-top: 12px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  min-height: 104px;
  padding: 0 48px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  background: var(--ink);
  color: #85827d;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--red-on-dark);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.site-footer span:last-child {
  justify-self: end;
}

.not-found {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding: 110px 48px;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.not-found > div {
  max-width: 900px;
}

.not-found h1 {
  margin-bottom: 28px;
}

.not-found p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 34px;
  color: #aaa7a0;
  font-size: 1.05rem;
}

@keyframes hero-image-in {
  from {
    transform: scale(1.045);
    opacity: 0.55;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes hero-copy-in {
  from {
    transform: translateY(22px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .shell {
    width: min(100% - 64px, 1420px);
  }

  .site-header {
    padding-inline: 32px;
    grid-template-columns: 128px 1fr auto;
  }

  .brand,
  .brand img {
    width: 118px;
  }

  .hero-copy {
    width: min(700px, 72vw);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgb(9 9 9 / 97%) 0%, rgb(11 11 11 / 83%) 43%, rgb(11 11 11 / 28%) 74%, rgb(11 11 11 / 12%) 100%),
      linear-gradient(0deg, rgb(0 0 0 / 44%) 0%, transparent 48%);
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.7fr);
    gap: 50px;
  }

  .gesture-card figcaption {
    grid-template-columns: 45px minmax(110px, 0.6fr) minmax(0, 1fr);
    padding-inline: 22px;
  }

  .material-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.88fr);
    gap: 56px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 40px, 1420px);
  }

  .site-header {
    min-height: 78px;
    padding: 8px 20px;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 18px;
  }

  .brand {
    height: 58px;
  }

  .brand,
  .brand img {
    width: 96px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 0.61rem;
    justify-self: end;
    white-space: nowrap;
  }

  .hero,
  .hero-inner {
    min-height: max(760px, 100svh);
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgb(8 8 8 / 98%) 0%, rgb(8 8 8 / 84%) 34%, rgb(8 8 8 / 25%) 68%, rgb(8 8 8 / 24%) 100%),
      linear-gradient(90deg, rgb(8 8 8 / 24%), transparent 78%);
  }

  .hero-inner {
    padding-top: 150px;
    padding-bottom: 108px;
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 14.5vw, 6.4rem);
    line-height: 0.9;
  }

  .hero-lead {
    max-width: 610px;
  }

  .hero-meta {
    display: none;
  }

  .signal-rail {
    min-height: 58px;
    padding-inline: 20px;
    gap: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .section {
    padding-block: 94px;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .statement h2 {
    margin-bottom: 34px;
    font-size: clamp(3rem, 11vw, 5.6rem);
  }

  .statement > div > p {
    margin-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading h2,
  .material-copy h2,
  .launch-copy h2 {
    font-size: clamp(3rem, 11vw, 5.6rem);
  }

  .section-heading > p {
    max-width: 620px;
  }

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

  .gesture-card-wide {
    grid-column: auto;
  }

  .gesture-card-wide .gesture-image-wrap,
  .gesture-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .gesture-card figcaption {
    min-height: 130px;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .gesture-card figcaption p {
    grid-column: 2;
  }

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

  .collection-action {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .principle-grid article {
    min-height: 0;
    padding: 28px 4px 34px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .principle-grid article:last-child {
    border-bottom: 0;
  }

  .principle-grid h3 {
    margin-top: 38px;
  }

  .launch {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .launch-visual {
    min-height: 430px;
  }

  .launch-visual img {
    object-position: 78% center;
  }

  .launch-copy {
    padding: 86px 20px 96px;
  }

  .site-footer {
    min-height: 130px;
    padding: 28px 20px;
    grid-template-columns: 1fr auto;
  }

  .site-footer span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 520px) {
  .header-cta span {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .signal-rail i {
    display: none;
  }

  .signal-rail {
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
  }

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

  .finish-list span:nth-child(odd) {
    border-right: 0;
  }

  .finish-list span:nth-child(even) {
    padding-left: 4px;
  }
}

@media (max-width: 360px) and (max-height: 650px) {
  .hero-inner {
    padding-top: 94px;
    padding-bottom: 54px;
    align-items: flex-start;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    line-height: 0.9;
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 50px;
  }
}

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

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