@font-face {
  font-family: "Smiley Sans";
  src: url("./assets/fonts/smiley-sans-oblique.woff2") format("woff2");
  font-style: oblique;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Source Han Serif SC Local";
  src: url("./assets/fonts/source-han-serif-sc-regular-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono Local";
  src: url("./assets/fonts/ibm-plex-mono-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #090806;
  --bg-soft: #120f0c;
  --panel: rgba(25, 19, 15, 0.74);
  --panel-strong: rgba(31, 23, 18, 0.93);
  --line: rgba(246, 234, 219, 0.14);
  --line-strong: rgba(246, 234, 219, 0.3);
  --text: #f6eadb;
  --text-soft: #bfae9f;
  --text-faint: #7e7065;
  --lime: #ff7a21;
  --violet: #c64e24;
  --coral: #f3ad67;
  --cyan: #8fa8a5;
  --pink: #d98265;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-display: "Smiley Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-serif: "Source Han Serif SC Local", "Songti SC", "STSong", serif;
  --font-mono: "IBM Plex Mono Local", "SFMono-Regular", Menlo, monospace;
  --page-pad: clamp(24px, 5vw, 80px);
  --header-height: 92px;
  --radius-lg: 34px;
  --radius-md: 22px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.2, 0.8, 0.2, 1.18);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

::selection {
  background: var(--lime);
  color: #090a0c;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--lime);
  color: #090a0c;
  transition: transform 180ms ease;
}

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

.space-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 20%, rgba(198, 78, 36, 0.11), transparent 30%),
    radial-gradient(circle at 14% 78%, rgba(255, 122, 33, 0.06), transparent 24%),
    #090806;
}

#spaceCanvas {
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

.space-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 11, 0.1), rgba(7, 8, 11, 0.46)),
    radial-gradient(circle at center, transparent 40%, rgba(7, 8, 11, 0.68) 100%);
}

.space-grain {
  position: absolute;
  inset: -50%;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  animation: grain-shift 0.45s steps(2) infinite;
}

.cursor-light {
  position: absolute;
  width: 500px;
  height: 500px;
  transform: translate3d(calc(var(--pointer-x, 50vw) - 250px), calc(var(--pointer-y, 50vh) - 250px), 0);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 33, 0.08), transparent 64%);
  transition: opacity 250ms ease;
}

@keyframes grain-shift {
  0% { transform: translate3d(-2%, 1%, 0); }
  50% { transform: translate3d(2%, -1%, 0); }
  100% { transform: translate3d(-1%, -2%, 0); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  transition:
    min-height 300ms var(--ease-out),
    background 300ms ease,
    border-color 300ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: var(--line);
  background: rgba(7, 8, 11, 0.76);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-soft);
  transition: transform 500ms var(--ease-spring), background 250ms ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.brand:hover .brand-mark {
  transform: rotate(12deg) scale(1.06);
  background: rgba(255, 122, 33, 0.09);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--text-faint);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 13, 17, 0.46);
  backdrop-filter: blur(14px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 13px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link small {
  color: var(--text-faint);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgba(244, 241, 231, 0.08);
  color: var(--text);
}

.nav-link[aria-current="page"]::after {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 18px;
  height: 1px;
  transform: translateX(-50%);
  background: var(--lime);
  content: "";
}

.header-meta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(255, 122, 33, 0.09), 0 0 20px rgba(255, 122, 33, 0.42);
  animation: signal-pulse 2.4s ease-in-out infinite;
}

@keyframes signal-pulse {
  50% { opacity: 0.45; box-shadow: 0 0 0 9px rgba(255, 122, 33, 0); }
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.scene-index {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transform: translateY(-50%);
}

.scene-index span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(244, 241, 231, 0.26);
  transition: height 240ms var(--ease-out), background 240ms ease;
}

.scene-index span.is-active {
  height: 28px;
  border-radius: 99px;
  background: var(--lime);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.route-stage {
  min-height: 100vh;
  opacity: 1;
  transition: opacity 130ms ease, transform 260ms var(--ease-out);
}

.route-stage.is-leaving {
  opacity: 0;
  transform: translateY(10px);
}

.page-shell {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: calc(var(--header-height) + 36px) var(--page-pad) 120px;
}

.home-shell {
  padding-top: 0;
}

.art-stream {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 96px 0 70px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.art-stream-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px 70px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  transform: rotate(-3deg);
  transform-origin: left center;
}

.art-stream-head .section-index { grid-column: 1 / -1; }
.art-stream-head h2 { max-width: 760px; margin: 0; font-family: var(--font-display); font-size: clamp(42px, 5.8vw, 86px); font-style: oblique; font-weight: 500; letter-spacing: -0.07em; line-height: 1.02; }
.art-stream-head p { align-self: end; max-width: 520px; margin: 0; color: var(--text-soft); }

.art-stream-viewport { width: 112vw; margin-left: -6vw; padding: 8px 0 24px; transform: rotate(-3deg); }
.art-track { display: flex; width: max-content; gap: 14px; margin-bottom: 14px; will-change: transform; }
.art-track:hover { animation-play-state: paused; }
.art-track-forward { animation: art-flow-forward 34s linear infinite; }
.art-track-backward { animation: art-flow-backward 38s linear infinite; }

.art-tile {
  position: relative;
  flex: 0 0 clamp(230px, 22vw, 360px);
  aspect-ratio: 1.08;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 234, 219, 0.18);
  border-radius: 26px;
  background: #21130d;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  transform: translateZ(0);
}

.art-tile > span,
.art-tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out), filter 600ms ease; }
.art-tile > span::before,
.art-tile > span::after { position: absolute; border-radius: 50%; content: ""; filter: blur(3px); }
.art-tile > span::before { inset: 12% 42% 28% 8%; }
.art-tile > span::after { inset: 22% 8% 8% 48%; }
.art-tile:hover > span,
.art-tile:hover > img { transform: scale(1.07); filter: saturate(1.12); }
.art-tile figcaption { position: absolute; right: 14px; bottom: 12px; left: 14px; z-index: 2; color: rgba(255, 250, 242, 0.76); font-size: 9px; letter-spacing: 0.12em; opacity: 0; transform: translateY(5px); transition: opacity 180ms ease, transform 180ms ease; }
.art-tile:hover figcaption { opacity: 1; transform: none; }

.art-ember > span { background: radial-gradient(circle at 72% 20%, #ffd38c, transparent 23%), linear-gradient(135deg, #351009, #ff6f1c 54%, #ffb64d); }
.art-ember > span::before { background: #ffce8a; }
.art-ember > span::after { background: #7b170c; }
.art-aqua > span { background: radial-gradient(circle at 30% 30%, #d7fff5, transparent 18%), linear-gradient(145deg, #062b39, #2abbb0 50%, #b5e88a); }
.art-aqua > span::before { background: #98ece8; }
.art-aqua > span::after { background: #1f6f82; }
.art-pearl > span { background: linear-gradient(135deg, #8c756d, #fff0db 44%, #b5a2d2 72%, #524558); }
.art-pearl > span::before { background: #fff7e9; }
.art-pearl > span::after { background: #c2a7c7; }
.art-citrus > span { background: radial-gradient(circle at 68% 25%, #fffbd0, transparent 16%), linear-gradient(145deg, #7b8d18, #e9e84a 48%, #ff9138); }
.art-citrus > span::before { background: #f9ff99; }
.art-citrus > span::after { background: #ff7a21; }
.art-violet > span { background: radial-gradient(circle at 72% 42%, #efbfff, transparent 20%), linear-gradient(145deg, #20102f, #7751a8 48%, #e5779e); }
.art-violet > span::before { background: #ba91e8; }
.art-violet > span::after { background: #e78b9f; }
.art-coral > span { background: linear-gradient(145deg, #4c110d, #e94f2d 42%, #ffc464); }
.art-coral > span::before { background: #ff8d66; }
.art-coral > span::after { background: #ffd193; }
.art-chrome > span { background: linear-gradient(125deg, #16181a, #e7ded2 38%, #78898e 55%, #201c1a 76%, #dca068); }
.art-chrome > span::before { background: rgba(255, 255, 255, 0.74); }
.art-chrome > span::after { background: #707b7c; }
.art-noir > span { background: radial-gradient(circle at 56% 38%, #ca5125, transparent 14%), linear-gradient(135deg, #040403, #211410 55%, #090806); }
.art-noir > span::before { background: #2d1b15; }
.art-noir > span::after { background: #ff7024; }

@keyframes art-flow-forward { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 7px)); } }
@keyframes art-flow-backward { from { transform: translateX(calc(-50% - 7px)); } to { transform: translateX(0); } }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-height) + 48px) var(--page-pad) 64px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 26px;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero-title,
.page-title {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.page-title {
  font-family: var(--font-display);
  font-style: oblique;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(76px, 10.93vw, 154px);
  font-style: oblique;
  font-weight: 700;
  letter-spacing: -0.09em;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  width: min(calc(100% - 33px), 640px);
  padding-top: 9px;
  border-radius: 5px;
  line-height: 1;
}

.hero-title span:last-child {
  color: transparent;
  font-family: var(--font-serif);
  font-size: 0.7822em;
  font-style: normal;
  letter-spacing: -0.075em;
  padding-top: 7px;
  -webkit-text-stroke: 1px rgba(244, 241, 231, 0.48);
}

.hero-intro {
  max-width: 620px;
  margin: 35px 0 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.9;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
  transition: transform 220ms var(--ease-spring), background 180ms ease, border-color 180ms ease;
}

.button span:last-child,
.text-link span:last-child {
  transition: transform 220ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 241, 231, 0.5);
  background: rgba(244, 241, 231, 0.06);
}

.button:hover span:last-child,
.text-link:hover span:last-child {
  transform: translateX(5px);
}

.button:active {
  transform: scale(0.97);
}

.button-primary {
  border-color: var(--lime);
  background: var(--lime);
  color: #090a0c;
}

.button-primary:hover {
  border-color: var(--lime);
  background: #ff994f;
}

.hero-object {
  position: relative;
  z-index: 2;
  min-height: 650px;
  perspective: 1200px;
}

.portrait-module {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(310px, 28vw, 460px);
  aspect-ratio: 0.76;
  transform: translate3d(-50%, -50%, 80px) rotateY(calc(var(--scene-x, 0) * 8deg)) rotateX(calc(var(--scene-y, 0) * -6deg));
  transform-style: preserve-3d;
  transition: transform 120ms linear;
}

.portrait-frame {
  position: absolute;
  inset: 8%;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 231, 0.2);
  border-radius: 46% 46% 8% 8% / 38% 38% 9% 9%;
  background: #171920;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.55);
  transform: translateZ(40px);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(7, 8, 11, 0.9)),
    linear-gradient(135deg, rgba(198, 78, 36, 0.18), transparent 44%);
  content: "";
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05) brightness(0.82);
}

.character-stage {
  --character-x: 0;
  --character-y: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(330px, 34vw, 560px);
  aspect-ratio: 0.84;
  transform: translate3d(-50%, -50%, 60px);
  transform-style: preserve-3d;
  isolation: isolate;
}

.character-button {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  perspective: 1000px;
  -webkit-tap-highlight-color: transparent;
}

.character-button:focus-visible {
  border-radius: 42%;
  outline: 1px solid var(--lime);
  outline-offset: 8px;
}

.character-button:disabled { cursor: default; }

.character-rig {
  position: absolute;
  z-index: 2;
  inset: -13% -5% -5%;
  display: grid;
  place-items: center;
  transform-origin: 50% 76%;
  will-change: transform, filter;
}

.character-pose {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 36px 32px rgba(0, 0, 0, 0.55));
}

.character-pose.is-entering {
  animation: pose-enter 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.character-pose.pose-ghost {
  z-index: 2;
  animation: pose-leave 220ms ease-out both;
}

.character-shadow {
  position: absolute;
  z-index: 1;
  right: 17%;
  bottom: 5%;
  left: 17%;
  height: 8%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.7), transparent 70%);
  filter: blur(7px);
  opacity: 0.62;
  transform: scaleX(1);
}

.character-aura {
  position: absolute;
  z-index: 0;
  inset: 13% 2% 5%;
  border: 1px solid rgba(255, 122, 33, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 55% 42%, rgba(255, 137, 54, 0.24), transparent 38%),
    radial-gradient(circle at 48% 52%, rgba(153, 59, 30, 0.2), transparent 62%);
  box-shadow: inset 0 0 80px rgba(198, 78, 36, 0.07);
  filter: blur(0.2px);
  transform: translateZ(-40px) rotateX(68deg) rotateZ(-14deg);
}

.character-stage.is-settled .character-rig {
  animation: character-breathe 4.8s ease-in-out infinite;
  transform: translate3d(calc(var(--character-x) * 13px), calc(var(--character-y) * 8px), 34px)
    rotateX(calc(var(--character-y) * -5deg)) rotateY(calc(var(--character-x) * 8deg));
  transition: transform 180ms var(--ease-out), filter 180ms ease;
}

.character-stage.is-settled:hover .character-rig {
  filter: brightness(1.04);
}

.character-stage.is-falling .character-rig {
  animation: character-fall 850ms cubic-bezier(0.16, 0.82, 0.24, 1) both;
}

.character-stage.is-falling .character-shadow { animation: shadow-arrive 850ms ease-in both; }

.character-stage.is-impacting .character-rig {
  animation: character-impact 460ms cubic-bezier(0.22, 0.78, 0.28, 1) both;
}

.character-stage.is-recovering .character-rig {
  animation: character-recover 800ms cubic-bezier(0.16, 0.8, 0.25, 1) both;
}

.character-stage.is-adjusting .character-rig {
  animation: character-adjust 760ms var(--ease-spring) both;
}

.impact-glass {
  position: absolute;
  z-index: 6;
  inset: 5%;
  pointer-events: none;
  opacity: 0;
}

.impact-glass::before {
  position: absolute;
  top: 43%;
  left: 50%;
  width: 76px;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 241, 231, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(255, 122, 33, 0.24), inset 0 0 20px rgba(255, 255, 255, 0.08);
  content: "";
  transform: translate(-50%, -50%);
}

.impact-glass i {
  position: absolute;
  top: 43%;
  left: 50%;
  width: 1px;
  height: 42%;
  background: linear-gradient(rgba(244, 241, 231, 0.7), transparent);
  transform-origin: top;
}

.impact-glass i:nth-child(1) { transform: rotate(18deg); }
.impact-glass i:nth-child(2) { transform: rotate(92deg); }
.impact-glass i:nth-child(3) { transform: rotate(202deg); }
.impact-glass i:nth-child(4) { transform: rotate(282deg); }

.impact-glass.is-hit { animation: glass-hit 900ms ease-out both; }

.character-hint,
.character-replay {
  position: absolute;
  z-index: 8;
  bottom: -2%;
  color: var(--text-soft);
  font: inherit;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.character-hint { left: 7%; }

.character-replay {
  right: 7%;
  padding: 5px 0;
  border: 0;
  border-bottom: 1px solid rgba(244, 241, 231, 0.24);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.character-replay:hover,
.character-replay:focus-visible { color: var(--lime); border-color: var(--lime); }

@keyframes character-fall {
  0% { transform: translate3d(3%, -118vh, 20px) scaleY(1.18) scaleX(0.86) rotate(8deg); filter: blur(4px); }
  56% { transform: translate3d(-1%, -18%, 55px) scaleY(1.1) scaleX(0.91) rotate(-3deg); filter: blur(0.8px); }
  84% { transform: translate3d(0, 4%, 86px) scaleY(0.9) scaleX(1.08) rotate(1deg); filter: blur(0); }
  100% { transform: translate3d(0, 8%, 105px) scaleY(0.82) scaleX(1.14) rotate(-1deg); filter: blur(0); }
}

@keyframes shadow-arrive {
  0%, 55% { opacity: 0; transform: scale(0.2); }
  100% { opacity: 0.8; transform: scale(1.15); }
}

@keyframes character-impact {
  0% { transform: translate3d(0, 8%, 105px) scaleY(0.82) scaleX(1.14); }
  24% { transform: translate3d(-1.2%, -1%, 170px) scaleY(1.055) scaleX(0.965) rotate(-1.4deg); }
  48% { transform: translate3d(0.8%, 2%, 132px) scaleY(0.96) scaleX(1.035) rotate(1deg); }
  72% { transform: translate3d(-0.35%, 0, 148px) scaleY(1.015) scaleX(0.99) rotate(-0.4deg); }
  100% { transform: translate3d(0, 1%, 126px) scaleY(0.99) scaleX(1.01); }
}

@keyframes character-recover {
  0% { transform: translate3d(0, 1%, 126px) scaleY(0.99) rotate(-4deg); }
  30% { transform: translate3d(0, -5%, 72px) scaleY(1.03) rotate(2.4deg); }
  58% { transform: translate3d(0, 1.5%, 48px) scaleY(0.985) rotate(-1.2deg); }
  80% { transform: translate3d(0, -1%, 38px) scaleY(1.008) rotate(0.4deg); }
  100% { transform: translate3d(0, 0, 34px) scaleY(1) rotate(0); }
}

@keyframes pose-enter {
  from { opacity: 0.25; filter: blur(1.5px) drop-shadow(0 36px 32px rgba(0, 0, 0, 0.55)); }
  to { opacity: 1; filter: blur(0) drop-shadow(0 36px 32px rgba(0, 0, 0, 0.55)); }
}

@keyframes pose-leave {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes character-breathe {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -5px; }
}

@keyframes character-adjust {
  0%, 100% { scale: 1; }
  45% { scale: 1.035; }
}

@keyframes glass-hit {
  0% { opacity: 0; transform: scale(0.55); }
  12% { opacity: 1; transform: scale(1); }
  58% { opacity: 0.52; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.18); }
}

.orbit,
.orbit::before,
.orbit::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 241, 231, 0.13);
  border-radius: 50%;
  content: "";
}

.orbit {
  transform: rotate(62deg) rotateX(68deg) translateZ(-50px);
  animation: orbit-rotate 14s linear infinite;
}

.orbit::before {
  inset: 12%;
  border-color: rgba(255, 122, 33, 0.3);
}

.orbit::after {
  inset: -10%;
  border-style: dashed;
  border-color: rgba(198, 78, 36, 0.24);
}

@keyframes orbit-rotate {
  to { transform: rotate(422deg) rotateX(68deg) translateZ(-50px); }
}

.orbit-tag {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 8, 11, 0.74);
  color: var(--text-soft);
  font-size: 9px;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
}

.orbit-tag-a { top: 10%; right: -8%; transform: translateZ(90px); }
.orbit-tag-b { bottom: 16%; left: -12%; transform: translateZ(120px); }
.orbit-tag-c { top: 47%; right: -19%; transform: translateZ(10px); }

.hero-coordinate {
  position: absolute;
  right: 0;
  bottom: 8%;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-faint);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.scroll-cue i {
  position: relative;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: var(--lime);
  animation: scan-line 2.1s ease-in-out infinite;
  content: "";
}

@keyframes scan-line {
  50%, 100% { transform: translateX(100%); }
}

.content-section {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}

.section-index,
.page-index {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-style: oblique;
  font-size: clamp(32px, 4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-head p {
  max-width: 460px;
  margin: 12px 0 0;
  color: var(--text-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text-soft);
  font-size: 12px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.focus-item {
  min-height: 230px;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.focus-item:first-child {
  border-left: 0;
}

.focus-item small {
  color: var(--lime);
  font-family: var(--font-mono);
}

.focus-item h3 {
  margin: 72px 0 14px;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
}

.focus-item p {
  max-width: 330px;
  margin: 0;
  color: var(--text-soft);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  perspective: 1400px;
}

.work-card {
  --card-accent: var(--lime);
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  min-height: 580px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(13, 15, 20, 0.72);
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0px));
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.work-card:hover {
  --lift: -6px;
  border-color: color-mix(in srgb, var(--card-accent) 55%, transparent);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
}

.work-card[data-accent="violet"] { --card-accent: var(--violet); }
.work-card[data-accent="coral"] { --card-accent: var(--coral); }

.work-visual {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #101218;
}

.work-visual::before,
.work-visual::after {
  position: absolute;
  content: "";
}

.cover-portal::before {
  top: 50%;
  left: 50%;
  width: 220px;
  height: 290px;
  transform: translate(-50%, -50%) perspective(600px) rotateY(-22deg);
  border: 1px solid rgba(255, 122, 33, 0.64);
  border-radius: 120px 120px 12px 12px;
  background: radial-gradient(circle at 65% 30%, rgba(255, 154, 73, 0.54), transparent 12%),
    linear-gradient(145deg, rgba(198, 78, 36, 0.5), rgba(9, 8, 6, 0.3) 60%);
  box-shadow: inset 0 0 50px rgba(255, 122, 33, 0.12), 30px 24px 80px rgba(0, 0, 0, 0.7);
}

.cover-portal::after {
  inset: 18px;
  border: 1px dashed rgba(244, 241, 231, 0.14);
  border-radius: 50%;
  animation: orbit-rotate 18s linear infinite;
}

.cover-signal {
  background:
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(244, 241, 231, 0.04) 35px),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(244, 241, 231, 0.04) 35px),
    #0c0d12;
}

.cover-signal::before {
  inset: 18% 12%;
  border-radius: 50%;
  background: conic-gradient(from 210deg, transparent, var(--violet), transparent 45%);
  filter: blur(1px);
  animation: orbit-rotate 10s linear infinite;
}

.cover-signal::after {
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(198, 78, 36, 0.72);
  background: rgba(198, 78, 36, 0.14);
  box-shadow: 0 0 90px rgba(198, 78, 36, 0.38);
}

.cover-monolith::before {
  top: 44%;
  left: 50%;
  width: 150px;
  height: 250px;
  transform: translate(-50%, -50%) perspective(700px) rotateX(12deg) rotateY(28deg);
  background: linear-gradient(120deg, #ff765d, #3d244d 65%, #12131a);
  box-shadow: 40px 55px 80px rgba(0, 0, 0, 0.68);
}

.cover-monolith::after {
  left: 14%;
  right: 14%;
  bottom: 35px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--coral), transparent);
  box-shadow: 0 0 22px var(--coral);
}

.work-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 28px;
  transform: translateZ(22px);
}

.work-card-meta,
.article-meta,
.update-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.work-card h3 {
  margin: 18px 0 12px;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.work-card p {
  margin: 0;
  color: var(--text-soft);
}

.work-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--text-soft);
  font-size: 11px;
}

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

.update-item {
  display: grid;
  grid-template-columns: 140px 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  min-height: 150px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 240ms var(--ease-out);
}

.update-item:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: rgba(244, 241, 231, 0.035);
}

.update-date {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 11px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-soft);
  font-size: 12px;
}

.platform-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 18px currentColor;
}

.platform-pill[data-platform="bilibili"] i { background: var(--pink); }
.platform-pill[data-platform="wechat"] i { background: var(--lime); }

.update-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.update-copy p {
  max-width: 710px;
  margin: 0;
  color: var(--text-soft);
}

.update-action {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-soft);
}

.update-item:hover .update-action {
  border-color: var(--lime);
  color: var(--lime);
}

.sync-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: var(--text-faint);
  font-size: 11px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
  gap: 60px;
  min-height: 410px;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line);
}

.page-title {
  max-width: 980px;
  font-size: clamp(68px, 10vw, 150px);
}

.page-lead {
  margin: 0 0 10px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0 42px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 8, 11, 0.34);
  color: var(--text-soft);
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--lime);
  color: var(--lime);
}

.journal-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.article-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 3fr) auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  min-height: 0;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
  transition: border-color 180ms ease, background 180ms ease;
}

.article-card:hover {
  border-color: rgba(198, 78, 36, 0.58);
  background: linear-gradient(90deg, rgba(198, 78, 36, 0.06), transparent 55%);
}

.article-page-head {
  padding: clamp(64px, 9vw, 120px) 0 28px;
}

.article-page-head h1 {
  margin: 8px 0 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.article-listing .filter-row {
  margin-top: 0;
}

.article-card-meta {
  display: grid;
  gap: 8px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.article-card-meta time {
  color: var(--lime);
}

.article-card-copy h2,
.article-card-copy h3 {
  max-width: 760px;
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.article-card-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
}

.article-card-action {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  white-space: nowrap;
}

.article-card-action i {
  font-style: normal;
  transition: transform 180ms ease;
}

.article-card:hover .article-card-action i {
  transform: translate(3px, -3px);
}

.detail-shell {
  max-width: 1180px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 60px;
  color: var(--text-soft);
  font-size: 12px;
}

.back-link:hover {
  color: var(--lime);
}

.detail-kicker {
  margin: 0 0 20px;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.detail-title {
  max-width: 1040px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 112px);
  font-style: oblique;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.detail-summary {
  max-width: 780px;
  margin: 34px 0 0;
  color: var(--text-soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
}

.detail-visual {
  position: relative;
  height: min(68vw, 720px);
  min-height: 420px;
  margin: 72px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 44px;
  background: #101218;
}

.detail-visual .work-visual {
  height: 100%;
  border: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 80px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.detail-label {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.detail-copy {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.9;
}

.fact-list,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li,
.tag-list li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 11px;
}

.article-body {
  max-width: 780px;
  margin: 76px auto 0;
}

.article-body p {
  margin: 0 0 32px;
  color: #d4d0c5;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 2;
}

.article-body p:first-child::first-letter {
  float: left;
  margin: 13px 10px 0 0;
  color: var(--lime);
  font-family: var(--font-serif);
  font-size: 76px;
  line-height: 0.7;
}

body[data-route="article"] .detail-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(50px, 8vw, 130px);
  padding-top: 70px;
}

.about-portrait {
  position: sticky;
  top: 110px;
  align-self: start;
  perspective: 1000px;
}

.about-portrait-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.78;
  border: 1px solid var(--line);
  border-radius: 46% 46% 28px 28px;
  background: #15171c;
  transform: rotateY(-7deg) rotateX(3deg);
  box-shadow: 35px 45px 90px rgba(0, 0, 0, 0.45);
}

.about-portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.06) brightness(0.82);
}

.about-portrait-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 8, 11, 0.9));
  content: "";
}

.about-copy h2 {
  margin: 0 0 30px;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.about-copy > p {
  margin: 0 0 28px;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.95;
}

.quote-block {
  margin: 54px 0;
  padding: 30px 0 30px 30px;
  border-left: 1px solid var(--lime);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(23px, 2.6vw, 36px);
  line-height: 1.6;
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  border-top: 1px solid var(--line);
}

.contact-list > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt { color: var(--text-faint); font-size: 9px; letter-spacing: 0.14em; }
.contact-list dd { margin: 0; color: var(--text); font-size: 14px; word-break: break-all; }
.contact-list a:hover { color: var(--lime); }

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 100px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(13, 15, 20, 0.66);
  transition: transform 220ms var(--ease-out), border-color 180ms ease;
}

a.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.social-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.social-card small {
  color: var(--text-faint);
  font-size: 10px;
}

.social-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-soft);
}

.empty-state {
  padding: 90px 30px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 12px;
  font-size: 32px;
}

.empty-state p {
  margin: 0 0 28px;
  color: var(--text-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 110px;
  padding: 28px var(--page-pad);
  border-top: 1px solid var(--line);
  background: rgba(7, 8, 11, 0.82);
  color: var(--text-faint);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.site-footer a {
  color: var(--text-soft);
}

.noscript-message {
  position: fixed;
  inset: auto 20px 20px;
  z-index: 300;
  padding: 16px;
  border-radius: 12px;
  background: var(--coral);
  color: #090a0c;
  text-align: center;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-meta,
  .scene-index {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(7, 8, 11, 0.6);
    cursor: pointer;
  }

  .menu-toggle i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 100px var(--page-pad) 50px;
    background: rgba(7, 8, 11, 0.96);
    backdrop-filter: blur(24px);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav .nav-link {
    width: 100%;
    min-height: 64px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 30px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-object {
    min-height: 570px;
  }

  .works-grid .work-card {
    grid-column: span 6;
  }

  .works-grid .work-card:last-child {
    grid-column: 4 / span 6;
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .update-item {
    grid-template-columns: 100px 100px minmax(0, 1fr) auto;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 20px;
    --header-height: 76px;
    --radius-lg: 24px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-title {
    font-size: clamp(54px, 17vw, 82px);
  }

  .hero-title span:first-child { width: 100%; }

  .hero-object {
    min-height: 480px;
  }

  .art-stream { padding: 72px 0 52px; }
  .art-stream-head { grid-template-columns: 1fr; margin-bottom: 0; transform: rotate(-4deg); }
  .art-stream-head .section-index { grid-column: auto; }
  .art-stream-viewport { width: 126vw; margin-left: -13vw; transform: rotate(-4deg); }
  .art-tile { flex-basis: 220px; aspect-ratio: 1.16; border-radius: 20px; }

  .portrait-module {
    width: min(82vw, 390px);
  }

  .character-stage {
    width: min(94vw, 470px);
  }

  .character-hint { display: none; }

  .orbit-tag-c,
  .hero-coordinate,
  .scroll-cue {
    display: none;
  }

  .content-section {
    padding: 78px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-item,
  .focus-item:first-child {
    min-height: 190px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .focus-item h3 {
    margin-top: 44px;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .works-grid .work-card,
  .works-grid .work-card:last-child {
    grid-column: 1;
  }

  .work-card {
    min-height: 520px;
  }

  .work-visual {
    height: 300px;
  }

  .update-item {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 0;
    padding: 28px 0;
  }

  .update-date,
  .platform-pill,
  .update-copy {
    grid-column: 1;
  }

  .update-action {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
  }

  .journal-grid {
    border-top: 1px solid var(--line);
  }

  .article-card {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 24px 0;
  }

  .article-card-meta,
  .article-card-copy {
    grid-column: 1;
  }

  .article-card-action {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .page-shell {
    padding-bottom: 80px;
  }

  .page-hero {
    min-height: 330px;
  }

  .page-title {
    font-size: clamp(58px, 18vw, 92px);
  }

  .detail-title {
    font-size: clamp(48px, 14vw, 80px);
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 44px 0;
  }

  .detail-visual {
    min-height: 350px;
    margin: 48px 0;
    border-radius: 26px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    position: static;
  }

  .about-portrait-card {
    max-width: 430px;
    margin: 0 auto;
    transform: none;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (pointer: coarse) {
  .cursor-light {
    display: none;
  }

  .work-card {
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .portrait-module,
  .character-stage .character-rig,
  .work-card {
    transform: none;
  }

  .character-replay { display: none; }
}
