:root {
  --ink: #202842;
  --deep: #0f1527;
  --navy: #293452;
  --slate: #596887;
  --mist: #e7ecfb;
  --veil: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.22);
  --lavender: #b8a9ff;
  --cyan: #a8eff4;
  --rose: #e9b8c7;
  --shadow: 0 26px 90px rgba(16, 22, 42, 0.28);
  font-family:
    "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--deep);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #f3f6ff;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

.demo-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  height: 86px;
  padding: 0 clamp(22px, 4vw, 72px);
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 21, 39, 0.6), rgba(15, 21, 39, 0));
}

.demo-brand {
  width: clamp(168px, 13vw, 216px);
}

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

.demo-nav {
  justify-self: center;
  display: flex;
  gap: clamp(24px, 4vw, 60px);
  font-size: 15px;
  font-weight: 700;
}

.demo-nav a {
  opacity: 0.82;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.demo-home,
.primary-link,
.step-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.demo-home {
  padding: 0 24px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
}

.demo-hero {
  position: relative;
  min-height: 760px;
  height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.02);
  animation: heroDrift 12s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 32, 54, 0.86), rgba(25, 32, 54, 0.3) 52%, rgba(25, 32, 54, 0.08)),
    linear-gradient(180deg, rgba(15, 21, 39, 0.1), rgba(15, 21, 39, 0.48));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 48px));
  margin-left: clamp(24px, 8vw, 150px);
  padding-top: 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 126px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 30px 0 0;
  font-size: clamp(18px, 1.45vw, 26px);
  line-height: 1.85;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.78);
}

.primary-link {
  margin-top: 40px;
  padding: 0 34px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.primary-link:hover,
.primary-link:focus-visible {
  transform: translateY(-3px);
  background: #fff;
}

.index-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: #fff;
  background: #d5dced;
}

.index-band article {
  min-height: 230px;
  padding: clamp(34px, 5vw, 62px);
  background:
    linear-gradient(135deg, rgba(40, 50, 82, 0.96), rgba(91, 102, 139, 0.92)),
    url("/assets/background/design-bg-q92.webp") center / cover;
}

.index-band span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.index-band strong {
  display: block;
  font-size: clamp(28px, 2.6vw, 46px);
  letter-spacing: 0.08em;
}

.index-band p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.assessment-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(420px, 1.35fr) minmax(280px, 0.8fr);
  gap: 22px;
  padding: clamp(80px, 9vw, 150px) clamp(22px, 4.8vw, 88px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(74, 86, 128, 0.94), rgba(42, 51, 83, 0.98)),
    url("/assets/background/design-bg-q92.webp") center top / cover;
}

.assessment-rail,
.question-stage,
.hrv-panel,
.analysis-panel,
.score-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 80px rgba(14, 20, 38, 0.2);
  backdrop-filter: blur(18px);
}

.assessment-rail,
.hrv-panel {
  align-self: start;
  padding: 28px;
}

.assessment-rail {
  position: sticky;
  top: 106px;
}

.assessment-rail h2 {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1.32;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.progress-shell {
  margin-top: 30px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.progress-track,
.dual-bars i,
.dimension-meter {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.progress-track span,
.dual-bars b,
.dimension-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--lavender));
  transition: width 360ms ease;
}

.dimension-nav {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.dimension-nav button {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.dimension-nav button.is-active {
  color: #fff;
  border-color: rgba(168, 239, 244, 0.52);
  background: rgba(168, 239, 244, 0.12);
}

.rail-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.ghost-button {
  min-height: 44px;
  padding: 0 18px;
  color: var(--navy);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.86);
}

.ghost-button--quiet {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
}

.question-stage {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 54px);
}

.question-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.question-panel {
  flex: 1;
  display: grid;
  align-content: center;
  gap: 34px;
}

.question-panel h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 54px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.answer-grid.answer-grid--scale10 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.answer-option {
  min-height: 74px;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.answer-option:hover,
.answer-option:focus-visible {
  transform: translateY(-3px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
}

.answer-option.is-selected {
  color: var(--navy);
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--lavender));
}

.answer-option strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.answer-option span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.question-controls {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
}

.step-button {
  min-width: 132px;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
}

.step-button--primary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
}

.step-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.toggle-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.toggle-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
}

.range-row {
  display: grid;
  grid-template-columns: 64px 1fr 74px;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.range-row input {
  width: 100%;
  accent-color: var(--lavender);
}

.range-row output {
  text-align: right;
  font-size: 13px;
}

.hrv-score {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hrv-score span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 800;
}

.hrv-score strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 1;
  color: #fff;
}

.report-section {
  padding: clamp(82px, 10vw, 150px) clamp(22px, 6vw, 104px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 247, 255, 0.94), rgba(231, 236, 251, 0.98)),
    url("/assets/background/design-bg-q92.webp") center / cover;
}

.report-heading {
  display: grid;
  grid-template-columns: minmax(0, 840px) auto;
  align-items: end;
  gap: 28px;
  width: 100%;
  margin-bottom: 52px;
}

.report-actions {
  justify-self: end;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.report-generated,
.report-save-status,
.saved-report-link {
  color: rgba(32, 40, 66, 0.54);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.saved-report-link {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.report-actions__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.print-button,
.save-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
  background: var(--navy);
  box-shadow: 0 18px 60px rgba(38, 48, 79, 0.18);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.save-button {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
}

.print-button:hover,
.print-button:focus-visible,
.save-button:hover,
.save-button:focus-visible {
  transform: translateY(-3px);
  background: var(--deep);
  color: #fff;
}

.report-heading .eyebrow,
.model-copy .eyebrow {
  color: rgba(41, 52, 82, 0.56);
}

.report-heading h2,
.model-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 86px);
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.report-heading p:not(.eyebrow),
.model-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(32, 40, 66, 0.68);
  font-size: clamp(17px, 1.4vw, 24px);
  line-height: 1.85;
  letter-spacing: 0.06em;
}

.score-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.score-card {
  min-height: 270px;
  display: grid;
  place-items: center;
  padding: 34px;
  color: var(--ink);
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 80px rgba(38, 48, 79, 0.14);
}

.score-ring {
  --score: 0;
  display: grid;
  place-items: center;
  width: 148px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 58%, transparent 59%),
    conic-gradient(var(--lavender) calc(var(--score) * 1%), rgba(41, 52, 82, 0.12) 0);
}

.score-ring span {
  font-size: 46px;
  font-weight: 900;
}

.score-card p {
  margin: 22px 0 0;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.score-card small {
  color: rgba(32, 40, 66, 0.52);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.analysis-panel {
  padding: 32px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 70px rgba(38, 48, 79, 0.12);
}

.analysis-panel--wide {
  grid-column: 1 / -1;
}

.analysis-panel .eyebrow {
  margin-bottom: 0;
  color: rgba(41, 52, 82, 0.52);
}

.analysis-panel strong {
  font-size: 22px;
  letter-spacing: 0.08em;
}

.analysis-panel p {
  margin: 26px 0 0;
  color: rgba(32, 40, 66, 0.68);
  line-height: 1.8;
}

.dual-bars,
.dimension-bars {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.dual-bars label,
.dimension-bar {
  display: grid;
  grid-template-columns: 110px 1fr 44px;
  align-items: center;
  gap: 14px;
  color: rgba(32, 40, 66, 0.76);
  font-weight: 800;
}

.dual-bars i,
.dimension-meter {
  background: rgba(41, 52, 82, 0.1);
}

.opportunity-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.opportunity-list li {
  min-height: 156px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(41, 52, 82, 0.08);
  counter-increment: item;
}

.opportunity-list li::before {
  content: "0" counter(item);
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--slate);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.opportunity-list strong {
  display: block;
  font-size: 20px;
}

.opportunity-list span {
  display: block;
  margin-top: 12px;
  color: rgba(32, 40, 66, 0.64);
  line-height: 1.6;
}

.model-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
  padding: clamp(86px, 10vw, 160px) clamp(22px, 6vw, 104px);
  background: #f5f7ff;
}

.model-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.model-flow span {
  min-height: 116px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--navy), #6f78a2);
  box-shadow: 0 20px 70px rgba(38, 48, 79, 0.18);
}

.model-flow i {
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--slate);
}

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

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

.demo-footer p {
  margin: 0;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }
  to {
    transform: scale(1.06) translateX(-18px);
  }
}

@media (max-width: 1160px) {
  .assessment-section {
    grid-template-columns: 1fr;
  }

  .assessment-rail {
    position: static;
  }

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

  .hrv-panel {
    align-self: stretch;
  }

  .model-section,
  .model-flow {
    grid-template-columns: 1fr;
  }

  .model-flow i {
    width: 2px;
    height: 24px;
    justify-self: center;
  }

  .report-heading {
    grid-template-columns: 1fr;
  }

  .report-actions {
    justify-self: start;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .demo-header {
    height: 76px;
    grid-template-columns: auto auto;
    padding-inline: 18px;
  }

  .demo-brand {
    width: 154px;
  }

  .demo-nav {
    display: none;
  }

  .demo-home {
    min-height: 40px;
    padding-inline: 18px;
  }

  .demo-hero {
    min-height: 680px;
    height: 86svh;
  }

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

  .hero-content {
    width: calc(100% - 40px);
    margin-left: 20px;
  }

  .hero-content h1 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .hero-content p:not(.eyebrow) {
    font-size: 17px;
    letter-spacing: 0.04em;
  }

  .index-band,
  .score-board,
  .report-grid,
  .opportunity-list {
    grid-template-columns: 1fr;
  }

  .question-stage {
    min-height: 610px;
    padding: 26px 20px;
  }

  .question-topline,
  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .question-panel h2 {
    font-size: 27px;
  }

  .answer-grid,
  .answer-grid.answer-grid--scale10 {
    grid-template-columns: 1fr;
  }

  .answer-option {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .answer-option span {
    margin-top: 0;
  }

  .dimension-nav {
    grid-template-columns: 1fr;
  }

  .range-row,
  .dual-bars label,
  .dimension-bar {
    grid-template-columns: 1fr;
  }

  .question-controls {
    display: grid;
  }

  .demo-footer {
    display: grid;
  }
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  html,
  body {
    width: 100%;
    margin: 0;
    color: #182038;
    background: #fff !important;
  }

  .demo-header,
  .demo-hero,
  .index-band,
  .assessment-section,
  .model-section,
  .demo-footer,
  .print-button {
    display: none !important;
  }

  .save-button,
  .report-save-status,
  .saved-report-link {
    display: none !important;
  }

  .report-section {
    padding: 0 !important;
    color: #182038;
    background: #fff !important;
  }

  .report-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 16px;
    margin-bottom: 18px;
    break-inside: avoid;
  }

  .report-heading .eyebrow {
    margin-bottom: 8px;
    color: #596887 !important;
    font-size: 9pt;
  }

  .report-heading h2 {
    font-size: 30pt;
    line-height: 1.18;
  }

  .report-heading p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 10px;
    color: #4d5872 !important;
    font-size: 11pt;
    line-height: 1.55;
  }

  .report-generated {
    color: #596887 !important;
    font-size: 9pt;
  }

  .score-board {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    break-inside: avoid;
  }

  .score-card,
  .analysis-panel {
    border: 1px solid #d8deef;
    background: #fff !important;
    break-inside: avoid;
  }

  .score-card {
    min-height: 170px;
    padding: 18px;
  }

  .score-ring {
    width: 96px;
  }

  .score-ring span {
    font-size: 26pt;
  }

  .score-card p {
    margin-top: 12px;
    font-size: 11pt;
  }

  .score-card small {
    font-size: 8pt;
  }

  .report-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .analysis-panel {
    padding: 16px;
  }

  .analysis-panel--wide {
    grid-column: 1 / -1;
  }

  .analysis-panel .eyebrow {
    color: #596887 !important;
    font-size: 8pt;
  }

  .analysis-panel strong {
    font-size: 13pt;
  }

  .analysis-panel p {
    margin-top: 12px;
    color: #4d5872 !important;
    font-size: 10pt;
    line-height: 1.5;
  }

  .dual-bars,
  .dimension-bars {
    gap: 9px;
    margin-top: 14px;
  }

  .dual-bars label,
  .dimension-bar {
    grid-template-columns: 82px 1fr 32px;
    gap: 8px;
    font-size: 9pt;
  }

  .opportunity-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
  }

  .opportunity-list li {
    min-height: 0;
    padding: 14px;
    border: 1px solid #d8deef;
    background: #f6f8ff !important;
  }

  .opportunity-list li::before {
    margin-bottom: 8px;
    font-size: 8pt;
  }

  .opportunity-list strong {
    font-size: 11pt;
  }

  .opportunity-list span {
    margin-top: 8px;
    color: #4d5872 !important;
    font-size: 9pt;
    line-height: 1.45;
  }
}

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