:root {
  color-scheme: dark;
  --night: #030508;
  --panel: #080d14;
  --panel-soft: #0b121b;
  --line: rgba(221, 236, 247, .16);
  --line-strong: rgba(221, 236, 247, .28);
  --text: #f5f1e7;
  --muted: #a8b3bf;
  --ice: #83d6ff;
  --gold: #efb74e;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 36%, rgba(28, 105, 153, .08), transparent 34rem),
    var(--night);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 4px;
}

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

section[id] {
  scroll-margin-top: 100px;
}

.skip-link {
  position: fixed;
  z-index: 40;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--text);
  color: var(--night);
  transform: translateY(-160%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  min-height: 82px;
  padding: 0 clamp(22px, 4vw, 72px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(245px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 28px;
  background: rgba(3, 5, 8, .94);
  backdrop-filter: blur(18px);
}

.studio-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.studio-symbol {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(239, 183, 78, .55);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
}

.studio-mark strong {
  display: block;
  font-size: 12px;
  letter-spacing: .18em;
}

.studio-mark small {
  display: block;
  margin-top: 4px;
  color: #8e98a3;
  font-size: 8px;
  letter-spacing: .17em;
}

nav {
  display: flex;
  gap: 20px;
  color: #c5cbd2;
  font-size: 11px;
  letter-spacing: .08em;
  white-space: nowrap;
}

nav a,
.back-link,
footer a {
  transition: color .2s ease;
}

nav a:hover,
nav a:focus-visible,
.back-link:hover,
.back-link:focus-visible,
footer a:hover,
footer a:focus-visible {
  color: var(--ice);
}

.back-link {
  justify-self: end;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(850px, calc(100svh - 82px));
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-settle 1.8s cubic-bezier(.16, .7, .2, 1) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, .92) 0%, rgba(3, 5, 8, .64) 28%, rgba(3, 5, 8, .08) 62%),
    linear-gradient(0deg, rgba(3, 5, 8, .78) 0%, transparent 36%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: clamp(78px, 12vh, 132px);
  left: clamp(24px, 7vw, 118px);
  width: min(720px, 52vw);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .24em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(60px, 7.8vw, 124px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.052em;
  text-shadow: 0 6px 40px rgba(0, 0, 0, .44);
}

.hero-deck {
  max-width: 590px;
  color: #d5d8dc;
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.45;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-label {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 70px);
  bottom: 28px;
  padding-left: 18px;
  border-left: 1px solid rgba(239, 183, 78, .65);
  text-align: right;
}

.hero-label span,
.hero-label strong {
  display: block;
}

.hero-label span {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: .19em;
}

.hero-label strong {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.section-shell {
  width: min(1460px, calc(100% - clamp(40px, 8vw, 144px)));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 150px) 0;
}

.intro {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 10vw;
}

.intro h2,
.section-heading h2,
.feedback-section h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 78px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
}

.intro > p {
  align-self: end;
  max-width: 680px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.7;
}

.section-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 8vw;
  align-items: end;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.frost-section > .section-heading > p {
  width: 90%;
  justify-self: end;
  line-height: 1.8;
}

.compact-heading {
  margin-bottom: 34px;
}

.review-focus {
  padding-top: clamp(66px, 7vw, 104px);
  padding-bottom: 0;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.focus-grid article {
  min-height: 265px;
  padding: clamp(30px, 4vw, 56px);
  background:
    linear-gradient(145deg, rgba(131, 214, 255, .045), transparent 60%),
    var(--panel);
}

.focus-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
}

.focus-grid h3 {
  margin: 52px 0 14px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 400;
}

.focus-grid p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.frame-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.frame-card > a,
.feature-figure > a {
  display: block;
  overflow: hidden;
}

.frame-card img,
.feature-figure img {
  width: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}

.frame-card img {
  aspect-ratio: 16 / 9;
}

.frame-card:hover img,
.feature-figure:hover img {
  transform: scale(1.018);
  filter: brightness(1.05);
}

.frame-card figcaption {
  padding: 20px 22px 22px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.frame-card figcaption > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
}

.frame-card h3 {
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.frame-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.section-note {
  margin: 18px 0 0;
  color: #77828d;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.frost-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, .8fr);
  gap: 1px;
  background: var(--line);
}

.frost-hero-card,
.frost-study-card {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.frost-hero-card > a,
.frost-study-card > a {
  display: block;
  overflow: hidden;
}

.frost-hero-card img,
.frost-study-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}

.frost-hero-card img {
  aspect-ratio: 3 / 2;
}

.frost-study-card img {
  aspect-ratio: 16 / 9;
}

.frost-hero-card:hover img,
.frost-study-card:hover img {
  transform: scale(1.012);
  filter: brightness(1.04);
}

.frost-hero-card figcaption {
  padding: 24px clamp(24px, 4vw, 46px) 30px;
}

.frost-hero-card h3,
.frost-copy-card h3,
.frost-study-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
}

.frost-hero-card h3 {
  font-size: clamp(30px, 3vw, 46px);
}

.frost-copy-card {
  padding: clamp(34px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(155deg, rgba(131, 214, 255, .07), transparent 46%),
    linear-gradient(330deg, rgba(143, 28, 37, .1), transparent 52%),
    var(--panel-soft);
}

.frost-copy-card h3 {
  max-width: 520px;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.frost-copy-card > p:not(.utility-label) {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.frost-copy-card .frost-lead {
  margin: 34px 0 18px;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.42;
}

.frost-identity-lock {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.frost-identity-lock span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .18em;
}

.frost-identity-lock p {
  margin: 12px 0 0;
  color: #cbd2d9;
  font-size: 13px;
  line-height: 1.65;
}

.frost-study-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.frost-performance-heading {
  grid-column: 1 / -1;
  margin: 42px 0 14px;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  gap: 8vw;
  align-items: end;
}

.frost-performance-heading h3 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -.035em;
}

.frost-performance-heading > p {
  width: 90%;
  max-width: 432px;
  margin: 0;
  justify-self: end;
  color: var(--muted);
  line-height: 1.85;
  text-wrap: pretty;
}

.frost-study-card {
  border: 1px solid var(--line);
}

.frost-study-card > figcaption:not(.expression-caption) {
  min-height: 160px;
  padding: 28px 30px 32px;
}

.frost-study-card h3 {
  font-size: clamp(28px, 2.6vw, 40px);
}

.frost-study-card figcaption > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.expression-caption {
  min-height: 160px;
  background: var(--line);
}

.expression-state-grid {
  min-height: 160px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.expression-state-grid article {
  background: var(--panel);
}

.expression-state-image {
  display: none;
}

.expression-state-copy {
  height: 100%;
  padding: 28px 22px;
}

.expression-state-copy h4 {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-weight: 400;
}

.expression-state-copy span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .18em;
}

.expression-state-copy b {
  color: #66717b;
  font-size: 10px;
  font-weight: 400;
}

.expression-state-copy em {
  color: #d4d9de;
  font-family: var(--serif);
  font-size: 18px;
  font-style: normal;
  letter-spacing: .08em;
}

.expression-state-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
}

.feature-section {
  border-top: 1px solid var(--line);
}

.feature-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.feature-figure img {
  aspect-ratio: 16 / 9;
}

.feature-figure figcaption {
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  gap: 8vw;
  align-items: end;
}

.utility-label {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .2em;
}

.feature-figure h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
}

.feature-figure figcaption > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.element-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.element-grid article {
  min-height: 210px;
  padding: 34px;
  background: var(--panel-soft);
}

.element-grid i {
  width: 8px;
  height: 8px;
  margin-bottom: 46px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 22px currentColor;
}

.element-ice {
  background: var(--ice);
  color: var(--ice);
}

.element-fire {
  background: #ff9854;
  color: #ff7e3d;
}

.element-storm {
  background: #bfb4ff;
  color: #8da9ff;
}

.element-grid h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.element-grid p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.region-grid {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  list-style: none;
}

.region-grid li {
  min-height: 230px;
  padding: 28px;
  background: var(--panel-soft);
}

.region-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
}

.region-grid div {
  margin-top: 56px;
}

.region-grid h3 {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.region-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.character-legend {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.character-legend article {
  min-height: 190px;
  padding: 26px;
  background: var(--panel-soft);
}

.character-legend span {
  color: var(--ice);
  font-size: 9px;
  letter-spacing: .18em;
}

.character-legend h3 {
  margin: 44px 0 8px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.character-legend p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.progress-section {
  border-top: 1px solid var(--line);
}

.progress-track {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.progress-track li {
  min-height: 132px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
}

.progress-track li > span {
  color: #64717d;
  font-family: var(--serif);
  font-size: 28px;
}

.progress-track li > div > p {
  margin-bottom: 8px;
  color: #798690;
  font-size: 9px;
  letter-spacing: .18em;
}

.progress-track h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 36px);
  font-weight: 400;
}

.progress-track strong {
  min-width: 128px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: #85919c;
  font-size: 9px;
  letter-spacing: .13em;
  text-align: center;
}

.progress-track .is-complete > span,
.progress-track .is-complete strong {
  color: var(--gold);
}

.progress-track .is-review > span,
.progress-track .is-review strong {
  color: var(--ice);
}

.progress-track .is-active {
  background: linear-gradient(90deg, rgba(131, 214, 255, .06), transparent);
}

.progress-track .is-active > span,
.progress-track .is-active strong {
  color: #c7baff;
}

.feedback-section {
  margin-bottom: clamp(70px, 8vw, 120px);
  border: 1px solid var(--line);
  padding: clamp(48px, 7vw, 94px);
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 9vw;
  background:
    linear-gradient(130deg, rgba(239, 183, 78, .045), transparent 38%),
    linear-gradient(310deg, rgba(131, 214, 255, .06), transparent 50%),
    var(--panel);
}

.feedback-list {
  border-top: 1px solid var(--line);
}

.feedback-list p {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  color: #d4d9de;
  line-height: 1.55;
}

.feedback-list span {
  color: var(--gold);
  font-family: var(--serif);
}

footer {
  min-height: 170px;
  padding: 42px clamp(24px, 5vw, 78px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 28px;
  color: #87919b;
  font-size: 10px;
  letter-spacing: .12em;
}

footer strong {
  color: var(--text);
}

footer p {
  margin: 6px 0 0;
}

footer > p {
  margin: 0;
  text-align: center;
}

footer a {
  justify-self: end;
  color: var(--gold);
  text-transform: uppercase;
}

@keyframes hero-settle {
  from {
    opacity: .3;
    transform: scale(1.035);
    filter: saturate(.72);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-top: 18px;
  }

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 0 0 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  .region-grid,
  .character-legend {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .focus-grid,
  .element-grid {
    grid-template-columns: 1fr;
  }

  .frost-spotlight,
  .frost-study-grid {
    grid-template-columns: 1fr;
  }

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

  .frost-performance-heading > p {
    width: 100%;
    max-width: 620px;
    justify-self: start;
  }

  .frost-study-grid > .frost-study-card:not(.expression-study-card) {
    order: 1;
  }

  .frost-performance-heading {
    order: 2;
  }

  .expression-study-card {
    order: 3;
  }

  .focus-grid article {
    min-height: 220px;
  }

  .focus-grid h3 {
    margin-top: 34px;
  }

  .feature-figure figcaption,
  .feedback-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feedback-section {
    width: calc(100% - 40px);
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  footer > p {
    text-align: left;
  }

  footer a {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 18px 20px;
    gap: 18px;
  }

  .studio-mark small {
    display: none;
  }

  .back-link {
    font-size: 9px;
  }

  nav {
    gap: 20px;
  }

  .hero {
    min-height: 720px;
  }

  .hero > img {
    object-position: 56% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3, 5, 8, .96) 0%, rgba(3, 5, 8, .68) 56%, rgba(3, 5, 8, .14) 100%),
      linear-gradient(90deg, rgba(3, 5, 8, .68), transparent);
  }

  .hero-copy {
    top: auto;
    right: 22px;
    bottom: 104px;
    left: 22px;
    width: auto;
  }

  h1 {
    font-size: clamp(54px, 17vw, 84px);
  }

  .hero-deck {
    max-width: 480px;
    font-size: 18px;
  }

  .hero-label {
    right: 20px;
    bottom: 22px;
  }

  .section-shell {
    width: calc(100% - 40px);
    padding: 76px 0;
  }

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

  .frost-section > .section-heading > p {
    width: 100%;
    max-width: 620px;
    justify-self: start;
  }

  .review-focus {
    padding-top: 64px;
    padding-bottom: 0;
  }

  .previs-grid,
  .region-grid,
  .character-legend {
    grid-template-columns: 1fr;
  }

  .feature-figure figcaption {
    padding: 24px 20px 28px;
  }

  .frost-copy-card {
    padding: 38px 24px 44px;
  }

  .frost-study-card > figcaption:not(.expression-caption) {
    padding: 26px 22px 30px;
  }

  .expression-state-copy {
    padding: 22px 14px;
  }

  .expression-state-copy p {
    font-size: 15px;
  }

  .region-grid li,
  .character-legend article {
    min-height: 168px;
  }

  .region-grid div,
  .character-legend h3 {
    margin-top: 32px;
  }

  .progress-track li {
    padding: 24px 4px;
    grid-template-columns: 42px 1fr;
    gap: 15px;
  }

  .progress-track strong {
    grid-column: 2;
    justify-self: start;
    min-width: 0;
  }

  .feedback-section {
    padding: 36px 24px;
  }
}

@media (max-width: 560px) {
  .expression-study-card > a {
    display: none;
  }

  .expression-state-grid {
    grid-template-columns: 1fr;
  }

  .expression-state-grid article {
    min-height: 0;
  }

  .expression-state-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .expression-state-copy {
    padding: 22px 20px 26px;
  }

  .expression-state-copy em {
    font-size: 20px;
  }

  .expression-state-copy p {
    margin: 8px 0 0;
    line-height: 1.65;
  }
}

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

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