/* ===== 设计令牌 ===== */
:root {
  --ink: #141216;
  --cream: #f7e3bd;
  --red: #e8402c;
  --lime: #a4e04b;
  --amber: #ffb400;
  --purple: #9d7bfa;
  --salmon: #ff9d88;
  --paper: #f5efe2;
  --line-dark: rgb(20 18 22 / .28);   /* 彩底上的细线 */
  --line-light: rgb(245 239 226 / .14); /* 深底上的细线 */
  --sans: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
::selection { background: var(--red); color: #fff; }

/* ===== 通用元件 ===== */
.pill {
  display: inline-block;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 6px 22px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 3px;
}
.pill-dark { color: var(--paper); }
.giant {
  font-size: clamp(52px, 8.5vw, 128px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: .01em;
  margin-top: 26px;
  white-space: pre-line;
}
.lead { font-size: 17px; max-width: 560px; margin-top: 26px; }

/* 像素阶梯角(CTA/卡片) */
.btn-px {
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  padding: 12px 26px;
  clip-path: polygon(
    0 8px, 4px 8px, 4px 0, calc(100% - 4px) 0, calc(100% - 4px) 8px, 100% 8px,
    100% calc(100% - 8px), calc(100% - 4px) calc(100% - 8px), calc(100% - 4px) 100%,
    4px 100%, 4px calc(100% - 8px), 0 calc(100% - 8px));
  transition: transform .25s;
}
.btn-px:hover { transform: translateY(-2px) scale(1.03); }

/* 大图阶梯遮罩 */
.px-photo {
  clip-path: polygon(
    0 34px, 34px 34px, 34px 0, calc(100% - 17px) 0,
    calc(100% - 17px) 17px, calc(100% - 51px) 17px, calc(100% - 51px) 34px, 100% 34px,
    100% calc(100% - 34px), calc(100% - 34px) calc(100% - 34px), calc(100% - 34px) 100%,
    17px 100%, 17px calc(100% - 17px), 51px calc(100% - 17px), 51px calc(100% - 34px), 0 calc(100% - 34px));
}

/* 通用章节内边距 */
.chapter-inner { max-width: 1400px; margin: 0 auto; padding: 14vh 6vw; }

/* 入场动画 */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== 固定:汉堡按钮 ===== */
.burger {
  position: fixed;
  top: 22px; right: 26px;
  z-index: 120;
  width: 52px; height: 62px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  cursor: pointer;
  display: grid;
  place-content: center;
  gap: 6px;
  clip-path: polygon(0 6px, 4px 6px, 4px 0, calc(100% - 4px) 0, calc(100% - 4px) 6px, 100% 6px,
    100% calc(100% - 6px), calc(100% - 4px) calc(100% - 6px), calc(100% - 4px) 100%,
    4px 100%, 4px calc(100% - 6px), 0 calc(100% - 6px));
}
.burger span { display: block; width: 26px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
body.menu-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== 固定:左下信息条 ===== */
.infobar {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 110;
  display: flex;
  align-items: stretch;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  clip-path: polygon(0 8px, 4px 8px, 4px 0, calc(100% - 4px) 0, calc(100% - 4px) 8px, 100% 8px,
    100% calc(100% - 8px), calc(100% - 4px) calc(100% - 8px), calc(100% - 4px) 100%,
    4px 100%, 4px calc(100% - 8px), 0 calc(100% - 8px));
}
.infobar > * { display: flex; align-items: center; }
.infobar-logo {
  border-right: 1.5px solid var(--ink);
  padding: 10px 16px;
}
.infobar-logo i {
  font-style: normal;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
}
.infobar-name { gap: 8px; padding: 0 18px; font-size: 19px; font-weight: 900; border-right: 1.5px solid var(--ink); }
.infobar-name span { font-size: 12px; font-weight: 500; color: rgb(20 18 22 / .55); }
.infobar-tag { padding: 0 18px; font-size: 13px; color: rgb(20 18 22 / .75); border-right: 1.5px solid var(--ink); }
.infobar-pill {
  padding: 0 18px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-right: 1.5px solid var(--ink);
  transition: background .2s;
}
.infobar-pill:hover { background: rgb(20 18 22 / .08); }
.infobar .btn-px { margin: 7px; padding: 9px 20px; }

/* ===== 全屏菜单 ===== */
.menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--amber);
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6%);
  transition: opacity .45s ease, transform .45s ease, visibility 0s .45s;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 33.4% 25%;
}
body.menu-open .menu { visibility: visible; opacity: 1; transform: none; transition: opacity .45s ease, transform .45s ease; }
.menu-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 24px 110px 24px 26px;
  border-bottom: 1.5px solid var(--ink);
}
.menu-logo { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 20px; }
.menu-logo i {
  font-style: normal; font-size: 12px; letter-spacing: 1px;
  border: 1.5px solid var(--ink); border-radius: 50%;
  width: 46px; height: 46px; display: grid; place-items: center;
}
.menu-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 7vw;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  outline: 1.5px solid var(--ink);
  outline-offset: -1.5px;
  transition: background .25s, color .25s;
}
.menu-item:hover, .menu-item.is-here:hover { background: var(--ink); color: var(--amber); }
.menu-item.is-here::before { content: "→"; font-size: .55em; }
.menu-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  padding: 20px 26px;
  font-size: 13px;
  letter-spacing: 2px;
}

/* ===== 01 Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6vw;
  background:
    repeating-radial-gradient(circle at 78% -30%, transparent 0 138px, var(--line-light) 138px 140px),
    var(--ink);
  color: var(--paper);
}
.hero-title {
  font-size: clamp(40px, 12vw, 168px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: .015em;
  position: relative;
  z-index: 2;
}
.hero-sub { margin-top: 30px; font-size: 17px; letter-spacing: 5px; color: rgb(245 239 226 / .6); }

/* Hero 拖尾专辑卡 */
.trail-img {
  position: fixed;
  z-index: 15;
  width: 128px;
  pointer-events: none;
  translate: -50% -55%;
  box-shadow: 0 18px 44px rgb(0 0 0 / .5);
  animation: trail-pop 1.05s cubic-bezier(.2,.7,.3,1) forwards;
}
@keyframes trail-pop {
  0% { opacity: 0; scale: .25; }
  16% { opacity: 1; scale: 1; }
  62% { opacity: 1; scale: .97; }
  100% { opacity: 0; scale: .9; }
}

/* ===== 02 声明区 ===== */
.statement { height: 340vh; background: var(--red); color: var(--ink); }
.statement-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 7vw;
  background-image: linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 12.5% 100%;
}
.statement-line {
  font-size: clamp(56px, 9.5vw, 150px);
  font-weight: 900;
  line-height: 1.05;
  max-width: 14em;
}
.statement-note {
  margin: 5vh 0 0 2vw;
  max-width: 380px;
  font-size: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
  border-left: 3px solid var(--ink);
  padding-left: 16px;
}
.statement-line2 {
  font-size: clamp(64px, 11vw, 170px);
  font-weight: 900;
  line-height: 1.02;
  margin-top: 9vh;
  align-self: flex-end;
  text-align: right;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .7s, transform .7s;
}
.statement.is-late .statement-note { opacity: 1; transform: none; }
.statement.is-late .statement-line { opacity: .28; }
.statement.is-late .statement-line2 { opacity: 1; transform: none; transition-delay: .15s; }

/* ===== 03 关于 ===== */
.chapter-cream { background: var(--cream); color: var(--ink); }
.about .chapter-inner { background-image: linear-gradient(90deg, var(--line-dark) 1px, transparent 1px); background-size: 12.5% 100%; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(340px, 1.15fr);
  gap: 6vw;
  margin-top: 8vh;
  align-items: start;
}
.about-text p { font-size: 16.5px; margin-bottom: 1.6em; max-width: 480px; }
.about-photos { position: relative; }
.px-photo { width: 100%; }
.px-photo-sub {
  position: absolute;
  right: -6%;
  bottom: -14%;
  width: 38%;
  border: 5px solid var(--cream);
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 260px));
  gap: 18px;
  margin-top: 12vh;
}
.stat {
  border: 1.5px solid var(--ink);
  padding: 22px 24px;
}
.stat .num { font-size: clamp(34px, 3.6vw, 52px); font-weight: 900; line-height: 1.15; }
.stat .lab { font-size: 13px; letter-spacing: 3px; color: rgb(20 18 22 / .6); }

/* ===== 04 作品散落区 ===== */
.chapter-lime { background: var(--lime); color: var(--ink); }
.scatter {
  position: relative;
  min-height: 110vh;
  display: grid;
  place-items: center;
  overflow: clip;
  background-image: linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 12.5% 100%;
}
.scatter-center { position: static; text-align: center; display: flex; flex-direction: column; align-items: center; }
.scatter-cards { position: absolute; inset: 0; }
.float-card {
  position: absolute;
  border: 1.5px solid var(--ink);
  background: transparent;
  padding: 26px 22px;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: 4px;
  writing-mode: vertical-rl;
  animation: floaty 7s ease-in-out infinite alternate;
  white-space: nowrap;
}
.float-card.ghost { opacity: .35; font-weight: 400; }
@keyframes floaty {
  from { translate: 0 -14px; }
  to { translate: 0 14px; }
}
.corner-tag {
  position: absolute;
  z-index: 2;
  right: 7vw;
  bottom: 9vh;
  background: rgb(20 18 22 / .82);
  color: var(--lime);
  font-size: clamp(24px, 2.6vw, 40px);
  font-weight: 900;
  padding: 14px 24px;
  transform: rotate(-6deg);
}

/* ===== 05 专辑牌堆区 ===== */
.chapter-amber { background: var(--amber); color: var(--ink); }
.deck { height: 640vh; position: relative; }
.deck::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-radial-gradient(circle at -10% 110%, transparent 0 118px, var(--line-dark) 118px 120px);
  pointer-events: none;
}
.deck-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: minmax(300px, 5fr) 7fr;
  align-items: center;
  padding: 0 6vw;
  gap: 4vw;
}
.deck-left .giant { font-size: clamp(44px, 5.2vw, 82px); }
.deck-cards { position: relative; height: min(72vh, 640px); }
.album-card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(560px, 88%);
  height: fit-content;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  box-shadow: 10px 12px 0 rgb(20 18 22 / .28);
  will-change: transform;
}
.album-head {
  display: flex;
  border-bottom: 1.5px solid var(--ink);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
}
.album-head span { padding: 10px 18px; }
.album-head span + span { border-left: 1.5px solid var(--ink); }
.album-head .spacer { flex: 1; border-left: none; }
.album-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 24px;
}
.album-cover { width: 200px; border: 1.5px solid var(--ink); }
.album-title { font-size: clamp(26px, 2.4vw, 36px); font-weight: 900; line-height: 1.15; }
.album-year { font-size: 14px; letter-spacing: 3px; color: rgb(20 18 22 / .55); margin-top: 4px; }
.album-desc { font-size: 14.5px; margin-top: 14px; color: rgb(20 18 22 / .8); }
.album-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}

/* ===== 06 瞬间(格子翻转) ===== */
.chapter-purple { background: var(--purple); color: var(--ink); }
.moments { height: 300vh; position: relative; }
.moments-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: clip;
  display: grid;
  place-items: center;
}
.moments-photos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.moments-photos img { width: 100%; height: 100%; object-fit: cover; }
.moments-photos::after {
  content: "";
  position: absolute; inset: 0;
  background: rgb(20 18 22 / .25);
}
.moments-tiles {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(5, 1fr);
  perspective: 900px;
}
.moments-tiles .tile {
  background: var(--purple);
  outline: 1px solid var(--line-dark);
  outline-offset: -1px;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.4,0,.2,1), opacity .7s;
}
.moments.is-open .tile { transform: rotateY(90deg) scale(1.15); opacity: 0; }
.moments-card {
  position: relative;
  z-index: 3;
  background: var(--paper);
  width: min(430px, 86%);
  padding: 34px 36px;
  border: 1.5px solid var(--ink);
  transition: opacity .45s, transform .45s;
}
.moments.is-open .moments-card { opacity: 0; transform: scale(.94); pointer-events: none; }
.moments-title { font-size: clamp(38px, 4.6vw, 62px); font-weight: 900; line-height: 1.1; margin-top: 18px; }
.moments-text { font-size: 15px; margin-top: 18px; color: rgb(20 18 22 / .8); }

/* ===== 07 入坑指南 ===== */
.guide { color: var(--ink); }
.guide-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 360px));
  gap: 30px;
  margin-top: 8vh;
  align-items: start;
}
.guide-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
}
.guide-card:nth-child(1) { margin-top: 10vh; }
.guide-card:nth-child(3) { margin-top: 16vh; }
.guide-card.accent { box-shadow: -10px 10px 0 0 var(--red); }
.guide-head {
  display: flex;
  justify-content: space-between;
  padding: 10px 18px;
  border-bottom: 1.5px solid var(--ink);
  font-size: 14px;
  letter-spacing: 2px;
}
.guide-body { padding: 22px 24px 28px; }
.guide-body h3 { font-size: clamp(24px, 2vw, 30px); font-weight: 900; }
.guide-body ul { list-style: none; margin-top: 14px; }
.guide-body li { font-size: 14.5px; padding: 9px 0 9px 20px; position: relative; border-bottom: 1px solid rgb(20 18 22 / .1); }
.guide-body li::before { content: "-"; position: absolute; left: 2px; }

/* ===== 08 留言 ===== */
.voices { position: relative; overflow: clip; color: var(--ink); }
.speedlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 90px, var(--line-dark) 90px 91px),
    repeating-linear-gradient(90deg, transparent 0 46px, var(--line-dark) 46px 47px);
  mask-image: radial-gradient(120% 90% at 70% 40%, #000 0 30%, transparent 62%),
              radial-gradient(90% 70% at 20% 80%, #000 0 24%, transparent 55%);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 40%, #000 0 30%, transparent 62%),
                      radial-gradient(90% 70% at 20% 80%, #000 0 24%, transparent 55%);
  opacity: .5;
}
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 7vh;
}
.voice-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  width: min(620px, 92%);
}
.voice-card:nth-child(even) { align-self: flex-end; }
.voice-quote { padding: 24px 28px; font-size: 16.5px; font-weight: 500; font-style: italic; }
.voice-quote::before { content: "“ "; color: var(--red); }
.voice-who {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1.5px solid var(--ink);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
}
.voice-who i {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--amber), var(--red));
  display: grid;
  place-items: center;
  color: #fff;
  font-style: normal;
  font-weight: 900;
}
.voice-who em { font-style: normal; font-weight: 400; color: rgb(20 18 22 / .55); }

/* ===== 09 FAQ ===== */
.chapter-salmon { background: var(--salmon); color: var(--ink); }
.faq {
  padding: 16vh 0 12vh;
  background-image: linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 12.5% 100%;
}
.faq-head {
  font-size: clamp(120px, 22vw, 340px);
  font-weight: 900;
  line-height: .8;
  text-align: right;
  padding-right: 8vw;
  margin-bottom: 6vh;
}
.faq-list { max-width: 1400px; margin: 0 auto; padding: 0 2vw; }
.faq-item { border: 1.5px solid var(--ink); border-bottom: none; background: transparent; transition: background .3s; }
.faq-item:last-child { border-bottom: 1.5px solid var(--ink); }
.faq-item.active { background: var(--paper); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  padding: 22px 26px;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 700;
  color: inherit;
}
.faq-q .no { font-weight: 900; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
  font-size: 15px;
  color: rgb(20 18 22 / .82);
}
.faq-item.active .faq-a { max-height: 220px; }
.faq-a p { padding: 0 26px 24px; max-width: 860px; }

/* ===== 10 应援 + 页尾 ===== */
.chapter-ink { background: var(--ink); color: var(--paper); }
.support {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: clip;
  text-align: center;
}
.tunnel {
  position: absolute;
  inset: -30% -40%;
  background:
    repeating-linear-gradient(0deg, var(--line-light) 0 1.5px, transparent 1.5px 72px),
    repeating-linear-gradient(90deg, var(--line-light) 0 1.5px, transparent 1.5px 72px);
  transform: perspective(620px) rotateX(38deg) scale(1.35);
  transform-origin: 50% 100%;
  mask-image: radial-gradient(75% 75% at 50% 42%, transparent 0 26%, #000 58%);
  -webkit-mask-image: radial-gradient(75% 75% at 50% 42%, transparent 0 26%, #000 58%);
}
.support-center { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; padding: 0 6vw; }
.support-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 7vh;
}
.support-links a {
  color: var(--paper);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 2px;
  border: 1.5px solid rgb(245 239 226 / .4);
  padding: 13px 28px;
  transition: background .25s, color .25s, transform .25s;
}
.support-links a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 26px;
  border-top: 1px solid var(--line-light);
  margin-top: 12vh;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  color: rgb(245 239 226 / .55);
}

/* ===== 响应式 ===== */
@media (max-width: 960px) {
  .infobar-tag, .infobar-pill { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .deck-sticky { grid-template-columns: 1fr; align-content: end; padding-bottom: 4vh; gap: 20px; }
  .deck-left .giant { font-size: clamp(40px, 9vw, 64px); }
  .deck-cards { height: 58vh; }
  .album-body { grid-template-columns: 130px 1fr; gap: 16px; padding: 16px; }
  .album-cover { width: 130px; }
  .guide-cards { grid-template-columns: 1fr; }
  .guide-card:nth-child(n) { margin-top: 0; }
  .statement { height: 260vh; }
  .moments { height: 220vh; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item { font-size: clamp(34px, 9vw, 60px); }
  .float-card:nth-child(3n) { display: none; }
  .float-card { padding: 18px 14px; font-size: 15px; }
  .corner-tag { right: 6vw; bottom: 7vh; font-size: 20px; }
  .scatter { min-height: 90vh; }
  .px-photo-sub { right: 0; bottom: -10%; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat { padding: 14px 12px; }
  .faq-a { max-height: none; display: none; }
  .faq-item.active .faq-a { display: block; max-height: none; }
}

/* ===== 减少动画 ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card, .trail-img { animation: none; }
  .trail-img { display: none; }
  .statement-note, .statement-line2 { opacity: 1; transform: none; }
  .statement.is-late .statement-line { opacity: 1; }
}
