/* =============================================
   Silk Road Nightfall · Cinematic layers
   Layered on top of styles.css
   - Intro overlay
   - Coachmarks
   - Star-lighting ceremony
   - Cursor lantern
   - Idle hint drift
   - Constellation polish
   ============================================= */

/* ============ INTRO ============ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: radial-gradient(ellipse at 50% 55%, #0e1322 0%, #07090f 60%, #050608 100%);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto auto;
  justify-items: center;
  align-items: stretch;
  color: var(--ivory);
  opacity: 0;
  transition: opacity 1.4s var(--ease-out);
  cursor: default;
}
.intro--enter { opacity: 1; }
.intro--leaving {
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.intro--leaving .intro__type,
.intro--leaving .intro__foot,
.intro--leaving .intro__edition {
  transform: translateY(-20px);
  filter: blur(6px);
  transition: all 1.1s var(--ease);
}
.intro--leaving .intro__constellation {
  transform: scale(1.6);
  filter: blur(2px);
  opacity: 0;
  transition: all 1.2s var(--ease);
}

.intro__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.intro__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(7,9,15,0.7) 80%, #05070b 100%),
    linear-gradient(180deg, rgba(232,201,122,0.04), transparent 30%, transparent 70%, rgba(196,122,58,0.05));
  pointer-events: none;
}

.intro__constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.6s var(--ease-out), transform 8s var(--ease-out);
}
.intro--stars-on .intro__constellation {
  opacity: 1;
  transform: scale(1.04);
}

.intro__constellation .i-halo {
  opacity: 0;
  transition: opacity 2s var(--ease-out);
}
.intro--stars-on .i-halo { opacity: 0.7; }

.intro__constellation .i-stars circle {
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  transform: scale(0.4);
  transition:
    opacity 1.2s var(--ease-out),
    transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: calc(var(--d, 0) * 1s);
}
.intro__constellation .i-stars circle[data-d] { --d: attr(data-d number, 0); }
.intro--stars-on .i-stars circle {
  opacity: 1;
  transform: scale(1);
}
.intro__constellation .i-stars circle:nth-child(1) { transition-delay: 0s; }
.intro__constellation .i-stars circle:nth-child(2) { transition-delay: 0.18s; }
.intro__constellation .i-stars circle:nth-child(3) { transition-delay: 0.32s; }
.intro__constellation .i-stars circle:nth-child(4) { transition-delay: 0.45s; }
.intro__constellation .i-stars circle:nth-child(5) { transition-delay: 0.6s; }
.intro__constellation .i-stars circle:nth-child(6) { transition-delay: 0.74s; }
.intro__constellation .i-stars circle:nth-child(7) { transition-delay: 0.9s; }
.intro__constellation .i-stars circle:nth-child(8) { transition-delay: 1.0s; }
.intro__constellation .i-stars circle:nth-child(9) { transition-delay: 1.1s; }
.intro__constellation .i-stars circle:nth-child(10) { transition-delay: 1.2s; }

/* Ambient slow drift for ambient stars */
.intro__constellation .i-stars circle:nth-child(n+7) {
  animation: i-twinkle 4s ease-in-out infinite alternate;
  animation-delay: calc(var(--d, 0) * 1s + 2s);
}
@keyframes i-twinkle {
  0%   { opacity: 0.25; }
  100% { opacity: 0.85; }
}

/* Lines draw on after stars settle */
.intro__constellation .i-lines path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  opacity: 0;
}
.intro--lines-on .i-lines path {
  opacity: 0.55;
  stroke-dashoffset: 0;
  transition:
    stroke-dashoffset 1.6s var(--ease-out),
    opacity 1s var(--ease-out);
}
.intro--lines-on .i-lines path:nth-child(1) { transition-delay: 0.0s, 0.0s; }
.intro--lines-on .i-lines path:nth-child(2) { transition-delay: 0.18s; }
.intro--lines-on .i-lines path:nth-child(3) { transition-delay: 0.34s; }
.intro--lines-on .i-lines path:nth-child(4) { transition-delay: 0.5s; }
.intro--lines-on .i-lines path:nth-child(5) { transition-delay: 0.66s; }
.intro--lines-on .i-lines path:nth-child(6) { transition-delay: 0.82s; }
.intro--lines-on .i-lines path:nth-child(7) { transition-delay: 0.94s; }
.intro--lines-on .i-lines path:nth-child(8) { transition-delay: 1.04s; }

/* Caravan horizon */
.intro__horizon {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38vh;
  pointer-events: none;
  z-index: 3;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(196,122,58,0.10) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, transparent 60%, rgba(10,13,24,0.6) 100%);
  opacity: 0;
  transition: opacity 2s var(--ease-out);
}
.intro--stars-on .intro__horizon { opacity: 1; }
.intro__caravan {
  position: absolute;
  bottom: 8%;
  left: -25%;
  width: 30%;
  height: 60px;
  opacity: 0.55;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  animation: caravan-walk 28s linear infinite;
}
@keyframes caravan-walk {
  from { transform: translateX(0) translateY(0); }
  50%  { transform: translateX(180%) translateY(-2px); }
  to   { transform: translateX(360%) translateY(0); }
}

/* ----- Typography zone ----- */
.intro__type {
  position: relative;
  z-index: 4;
  grid-row: 2;
  text-align: center;
  padding: 0 32px;
  margin-top: 6vh;
  margin-bottom: 4vh;
  transition: transform 1.1s var(--ease-out);
}
.intro__rune {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--muted);
  margin-bottom: 28px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.intro__rune::before, .intro__rune::after {
  content: "";
  width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.intro--type-on .intro__rune { opacity: 1; }

.intro__title {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 18px;
  text-shadow: 0 0 60px rgba(232,201,122,0.25);
}
.intro__title .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition:
    opacity 1s var(--ease-out),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.intro--type-on .intro__title .ch {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.intro__en {
  font-family: var(--serif);
  font-size: clamp(13px, 1.2vw, 16px);
  font-style: italic;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
  transition-delay: 0.8s;
}
.intro--type-on .intro__en { opacity: 1; }

.intro__rule {
  margin: 28px auto 24px;
  width: 80px;
  height: 14px;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 1s var(--ease-out), transform 1.6s var(--ease-out);
  transition-delay: 1.1s;
}
.intro--type-on .intro__rule {
  opacity: 1;
  transform: scaleX(1);
}
.intro__rule span {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber) 50%, transparent);
  position: relative;
}
.intro__rule span::before {
  content: "";
  position: absolute;
  width: 4px; height: 4px;
  background: var(--amber);
  border-radius: 50%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.intro__poem {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: italic;
  letter-spacing: 0.06em;
  line-height: 1.9;
  color: var(--ivory-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.intro__poem span {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.intro--type-on .intro__poem span { opacity: 1; transform: none; }
.intro__poem span:nth-child(1) { transition-delay: 1.4s; }
.intro__poem span:nth-child(2) { transition-delay: 1.7s; }
.intro__poem span:nth-child(3) { transition-delay: 2.0s; }

.intro__poem--en {
  font-size: clamp(11px, 1vw, 13px);
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 22px;
  font-family: var(--mono);
}
.intro__poem--en span:nth-child(1) { transition-delay: 2.4s; }
.intro__poem--en span:nth-child(2) { transition-delay: 2.7s; }

/* ----- Foot CTA ----- */
.intro__foot {
  grid-row: 3;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-bottom: 8vh;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.intro--cta-on .intro__foot { opacity: 1; transform: none; }

.intro__enter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 46px 20px;
  background: rgba(19,24,42,0.55);
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.intro__enter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,201,122,0.22), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.intro__enter:hover::before { opacity: 1; }
.intro__enter:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -20px rgba(232,201,122,0.4);
}
.intro__enter-glyph {
  width: 28px; height: 28px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  position: relative;
  margin-bottom: 4px;
  animation: enter-pulse 2.6s ease-in-out infinite;
}
.intro__enter-glyph::before {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--amber);
  border-radius: 50%;
}
.intro__enter-glyph::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  opacity: 0;
  animation: enter-pulse-ring 2.6s ease-out infinite;
}
@keyframes enter-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,201,122,0.5); }
  50%      { box-shadow: 0 0 0 12px rgba(232,201,122,0); }
}
@keyframes enter-pulse-ring {
  0%   { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.intro__enter-cn {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.34em;
  padding-left: 0.34em;
  color: var(--ivory);
}
.intro__enter-en {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--amber);
  text-transform: uppercase;
}

.intro__skip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 6px 14px;
  transition: color 0.3s var(--ease);
}
.intro__skip:hover { color: var(--ivory-dim); }

/* Edition strip */
.intro__edition {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.4em;
  color: var(--muted);
  z-index: 5;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
  transition-delay: 1.6s;
  white-space: nowrap;
}
.intro--type-on .intro__edition { opacity: 1; }
.intro__edition .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--amber-deep);
}

/* ----- Reentry card ----- */
.intro__reentry-card {
  display: none;
}
.intro--reentry { background: radial-gradient(ellipse at center, #0e1322, #07090f 70%); }
.intro--reentry .intro__constellation,
.intro--reentry .intro__horizon,
.intro--reentry .intro__type,
.intro--reentry .intro__foot,
.intro--reentry .intro__edition { display: none; }
.intro--reentry .intro__reentry-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  position: absolute;
  inset: 0;
  text-align: center;
  z-index: 3;
}
.intro__reentry-card .r-title {
  font-family: var(--serif);
  font-size: 38px;
  letter-spacing: 0.18em;
  color: var(--ivory);
}
.intro__reentry-card .r-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--ivory-dim);
}
.intro__reentry-card .r-stat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-top: 8px;
}
.intro__reentry-card .r-stat .num {
  color: var(--amber);
  font-size: 14px;
}

/* ============ Coachmarks ============ */
.coach {
  position: fixed;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.coach.show { opacity: 1; pointer-events: auto; }
.coach__bubble {
  position: absolute;
  background: rgba(19,24,42,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--amber);
  padding: 14px 18px 14px 20px;
  min-width: 220px;
  max-width: 280px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
}
.coach__bubble::before {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  background: rgba(19,24,42,0.92);
  border-right: 1px solid var(--amber);
  border-bottom: 1px solid var(--amber);
}
.coach__bubble[data-arrow="down"]::before { bottom: -5px; left: 22px; transform: rotate(45deg); }
.coach__bubble[data-arrow="up"]::before   { top: -5px; left: 22px; transform: rotate(-135deg); }
.coach__bubble[data-arrow="left"]::before { left: -5px; top: 22px; transform: rotate(135deg); }
.coach__bubble[data-arrow="right"]::before{ right: -5px; top: 22px; transform: rotate(-45deg); }
.coach__step {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.coach__title {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--ivory);
  margin-bottom: 4px;
  line-height: 1.25;
}
.coach__desc {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.55;
  color: var(--ivory-dim);
  letter-spacing: 0.04em;
}
.coach__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.coach__actions button {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--ivory-dim);
  cursor: pointer;
  padding: 7px 14px;
  transition: all 0.3s var(--ease);
}
.coach__actions button.primary {
  background: var(--amber);
  color: var(--bg-0);
  border-color: var(--amber);
}
.coach__actions button:hover { color: var(--amber); border-color: var(--amber); }
.coach__actions button.primary:hover { background: var(--ivory); border-color: var(--ivory); }
.coach__dots {
  display: flex;
  gap: 4px;
}
.coach__dots span {
  width: 16px; height: 1px;
  background: var(--line-strong);
}
.coach__dots span.on { background: var(--amber); }

.coach__spot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 0 9999px rgba(7,9,15,0.55);
  border: 1px solid rgba(232,201,122,0.6);
  animation: coach-breath 2.2s ease-in-out infinite;
}
@keyframes coach-breath {
  0%, 100% { box-shadow: 0 0 0 9999px rgba(7,9,15,0.55), 0 0 0 0 rgba(232,201,122,0.45); }
  50%      { box-shadow: 0 0 0 9999px rgba(7,9,15,0.55), 0 0 0 14px rgba(232,201,122,0); }
}

/* ============ Star-lighting ceremony ============ */
.ceremony {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.ceremony.show { opacity: 1; }
.ceremony__bloom {
  width: 240px; height: 240px;
  position: relative;
}
.ceremony__bloom::before,
.ceremony__bloom::after {
  content: "";
  position: absolute;
  inset: 50%;
  border: 1px solid var(--amber);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: ceremony-ring 1.8s var(--ease-out) forwards;
}
.ceremony__bloom::after { animation-delay: 0.25s; }
@keyframes ceremony-ring {
  0%   { width: 0; height: 0; opacity: 0.9; }
  100% { width: 240px; height: 240px; opacity: 0; }
}
.ceremony__star {
  position: absolute;
  inset: 50%;
  width: 12px; height: 12px;
  background: radial-gradient(circle, #fff7e0, var(--amber) 40%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: ceremony-star 1.8s var(--ease-out) forwards;
}
@keyframes ceremony-star {
  0%   { transform: translate(-50%, -50%) scale(0); filter: blur(0); }
  30%  { transform: translate(-50%, -50%) scale(3.2); filter: blur(2px); }
  60%  { transform: translate(-50%, -50%) scale(1.4); filter: blur(0); }
  100% { transform: translate(-50%, -50%) scale(1); }
}
.ceremony__petal {
  position: absolute;
  left: 50%; top: 50%;
  width: 2px; height: 36px;
  background: linear-gradient(180deg, var(--amber), transparent);
  transform-origin: top center;
  opacity: 0;
  animation: ceremony-petal 1.6s var(--ease-out) forwards;
}
@keyframes ceremony-petal {
  0%   { opacity: 0; transform: translate(-50%, 0) rotate(var(--rot)) scale(0.2); }
  30%  { opacity: 0.9; }
  100% { opacity: 0; transform: translate(-50%, 0) rotate(var(--rot)) translateY(80px) scale(1); }
}
.ceremony__label {
  position: absolute;
  bottom: 18vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--ivory);
  text-align: center;
  opacity: 0;
  animation: ceremony-label 2.2s var(--ease-out) forwards;
  animation-delay: 0.3s;
  width: 80%;
}
.ceremony__label .sub {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 10px;
}
@keyframes ceremony-label {
  0%   { opacity: 0; transform: translate(-50%, 8px); }
  30%  { opacity: 1; transform: translate(-50%, 0); }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -6px); }
}

/* ============ Cursor lantern ============ */
.lantern {
  position: fixed;
  width: 360px; height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  background: radial-gradient(circle, rgba(232,201,122,0.10) 0%, rgba(232,201,122,0.05) 30%, transparent 70%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.lantern.on { opacity: 1; }
.lantern--core {
  width: 80px; height: 80px;
  z-index: 5;
  background: radial-gradient(circle, rgba(232,201,122,0.18) 0%, transparent 60%);
}

/* ============ Idle hint drift ============ */
.idle-hint {
  position: fixed;
  left: 50%;
  top: 36%;
  transform: translate(-50%, -50%);
  z-index: 8;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-dim);
  text-align: center;
  letter-spacing: 0.08em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out), transform 1.4s var(--ease-out);
}
.idle-hint.show {
  opacity: 0.7;
  transform: translate(-50%, -50%) translateY(0);
}
.idle-hint .ih-cn {
  font-size: 22px;
  display: block;
  margin-bottom: 8px;
}
.idle-hint .ih-en {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ Polish on existing layers ============ */
/* Soft bloom on the compass button when idle */
.compass-btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  pointer-events: none;
  animation: compass-glow 4.4s ease-in-out infinite;
}
@keyframes compass-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,201,122,0); }
  50%      { box-shadow: 0 0 60px -10px rgba(232,201,122,0.35); }
}

/* Progress cells: read = bright star, current = ringed */
.progress-cell.read {
  box-shadow: 0 0 8px rgba(232,201,122,0.5), inset 0 0 4px rgba(255,247,224,0.4);
}
.progress-cell {
  border-radius: 1px;
}
.progress-cell.read::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: radial-gradient(circle, #fff7e0 0%, var(--amber) 60%, transparent 100%);
}

/* Brand glyph subtle breathing */
.brand-glyph { animation: brand-breath 4s ease-in-out infinite; }
@keyframes brand-breath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,201,122,0); }
  50%      { box-shadow: 0 0 18px 2px rgba(232,201,122,0.2); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .intro__title .ch,
  .intro__poem span,
  .intro__constellation .i-stars circle,
  .intro__constellation .i-lines path,
  .intro__rule,
  .intro__en,
  .intro__rune,
  .intro__foot,
  .intro__edition { transition-duration: 0.3s !important; transition-delay: 0s !important; }
  .compass-btn::after,
  .brand-glyph,
  .intro__enter-glyph,
  .intro__caravan { animation: none !important; }
}

/* Small screens */
@media (max-width: 820px) {
  .intro__poem { font-size: 14px; line-height: 1.7; }
  .intro__poem--en { font-size: 10px; }
  .intro__enter { padding: 18px 32px; }
  .intro__enter-cn { font-size: 18px; letter-spacing: 0.28em; }
  .intro__edition { font-size: 8.5px; gap: 8px; }
  .coach__bubble { min-width: 200px; max-width: 240px; }
  .lantern { display: none; }
}
