/* ==========================================================================
   数字展示柜（二级页）
   主题：黑色展厅 / 玻璃展柜 / 柔和聚光灯 / 精致收藏感
   手机优先；3D 用自己写的迷你查看器（js/viewer.js），零依赖
   ========================================================================== */

/* ---------- 1. 变量 ---------- */
:root {
  --ink:      #f2ece0;      /* 暖白 */
  --ink-2:    rgba(238, 231, 218, .62);
  --ink-3:    rgba(232, 224, 210, .38);
  --gold:     #c9a063;
  --gold-2:   rgba(201, 160, 99, .45);
  --line:     rgba(240, 232, 216, .14);
  --line-2:   rgba(240, 232, 216, .26);
  --case:     rgba(255, 255, 255, .045);
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", "Songti SC", "STSong", serif;
  --ease: cubic-bezier(.22, .8, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  background: #08080b;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

button { font: inherit; color: inherit; }

/* ---------- 2. 展厅背景 ---------- */
.dust {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(90% 55% at 50% 6%,  rgba(255, 226, 178, .10) 0%, rgba(255, 226, 178, 0) 62%),
    radial-gradient(70% 45% at 50% 96%, rgba(120, 104, 84, .12) 0%, rgba(120, 104, 84, 0) 70%),
    linear-gradient(180deg, #0a0a0d 0%, #0b0a0c 44%, #07070a 100%);
}

/* 四角压暗，像展厅的暗角 */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(130% 100% at 50% 45%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .55) 100%);
}

/* ---------- 3. 开场：一点光 → 照亮展台 ---------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: #050507;
  opacity: 1;
  transition: opacity 1.1s var(--ease);
}
body.is-lit .intro { opacity: .0; transition-delay: .1s; }

.intro__point {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff3dc;
  box-shadow: 0 0 24px 10px rgba(255, 232, 194, .55);
  opacity: 0;
  animation: pointIn 1.5s var(--ease) forwards;
}

@keyframes pointIn {
  0%   { opacity: 0; transform: scale(.2); }
  35%  { opacity: 1; transform: scale(1); }
  100% { opacity: .9; transform: scale(2.4); }
}

.intro__beam {
  position: absolute;
  left: 50%;
  top: 0;
  width: 62vw;
  max-width: 560px;
  height: 82vh;
  margin-left: -31vw;
  background: linear-gradient(180deg, rgba(255, 233, 195, .16) 0%, rgba(255, 233, 195, .05) 45%, rgba(255, 233, 195, 0) 78%);
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
  opacity: 0;
  animation: beamIn 2s var(--ease) .35s forwards;
}

@keyframes beamIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* ---------- 4. 标题 ---------- */
.hero {
  position: relative;
  z-index: 2;
  padding: calc(52px + env(safe-area-inset-top)) 24px 0;
  text-align: center;
}

body.is-js .hero > * {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(7px);
  transition: opacity 1.1s var(--ease), transform 1.2s var(--ease), filter 1.2s var(--ease);
}
body.is-title .hero > * { opacity: 1; transform: none; filter: blur(0); }
body.is-js.is-title .hero__en { transition-delay: .1s; }
body.is-js.is-title .hero__cn { transition-delay: .24s; }

.hero__kicker {
  margin: 0 0 14px;
  font-size: 10.5px;
  letter-spacing: .42em;
  text-indent: .42em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.hero__en {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(23px, 7.4vw, 36px);
  letter-spacing: .04em;
  color: #f6f1e7;
  text-shadow: 0 0 40px rgba(255, 226, 178, .18);
}

.hero__cn {
  margin: 0;
  font-size: clamp(13px, 3.9vw, 15px);
  letter-spacing: .34em;
  text-indent: .34em;
  color: var(--ink-2);
}

/* ---------- 5. 展柜 ---------- */
.exhibit {
  position: relative;
  z-index: 2;
  padding: 34px 20px 0;
}

.case {
  position: relative;
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 22px 18px 30px;
  border-radius: 22px 22px 14px 14px;
  background:
    linear-gradient(180deg, rgba(255, 246, 232, .07) 0%, rgba(255, 246, 232, .015) 32%, rgba(255, 255, 255, .01) 100%);
  border: 1px solid var(--line);
  box-shadow:
    0 40px 80px -40px rgba(0, 0, 0, .95),
    inset 0 1px 0 rgba(255, 255, 255, .10);
  opacity: 0;
  transform: translateY(14px) scale(.985);
  transition: opacity 1.4s var(--ease), transform 1.6s var(--ease);
}
body.is-case .case,
body:not(.is-js) .case { opacity: 1; transform: none; }

/* 玻璃反光 */
.case__glass {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .075) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(200deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, 0) 26%);
}

/* 顶上的聚光灯锥 */
.case__spot {
  position: absolute;
  left: 50%;
  top: -2px;
  width: 74%;
  height: 78%;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 234, 199, .16) 0%, rgba(255, 234, 199, .045) 42%, rgba(255, 234, 199, 0) 80%);
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  opacity: 0;
  transition: opacity 1.8s var(--ease) .2s;
}
body.is-case .case__spot { opacity: 1; }

.case__stage {
  position: relative;
  height: clamp(300px, 52vh, 460px);
}

.case__canvas {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  touch-action: none;
  cursor: grab;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.case__canvas:active { cursor: grabbing; }
body.is-model .case__canvas { opacity: 1; }

/* 模型底下的一圈影子 */
.case__shadow {
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 62%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .28) 42%, rgba(0, 0, 0, 0) 72%);
  opacity: 0;
  transition: opacity 1.4s var(--ease) .2s;
}
body.is-model .case__shadow { opacity: 1; }

/* 底座 */
.case__podium {
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 62%;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 233, 198, .18) 0%, rgba(255, 233, 198, .05) 46%, rgba(255, 233, 198, 0) 74%);
  border-top: 1px solid rgba(255, 236, 205, .22);
}

.case__loading {
  position: absolute;
  inset: auto 0 46%;
  z-index: 3;
  margin: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: .22em;
  text-indent: .22em;
  color: var(--ink-3);
  opacity: 0;
  transition: opacity .8s var(--ease);
}
body.is-waiting .case__loading { opacity: 1; }
.case__loading i {
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #fff1d6;
  box-shadow: 0 0 18px 6px rgba(255, 233, 195, .45);
  animation: waitingBreath 2.1s ease-in-out infinite;
}

@keyframes waitingBreath {
  0%, 100% { opacity: .35; transform: scale(.8); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

.case__fallback {
  position: absolute;
  inset: auto 21px 46%;
  z-index: 3;
  margin: 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--ink-2);
}

.case__hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  margin: 0;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: .26em;
  text-indent: .26em;
  color: var(--ink-3);
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
body.is-model .case__hint { opacity: 1; transition-delay: 1.6s; }
.case__hint.is-off { opacity: 0 !important; }

/* 展签 */
.caption {
  width: min(100%, 460px);
  margin: 58px auto 0;
  text-align: center;
}

.caption__en {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .34em;
  text-indent: .34em;
  text-transform: uppercase;
  color: var(--gold);
}

.caption__cn {
  margin: 0 0 16px;
  font-size: 12.5px;
  letter-spacing: .3em;
  text-indent: .3em;
  color: var(--ink-3);
}

.caption__line {
  margin: 0;
  font-size: 14.5px;
  line-height: 2;
  letter-spacing: .04em;
  color: var(--ink-2);
}

/* 版本切换 */
.switch {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 26px auto 0;
}

.switch__btn {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .02);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--ink-3);
  cursor: pointer;
  transition: color .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}
.switch__btn.is-on {
  color: var(--ink);
  border-color: var(--gold-2);
  background: rgba(201, 160, 99, .10);
}

/* ---------- 6. 通用标题 ---------- */
main {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

.sec__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(17px, 5.2vw, 21px);
  letter-spacing: .16em;
  text-align: center;
  color: #f4eee3;
}

.sec__line {
  margin: 0 auto 26px;
  max-width: 22em;
  text-align: center;
  font-size: 13.5px;
  line-height: 2;
  color: var(--ink-2);
}

body.is-js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.1s var(--ease), transform 1.2s var(--ease);
}
body.is-js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- 7. 从数字到实体（拖动对比） ---------- */
.shift {
  padding: 96px 20px 0;
}

.compare {
  position: relative;
  width: min(100%, 460px);
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #0c0b0e;
  overflow: hidden;
  touch-action: pan-y;
  box-shadow: 0 34px 70px -40px rgba(0, 0, 0, .95), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.compare__side {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.compare__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.compare__side--left { background: linear-gradient(160deg, #101014, #0a0a0d); }
.compare__side--right {
  background: linear-gradient(160deg, #171412, #0d0b0a);
  clip-path: inset(0 0 0 50%);
  transition: clip-path .08s linear;
}

.compare__tag {
  position: absolute;
  bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 11, .6);
  backdrop-filter: blur(6px);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--ink-2);
}
.compare__side--left .compare__tag { left: 14px; }
.compare__side--right .compare__tag { right: 14px; }

.compare__empty {
  position: absolute;
  inset: auto 0 46%;
  text-align: center;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--ink-3);
}

/* 中缝的粒子 */
.compare__spark {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 233, 195, 0) 0%, rgba(255, 233, 195, .35) 22%, rgba(255, 233, 195, .35) 78%, rgba(255, 233, 195, 0) 100%);
}
.compare__spark i {
  position: absolute;
  left: -1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffeccd;
  box-shadow: 0 0 10px 3px rgba(255, 232, 194, .5);
  animation: sparkRise 3.4s linear infinite;
}
.compare__spark i:nth-child(2) { animation-delay: 1.1s; }
.compare__spark i:nth-child(3) { animation-delay: 2.2s; }

@keyframes sparkRise {
  0%   { top: 92%; opacity: 0; }
  12%  { opacity: .9; }
  88%  { opacity: .5; }
  100% { top: 6%; opacity: 0; }
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 46px;
  margin-left: -23px;
  display: grid;
  place-items: center;
  cursor: ew-resize;
  touch-action: none;
}
.compare__handle span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(10, 10, 13, .78);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, .9);
  position: relative;
}
.compare__handle span::before,
.compare__handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: 1.2px solid var(--ink-2);
  border-right: 1.2px solid var(--ink-2);
}
.compare__handle span::before { left: 9px;  transform: rotate(-135deg); }
.compare__handle span::after  { right: 9px; transform: rotate(45deg); }

.compare__hint {
  margin: 14px 0 0;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: .22em;
  text-indent: .22em;
  color: var(--ink-3);
}

/* ---------- 8. 卡片（实体照片 / 细节） ---------- */
.gallery, .details { padding: 96px 0 0; }

.cards {
  display: flex;
  gap: 14px;
  padding: 4px 20px 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cards::-webkit-scrollbar { display: none; }

.excard {
  margin: 0;                 /* figure 自带外边距，先清掉 */
  flex: 0 0 68%;
  max-width: 300px;
  scroll-snap-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
  overflow: hidden;
  box-shadow: 0 26px 50px -34px rgba(0, 0, 0, .9);
}
@media (min-width: 620px) { .excard { flex-basis: 46%; } }

.excard__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #0b0b0e;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.excard__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 还没放照片时的空框 */
.excard__frame.is-empty {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .022) 0 10px, rgba(255, 255, 255, 0) 10px 20px),
    #0b0b0e;
}
.excard__frame.is-empty::after {
  content: attr(data-file);
  position: absolute;
  inset: auto 14px 16px;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-align: center;
  color: var(--ink-3);
}
.excard__frame.is-empty::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  opacity: .5;
}

.excard__plate {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
}
.excard__label {
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--ink);
}
.excard__note {
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--ink-3);
  text-align: right;
}

/* ---------- 9. 结尾 ---------- */
.ending {
  padding: 110px 24px calc(120px + env(safe-area-inset-bottom));
  text-align: center;
}

.ending__orn {
  display: block;
  width: 54px;
  height: 1px;
  margin: 0 auto 30px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

.ending__line {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(15px, 4.6vw, 18px);
  letter-spacing: .1em;
  color: #f3ecdf;
}

.ending__sub {
  margin: 0;
  font-size: 13.5px;
  line-height: 2;
  color: var(--ink-2);
}

.ending__back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 40px;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: .14em;
  color: var(--ink-2);
  transition: transform .5s var(--ease), border-color .5s var(--ease), color .5s var(--ease);
}
.ending__back i {
  width: 6px; height: 6px;
  border-top: 1.4px solid currentColor;
  border-right: 1.4px solid currentColor;
  transform: rotate(45deg);
}

/* ---------- 10. 角落的制作记录 ---------- */
.records {
  position: fixed;
  z-index: 5;
  left: calc(14px + env(safe-area-inset-left));
  bottom: calc(14px + env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 9, 12, .62);
  backdrop-filter: blur(8px);
  font-size: 11.5px;
  letter-spacing: .1em;
  color: var(--ink-3);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
body.is-ready .records { opacity: 1; transform: none; transition-delay: 1s; }
.records__frame {
  width: 10px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 2px;
  opacity: .8;
}

/* 页脚（备案号）：躲开左下角「查看制作记录」那个小按钮 */
.beian.beian--end { padding: 26px 18px calc(58px + env(safe-area-inset-bottom)); }
@media (hover: hover) {
  .records:hover { color: var(--ink-2); border-color: var(--line-2); }
}

/* ---------- 11. 制作记录面板 ---------- */
.panel {
  position: fixed;
  inset: 0;
  z-index: 8;
  display: grid;
  align-items: end;
  background: rgba(4, 4, 6, .72);
  backdrop-filter: blur(10px);
  animation: fadeIn .4s var(--ease);
}
.panel[hidden] { display: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.panel__inner {
  max-height: 88vh;
  overflow-y: auto;
  padding: 26px 20px calc(30px + env(safe-area-inset-bottom));
  border-radius: 20px 20px 0 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #100f12 0%, #0a0a0d 100%);
  animation: sheetUp .5s var(--ease);
}

@keyframes sheetUp { from { transform: translateY(24px); opacity: .6; } to { transform: none; opacity: 1; } }

@media (min-width: 700px) {
  .panel { align-items: center; justify-items: center; }
  .panel__inner { width: min(92vw, 620px); border-radius: 20px; border: 1px solid var(--line); }
}

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.panel__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .16em;
  color: #f4eee3;
}

.panel__close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .02);
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
}

.panel__note {
  margin: 14px 0 20px;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--ink-3);
}

.panel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.panel__item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #0b0b0e;
}
.panel__item .excard__frame { aspect-ratio: 3 / 4; }
.panel__item figcaption {
  padding: 8px 10px 10px;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  text-align: center;
}

/* ---------- 12. 大图 ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 40px 18px;
  background: rgba(4, 4, 6, .9);
  backdrop-filter: blur(6px);
  animation: fadeIn .35s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 12px;
  box-shadow: 0 30px 70px -30px #000;
}
.lightbox__cap {
  margin: 0;
  font-size: 12.5px;
  letter-spacing: .1em;
  color: var(--ink-2);
}
.lightbox__close {
  position: absolute;
  top: calc(18px + env(safe-area-inset-top));
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: var(--ink-2);
  cursor: pointer;
}

/* ---------- 13. 响应式与降级 ---------- */
@media (max-width: 380px) {
  .case { padding: 18px 14px 26px; }
  .case__stage { height: clamp(260px, 46vh, 380px); }
  .excard { flex-basis: 76%; }
}

@media (min-width: 760px) and (min-height: 700px) {
  .hero { padding-top: calc(72px + env(safe-area-inset-top)); }
  .case { padding: 26px 24px 34px; }
  .case__stage { height: 56vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro, .intro__point, .intro__beam { animation: none; }
  .intro { opacity: 0; }
  .case__loading i, .compare__spark i { animation: none; }
  body.is-js .hero > *,
  body.is-js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .case, .case__canvas, .case__shadow, .case__spot, .records { opacity: 1 !important; transform: none !important; }
}
