:root {
  color-scheme: light;
  --blue: #00aeec;
  --blue-deep: #007a9f;
  --blue-soft: #dff5fd;
  --pink: #ff6699;
  --pink-deep: #b52f59;
  --pink-soft: #ffe3ec;
  --page: #f6f7f8;
  --surface: #ffffff;
  --ink: #18191c;
  --muted: #61666d;
  --line: #dfe3e6;
  --screen: #111820;
  --screen-line: #303b45;
  --white: #ffffff;
  --shadow: #18191c;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --brush-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 15' preserveAspectRatio='none'%3E%3Cpath d='M3 7.8C37 4.2 83 4.8 126 5.8c17 .4 34 1.2 51 2.6-33 .2-72 .8-107 2.1-22 .8-44 1.4-66 .7-4-.2-5-2.7-1-3.4Z' fill='black'/%3E%3C/svg%3E");
}

html[data-theme="dark"] {
  color-scheme: dark;
  --blue-deep: #28b9ec;
  --blue-soft: #143443;
  --pink-deep: #ff8ab1;
  --pink-soft: #3c202b;
  --page: #0f1115;
  --surface: #191b20;
  --ink: #f1f2f3;
  --muted: #a8abb0;
  --line: #303238;
  --screen: #080b0f;
  --screen-line: #242c33;
  --shadow: #050608;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-width: 280px;
  min-height: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-width: 280px;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: color 360ms ease, background-color 360ms ease;
}

::selection {
  color: #18191c;
  background: var(--pink);
}

.svg-defs {
  position: absolute;
  overflow: hidden;
}

.noise {
  position: fixed;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.024;
  pointer-events: none;
  mix-blend-mode: multiply;
}

html[data-theme="dark"] .noise {
  opacity: 0.018;
  mix-blend-mode: screen;
}

html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
  transition: none !important;
}

html.theme-transitioning .dm-track,
html.theme-transitioning .brand-tv,
html.theme-transitioning .hero-copy,
html.theme-transitioning .archive-board,
html.theme-transitioning .board-tv,
html.theme-transitioning .frame-dm,
html.theme-transitioning .archive-item,
html.theme-transitioning .video-progress i {
  animation-play-state: paused !important;
}

html.theme-fallback body,
html.theme-fallback .archive-section,
html.theme-fallback .board-sheet,
html.theme-fallback .video-frame,
html.theme-fallback .archive-thumb,
html.theme-fallback .contact-link,
html.theme-fallback .theme-toggle {
  transition-duration: 460ms !important;
}

::view-transition-image-pair(root) {
  isolation: isolate;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

::view-transition-new(root) {
  animation: theme-reveal 650ms var(--ease-out) both;
}

@keyframes theme-reveal {
  from { clip-path: circle(0 at var(--theme-x) var(--theme-y)); }
  to { clip-path: circle(var(--theme-radius) at var(--theme-x) var(--theme-y)); }
}

.danmaku {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 760px;
  contain: paint;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 88%, transparent 100%);
}

.dm-track {
  position: absolute;
  left: 0;
  display: flex;
  width: max-content;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0.16;
  animation: danmaku-flow 44s linear infinite;
  will-change: transform;
}

.dm-track-two {
  color: var(--pink-deep);
  opacity: 0.14;
  animation-duration: 53s;
  animation-delay: -31s;
}

.dm-track-three {
  opacity: 0.14;
  animation-duration: 48s;
  animation-delay: -19s;
}

.dm-track-one { top: 17%; animation-delay: -11s; }
.dm-track-two { top: 48%; }
.dm-track-three { top: 82%; }

.dm-set {
  display: flex;
  align-items: center;
  gap: 96px;
  padding-right: 96px;
}

@keyframes danmaku-flow {
  to { transform: translate3d(-50%, 0, 0); }
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: header-enter 650ms 50ms var(--ease-out) both;
}

@keyframes header-enter {
  from { opacity: 0; transform: translate3d(0, -12px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  transition: color 240ms ease, transform 320ms var(--ease-out);
}

.brand:hover {
  color: var(--blue-deep);
  transform: translate3d(2px, 0, 0);
}

.brand-tv {
  width: 27px;
  height: 27px;
  fill: var(--blue);
  transition: transform 360ms var(--ease-out);
}

.brand:hover .brand-tv {
  transform: rotate(-5deg) scale(1.05);
}

.header-actions,
.site-nav {
  display: flex;
  align-items: center;
}

.header-actions { gap: 28px; }
.site-nav { gap: 24px; }

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 240ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 5px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.55);
  -webkit-mask: var(--brush-mask) center / 100% 100% no-repeat;
  mask: var(--brush-mask) center / 100% 100% no-repeat;
  transition: opacity 220ms ease, transform 280ms var(--ease-out);
}

.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { opacity: 0.75; transform: scaleX(1); }

.theme-toggle {
  position: relative;
  width: 42px;
  height: 37px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 5px;
  box-shadow: 3px 3px 0 var(--blue), 6px 6px 0 rgba(255, 102, 153, 0.55);
  cursor: pointer;
  appearance: none;
  touch-action: manipulation;
  transform: rotate(-0.8deg);
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease, box-shadow 320ms var(--ease-out), transform 320ms var(--ease-out);
}

.theme-toggle:hover {
  box-shadow: 1px 1px 0 var(--blue), 3px 3px 0 rgba(255, 102, 153, 0.48);
  transform: translate3d(2px, 2px, 0) rotate(0.8deg);
}

.theme-toggle:active {
  box-shadow: 0 0 0 var(--blue), 1px 1px 0 rgba(255, 102, 153, 0.42);
  transform: translate3d(4px, 4px, 0);
}

.theme-toggle.is-switching {
  animation: toggle-switch 560ms var(--ease-out);
}

@keyframes toggle-switch {
  0%, 100% { transform: rotate(-0.8deg) scale(1); }
  42% { transform: rotate(-8deg) scale(0.88); }
  72% { transform: rotate(3deg) scale(1.04); }
}

.theme-icon {
  position: absolute;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 240ms ease, transform 440ms var(--ease-out);
}

.theme-icon-moon { opacity: 1; transform: rotate(0) scale(1); }
.theme-icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.55); }
html[data-theme="dark"] .theme-icon-moon { opacity: 0; transform: rotate(90deg) scale(0.55); }
html[data-theme="dark"] .theme-icon-sun { opacity: 1; transform: rotate(0) scale(1); }

.brand:focus-visible,
.site-nav a:focus-visible,
.theme-toggle:focus-visible,
.contact-link:focus-visible {
  outline: 3px solid var(--pink-deep);
  outline-offset: 4px;
}

.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  align-items: center;
  gap: 92px;
  padding: 48px 0 84px;
}

.hero-copy {
  max-width: 590px;
  animation: copy-enter 760ms 130ms var(--ease-out) both;
}

@keyframes copy-enter {
  from { opacity: 0; transform: translate3d(0, 26px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero-index {
  width: 190px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.hero-index span:last-child { color: var(--pink-deep); }

.hero h1 {
  color: var(--ink);
  font-size: 64px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  transition: color 360ms ease;
}

.hero h1 span { display: inline-block; }

.hero h1 em {
  position: relative;
  z-index: 0;
  color: var(--blue-deep);
  font-style: normal;
  text-shadow: 3px 3px 0 rgba(255, 102, 153, 0.2);
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -2px;
  bottom: 1px;
  left: -2px;
  height: 10px;
  background: var(--pink);
  opacity: 0.38;
  transform: rotate(-1deg);
  -webkit-mask: var(--brush-mask) center / 100% 100% no-repeat;
  mask: var(--brush-mask) center / 100% 100% no-repeat;
}

.hero-intro {
  max-width: 540px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
  transition: color 360ms ease;
}

.hero-scope {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.hero-scope li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.hero-scope i {
  width: 9px;
  height: 9px;
  background: var(--blue);
  box-shadow: 3px 3px 0 rgba(255, 102, 153, 0.55);
  transform: rotate(-4deg);
}

.hero-scope li:nth-child(2) i { background: var(--pink); box-shadow: 3px 3px 0 rgba(0, 174, 236, 0.45); }
.hero-scope li:nth-child(3) i { background: var(--ink); box-shadow: 3px 3px 0 rgba(0, 174, 236, 0.5); }

.archive-board {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 470px;
  justify-self: end;
  animation: board-enter 880ms 190ms var(--ease-out) both;
}

@keyframes board-enter {
  from { opacity: 0; transform: translate3d(34px, 24px, 0) rotate(3deg); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(0.55deg); }
}

.archive-board::before,
.archive-board::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 6px;
  border: 2px solid var(--ink);
  transition: background-color 360ms ease, border-color 360ms ease;
}

.archive-board::before {
  background: var(--blue);
  transform: translate3d(-13px, 9px, 0) rotate(-2.2deg);
}

.archive-board::after {
  z-index: -1;
  background: var(--pink);
  transform: translate3d(13px, 14px, 0) rotate(1.8deg);
}

.board-sheet {
  padding: 13px;
  background: var(--surface);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(24, 25, 28, 0.15);
  transition: background-color 360ms ease, border-color 360ms ease, box-shadow 360ms ease;
}

.board-bar {
  height: 32px;
  padding: 0 4px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

.board-bar span:last-child { color: var(--pink-deep); }

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--screen);
  border: 2px solid var(--ink);
  transition: background-color 360ms ease, border-color 360ms ease;
}

.video-frame::before,
.video-frame::after {
  content: "";
  position: absolute;
  background: var(--screen-line);
}

.video-frame::before { top: 50%; right: 0; left: 0; height: 1px; }
.video-frame::after { top: 0; bottom: 0; left: 50%; width: 1px; }

.board-tv {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 102px;
  height: 102px;
  fill: var(--blue);
  transform: translate3d(-50%, -52%, 0);
  animation: tv-float 5.2s 1.2s ease-in-out infinite;
}

@keyframes tv-float {
  0%, 100% { transform: translate3d(-50%, -52%, 0) rotate(-0.6deg); }
  50% { transform: translate3d(-50%, -55%, 0) rotate(0.6deg); }
}

.frame-dm {
  position: absolute;
  z-index: 3;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  animation: frame-drift 6s ease-in-out infinite alternate;
}

.frame-dm-one { top: 23px; right: 17px; }
.frame-dm-two { bottom: 43px; left: 16px; animation-delay: -2s; }
.frame-dm-three { top: 64px; left: 24px; animation-delay: -4s; }

@keyframes frame-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-8px, 0, 0); }
}

.video-progress {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 15px;
  left: 14px;
  height: 3px;
  background: rgba(255, 255, 255, 0.24);
}

.video-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  background: var(--blue);
}

.video-progress i {
  position: absolute;
  top: -4px;
  left: calc(18% - 5px);
  width: 11px;
  height: 11px;
  background: var(--pink);
  border-radius: 50%;
  animation: progress-pulse 2.8s ease-out infinite;
}

@keyframes progress-pulse {
  0%, 55%, 100% { box-shadow: 0 0 0 0 rgba(255, 102, 153, 0.45); }
  74% { box-shadow: 0 0 0 6px rgba(255, 102, 153, 0); }
}

.board-caption {
  min-height: 66px;
  padding: 14px 4px 2px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.board-caption div { display: grid; gap: 4px; }
.board-caption div span { color: var(--muted); font-size: 11px; }
.board-caption strong { color: var(--ink); font-size: 15px; }
.board-caption > span { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; }

.archive-section {
  padding: 68px 0 74px;
  background: var(--surface);
  box-shadow: 0 0 0 100vmax var(--surface);
  clip-path: inset(0 -100vmax);
  transition: background-color 360ms ease, box-shadow 360ms ease;
}

.section-heading {
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading p,
.contact-section > div > p {
  margin-bottom: 7px;
  color: var(--blue-deep);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  font-weight: 900;
}

.section-heading h2,
.contact-section h2 {
  position: relative;
  width: fit-content;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -4px;
  left: 48%;
  height: 7px;
  background: var(--pink);
  opacity: 0.48;
  transform: rotate(-1deg);
  -webkit-mask: var(--brush-mask) center / 100% 100% no-repeat;
  mask: var(--brush-mask) center / 100% 100% no-repeat;
}

.section-heading > span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

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

.archive-item {
  min-width: 0;
  animation: item-enter 700ms var(--ease-out) both;
}

.archive-item:nth-child(1) { animation-delay: 240ms; }
.archive-item:nth-child(2) { animation-delay: 310ms; }
.archive-item:nth-child(3) { animation-delay: 380ms; }

@keyframes item-enter {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.archive-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: background-color 360ms ease, border-color 360ms ease, box-shadow 360ms ease;
}

.thumb-number,
.thumb-time {
  position: absolute;
  z-index: 3;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--ink);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  font-weight: 900;
}

.thumb-number { top: 10px; left: 10px; padding: 5px 7px; transform: rotate(-2deg); }
.thumb-time { right: 9px; bottom: 8px; padding: 4px 6px; }

.thumb-meme {
  display: grid;
  place-items: center;
  background: var(--blue-soft);
}

.thumb-meme::before,
.thumb-meme::after {
  content: "233";
  position: absolute;
  color: var(--blue-deep);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
  font-weight: 900;
  opacity: 0.38;
}

.thumb-meme::before { top: 22%; right: 12%; transform: rotate(5deg); }
.thumb-meme::after { bottom: 21%; left: 13%; transform: rotate(-7deg); }

.thumb-meme strong {
  position: relative;
  z-index: 2;
  color: var(--ink);
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 6px 6px 0 var(--pink);
  transform: rotate(-3deg);
}

.thumb-scene {
  display: grid;
  place-items: center;
  background: var(--screen);
}

.thumb-scene::before,
.thumb-scene::after {
  content: "";
  position: absolute;
  background: var(--screen-line);
}

.thumb-scene::before { top: 50%; right: 0; left: 0; height: 1px; }
.thumb-scene::after { top: 0; bottom: 0; left: 50%; width: 1px; }

.scene-frame {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 66px;
  border: 3px solid var(--blue);
  box-shadow: 7px 7px 0 var(--pink);
  transform: rotate(1.5deg);
}

.scene-frame span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
  transform: translate3d(-38%, -50%, 0);
}

.thumb-scene .thumb-number,
.thumb-scene .thumb-time { color: #18191c; background: var(--white); border-color: #18191c; }

.thumb-danmaku {
  display: grid;
  place-items: center;
  background: var(--pink-soft);
}

.thumb-dm-lines {
  width: 100%;
  display: grid;
  gap: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.thumb-dm-lines span:nth-child(1) { padding-left: 44%; color: var(--pink-deep); }
.thumb-dm-lines span:nth-child(2) { padding-left: 13%; }
.thumb-dm-lines span:nth-child(3) { padding-left: 61%; color: var(--blue-deep); }

.archive-info {
  padding: 15px 3px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.archive-info h3 { color: var(--ink); font-size: 16px; font-weight: 800; }
.archive-info p { color: var(--muted); font-size: 12px; font-weight: 600; }

.contact-section {
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding: 62px 0 72px;
}

.contact-section > div > p { color: var(--pink-deep); }

.contact-link {
  width: min(100%, 430px);
  min-height: 62px;
  padding: 0 10px 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: var(--blue-deep);
  border: 2px solid var(--ink);
  border-radius: 4px;
  box-shadow: 5px 5px 0 var(--shadow), 9px 9px 0 rgba(255, 102, 153, 0.5);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  transition: color 260ms ease, background-color 260ms ease, border-color 360ms ease, box-shadow 340ms var(--ease-out), transform 340ms var(--ease-out);
}

.contact-link > span:first-child { min-width: 0; overflow-wrap: anywhere; }

.contact-link > span:last-child {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: #18191c;
  background: var(--white);
  font-family: Arial, sans-serif;
  font-size: 23px;
  transition: transform 320ms var(--ease-out);
}

.contact-link:hover {
  color: #18191c;
  background: var(--blue);
  box-shadow: 2px 2px 0 var(--shadow), 5px 5px 0 rgba(255, 102, 153, 0.42);
  transform: translate3d(3px, 3px, 0);
}

.contact-link:hover > span:last-child { transform: translate3d(2px, -2px, 0) rotate(4deg); }
.contact-link:active { box-shadow: 0 0 0 var(--shadow), 2px 2px 0 rgba(255, 102, 153, 0.36); transform: translate3d(5px, 5px, 0); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr); gap: 58px; }
  .hero h1 { font-size: 55px; }
}

@media (max-width: 900px) {
  .site-shell { width: min(100% - 40px, 680px); }
  .site-header { height: 74px; }
  .hero { min-height: 0; grid-template-columns: 1fr; gap: 40px; padding: 48px 0 58px; }
  .hero-copy { max-width: 620px; }
  .hero h1 { font-size: 50px; }
  .archive-board { max-width: 430px; justify-self: center; }
  .danmaku { height: 960px; }
  .dm-track-one { top: 8.5%; }
  .dm-track-two { top: 50%; }
  .dm-track-three { top: 88%; }
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .archive-item:last-child { grid-column: 1 / -1; width: calc(50% - 11px); justify-self: center; }
  .contact-section { align-items: flex-start; flex-direction: column; gap: 30px; }
  .contact-link { width: 100%; max-width: 520px; }
}

@media (max-width: 560px) {
  .site-shell { width: calc(100% - 32px); }
  .site-header { height: 68px; }
  .brand { gap: 8px; font-size: 14px; }
  .brand-tv { width: 24px; height: 24px; }
  .header-actions { gap: 17px; }
  .site-nav { gap: 15px; }
  .site-nav a { font-size: 12px; }
  .theme-toggle { width: 38px; height: 34px; }
  .hero { gap: 48px; padding: 54px 0 82px; }
  .hero-index { width: 160px; margin-bottom: 20px; }
  .hero h1 { font-size: 43px; line-height: 1.16; }
  .hero h1 em::after { height: 8px; }
  .hero-intro { margin-top: 25px; font-size: 15px; line-height: 1.8; }
  .hero-scope { margin-top: 24px; gap: 22px; }
  .hero-scope li { font-size: 12px; }
  .board-sheet { padding: 10px; }
  .board-bar { height: 29px; padding-bottom: 8px; }
  .board-tv { width: 80px; height: 80px; }
  .frame-dm { font-size: 9px; }
  .frame-dm-one { top: 15px; right: 11px; }
  .frame-dm-two { bottom: 34px; left: 11px; }
  .frame-dm-three { top: 48px; left: 14px; }
  .dm-track-one { top: 8.5%; }
  .board-caption { min-height: 60px; padding-top: 12px; }
  .archive-section { padding: 55px 0 62px; }
  .section-heading { margin-bottom: 26px; align-items: flex-start; flex-direction: column; gap: 12px; }
  .section-heading h2, .contact-section h2 { font-size: 24px; }
  .section-heading > span { padding-bottom: 0; }
  .archive-grid { grid-template-columns: 1fr; gap: 30px; }
  .archive-item:last-child { grid-column: auto; width: 100%; }
  .archive-thumb { box-shadow: 3px 3px 0 var(--ink); }
  .contact-section { min-height: 250px; gap: 28px; padding: 54px 0 66px; }
  .contact-link { min-height: 58px; padding-left: 15px; font-size: 14px; }
  .contact-link > span:last-child { width: 38px; height: 38px; flex-basis: 38px; }
}

@media (max-width: 350px) {
  .site-nav { display: none; }
  .hero h1 { font-size: 38px; }
  .hero-scope { gap: 15px; }
  .archive-board::before { transform: translate3d(-8px, 7px, 0) rotate(-1.6deg); }
  .archive-board::after { transform: translate3d(8px, 10px, 0) rotate(1.4deg); }
  .thumb-meme strong { font-size: 58px; }
  .contact-link { font-size: 12px; }
}

@media (max-height: 760px) and (min-width: 901px) {
  .site-header { height: 72px; }
  .hero { min-height: 560px; padding: 34px 0 66px; }
  .hero h1 { font-size: 52px; }
  .hero-intro { margin-top: 24px; }
  .archive-board { max-width: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
