@font-face {
  font-family: "SF Pro Display";
  src: url("/assets/fonts/SF-Pro-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Expanded";
  src: url("/assets/fonts/SF-Pro-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 125%;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Condensed";
  src: url("/assets/fonts/SF-Pro-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 75%;
  font-display: swap;
}

:root {
  --font-sf-pro: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  --font-sf-expanded: "SF Pro Expanded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  --font-sf-condensed: "SF Pro Condensed", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  --font-sf-mono: "SF Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --bg: #e8e8e8;
  --ink: #000000;
  --accent: #9aff00;
  --accent-h: clamp(64px, 10vh, 88px);
  --cursor-dot-size: 28px;
  --cursor-model-scale: 1.5;
  --cursor-model-size: calc(var(--cursor-dot-size) * var(--cursor-model-scale));
  --cursor-progress-width: 30px;
  --cursor-progress-height: 42px;
  --cursor-progress-shaft-width: 4px;
  --cursor-progress-shaft-height: 22px;
  --cursor-progress-head-width: 24px;
  --cursor-progress-head-height: 16px;
}

* {
  box-sizing: border-box;
}

::selection {
  background-color: #000000 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background-image: none !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

*::selection {
  background-color: #000000 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background-image: none !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

::-moz-selection {
  background-color: #000000 !important;
  color: #ffffff !important;
  background-image: none !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

*::-moz-selection {
  background-color: #000000 !important;
  color: #ffffff !important;
  background-image: none !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbars globally while preserving scroll behavior */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sf-pro);
  font-weight: 300;
  letter-spacing: -0.1em;
}

/* SF Typography Utility Classes */
.font-sf-pro {
  font-family: var(--font-sf-pro);
  font-stretch: normal;
  font-variation-settings: "wdth" 100;
}
.font-sf-expanded {
  font-family: var(--font-sf-expanded);
  font-stretch: expanded; /* 确保触发原生或可变字体的宽度轴 */
  font-variation-settings: "wdth" 125, "wght" 900; /* 强制触发其内在的极宽与极粗 Variable 轴 */
}
.font-sf-condensed {
  font-family: var(--font-sf-condensed);
  font-stretch: condensed; /* 确保触发原生或者可变字体的宽度轴 */
  font-variation-settings: "wdth" 75; /* 强制触发它的窄体轴 */
}
.font-sf-mono {
  font-family: var(--font-sf-mono);
  font-stretch: normal;
}
.text-justify {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.tracking-wide {
  letter-spacing: -0.04em !important;
}

body.custom-cursor,
body.custom-cursor a,
body.custom-cursor button,
body.custom-cursor [role="button"],
body.custom-cursor input,
body.custom-cursor textarea,
body.custom-cursor select,
body.custom-cursor label {
  cursor: none;
}

.dot-cursor {
  position: fixed;
  top: -100px;
  left: -100px;
  width: var(--cursor-dot-size);
  height: var(--cursor-dot-size);
  border-radius: 50%;
  background: transparent;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform, width, height;
  transition:
    width 170ms cubic-bezier(0.2, 0.75, 0.22, 1),
    height 170ms cubic-bezier(0.2, 0.75, 0.22, 1),
    transform 170ms cubic-bezier(0.2, 0.75, 0.22, 1);
}

.dot-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 50%;
  transition: border-radius 220ms cubic-bezier(0.2, 0.75, 0.22, 1);
}

.dot-cursor::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 160ms ease;
}

body.cursor-press .dot-cursor::before {
  border-radius: 0;
}

body.cursor-hover .dot-cursor {
  width: calc(var(--cursor-dot-size) * 1.5);
  height: calc(var(--cursor-dot-size) * 1.5);
}

body.cursor-model .dot-cursor {
  width: var(--cursor-model-size);
  height: var(--cursor-model-size);
}

body.cursor-progress .dot-cursor,
body.cursor-scrub .dot-cursor,
body.cursor-scrub-mini .dot-cursor {
  width: var(--cursor-progress-width);
  height: var(--cursor-progress-height);
  transform: translate3d(-50%, -100%, 0);
  transform-origin: 50% 100%;
}

body.cursor-progress .dot-cursor::before,
body.cursor-progress .dot-cursor::after,
body.cursor-scrub .dot-cursor::before,
body.cursor-scrub .dot-cursor::after,
body.cursor-scrub-mini .dot-cursor::before,
body.cursor-scrub-mini .dot-cursor::after {
  left: 50%;
  right: auto;
  inset: auto;
  transform: translateX(-50%);
  background: #ffffff;
  opacity: 1;
}

body.cursor-progress .dot-cursor::before,
body.cursor-scrub .dot-cursor::before,
body.cursor-scrub-mini .dot-cursor::before {
  top: 0;
  width: var(--cursor-progress-shaft-width);
  height: var(--cursor-progress-shaft-height);
  border-radius: 999px;
  clip-path: none;
}

body.cursor-progress .dot-cursor::after,
body.cursor-scrub .dot-cursor::after,
body.cursor-scrub-mini .dot-cursor::after {
  bottom: 0;
  width: var(--cursor-progress-head-width);
  height: var(--cursor-progress-head-height);
  border-radius: 0;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

body.cursor-progress.cursor-press .dot-cursor,
body.cursor-scrub.cursor-press .dot-cursor,
body.cursor-scrub-mini.cursor-press .dot-cursor {
  transform: translate3d(-50%, -100%, 0) scale(0.92);
}

body.cursor-progress.cursor-press .dot-cursor::before,
body.cursor-scrub.cursor-press .dot-cursor::before,
body.cursor-scrub-mini.cursor-press .dot-cursor::before {
  border-radius: 999px;
}

.dot-cursor-svg {
  display: none;
}

.dot-cursor-ring {
  fill: #ffffff;
  stroke: none;
  shape-rendering: geometricPrecision;
}

body.cursor-model .dot-cursor-ring {
  fill: #ffffff;
  stroke: none;
}

.works-interaction-lock {
  position: fixed;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 980;
}

.works-interaction-lock.is-active {
  pointer-events: auto;
}

body.works-anim-lock {
  overflow: hidden;
}

body.works-anim-lock .site-nav,
body.works-anim-lock .page,
body.works-anim-lock .site-footer {
  pointer-events: none !important;
  user-select: none;
}

body.works-anim-lock .dot-cursor {
  opacity: 0;
}

.works-blackout-layer {
  position: fixed;
  inset: 0;
  background: #000000;
  transform: translateX(-102%);
  pointer-events: none;
  z-index: 1000;
  will-change: transform;
}

.works-blackout-layer.is-run {
  pointer-events: auto;
  animation: works-blackout-in 640ms linear forwards;
}

.works-blackout-layer.is-leave {
  pointer-events: none;
  animation: works-blackout-out 640ms linear forwards;
}

.works-blackout-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 10vw;
  height: 100%;
  border: 0;
  background: transparent;
  color: #ffffff;
  padding: 0;
  cursor: pointer;
}

.works-blackout-back svg {
  display: block;
  width: 100%;
  height: 100%;
}

.works-blackout-chevron {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.works-blackout-chevron {
  stroke-width: 5.5;
}

.works-blackout-dash {
  fill: currentColor;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0;
  pointer-events: none;
  mix-blend-mode: difference;
  will-change: transform;
}

.site-nav.on-accent {
  mix-blend-mode: normal;
}

.nav-left {
  justify-self: start;
  min-width: 0;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 20px;
  pointer-events: auto;
  text-decoration: none;
}

.site-logo {
  display: block;
  width: clamp(136px, 14vw, 224px);
  max-width: 100%;
  height: auto;
}

.nav-link {
  pointer-events: auto;
  font-family: var(--font-sf-expanded);
  color: #fff;
  font-size: clamp(24px, 2.8vw, 52px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 620;
  text-decoration: none;
  text-underline-offset: 0.12em;
}

.site-nav.on-accent .nav-link {
  color: #000000;
}

.site-nav.on-accent-bottom {
  background: var(--accent);
}

.nav-link:first-child {
  justify-self: start;
}

.nav-link:nth-child(2) {
  justify-self: center;
}

.nav-link:last-child {
  justify-self: end;
}

.nav-link.is-active {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
}

.hero {
  background: var(--bg);
}

.hero-visual {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-logo-svg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.typer-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.hero-fill-layer {
  position: absolute;
  top: clamp(24px, 3vw, 44px);
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  display: grid;
  grid-template-rows: repeat(var(--hero-row-count, 10), minmax(0, 1fr));
  align-items: stretch;
  mix-blend-mode: multiply;
}

.hero-fill-row {
  display: flex;
  align-items: center;
  white-space: pre;
  color: #111111;
  font-family: var(--font-sf-pro);
  font-weight: 300;
  letter-spacing: -0.1em;
  line-height: 0.82;
  transform: translateX(var(--hero-shift, 0ch));
  clip-path: inset(0 100% 0 0);
}

.hero-fill-char {
  display: inline-block;
  opacity: var(--hero-char-opacity, 0.62);
}

.hero-fill-row.is-run {
  animation: hero-fill-reveal var(--hero-fill-duration, 640ms) steps(44, end)
    var(--hero-fill-delay, 0ms) forwards;
}

.typer-snake {
  position: absolute;
  inset: 0;
}

.typer-char {
  position: absolute;
  transform: translate(-1000px, -1000px);
  transform-origin: center;
  color: #000000;
  font-family:
    "SFMono-Regular", "Roboto Mono", "IBM Plex Mono", "Menlo", "Consolas",
    "Liberation Mono", monospace;
  font-size: clamp(12px, 0.95vw, 17px);
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  letter-spacing: -0.1em;
  will-change: transform, opacity;
}

.floating-block {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .floating-block {
    animation: none !important;
    transform: none !important;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 28px);
  color: #000000;
  text-align: left;
  padding: clamp(34px, 4.2vw, 66px) clamp(12px, 2.1vw, 32px)
    clamp(34px, 4.2vw, 66px) clamp(30px, 8vw, 160px);
}

.hero-copy.about-grid-section {
  display: block;
  gap: 0;
  padding: 0;
}

.hero-copy.works-copy {
  display: block;
  padding: 0;
}

.page.works-page {
  min-height: 0;
}

.works-shell {
  width: 100%;
  margin-left: 0;
  --works-title-size: clamp(42px, 3.8vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #cdced0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.works-category {
  min-width: 0;
  min-height: clamp(220px, 31vh, 420px);
  background: #cdced0;
  border-left: 1px solid #000000;
  display: flex;
  flex-direction: column;
}

.works-category:first-child {
  border-left: 0;
}

.works-category-head {
  width: 100%;
  padding: 6px 10px 5px;
  background: var(--bg);
  border-bottom: 1px solid #000000;
}

.works-category-title {
  display: inline-block;
  font-family: var(--font-sf-expanded);
  font-size: clamp(20px, 1.85vw, 30px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: #000000;
}

.works-category-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.works-item {
  --works-row-h: clamp(112px, 16vh, 212px);
  width: 100%;
  height: auto;
  flex: 1 1 0;
  min-height: 0;
  border: 0;
  background: #000000;
  color: #ffffff;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  cursor: pointer;
  position: relative;
  z-index: 10;
  overflow: hidden;
  transition: background-color 140ms linear, color 140ms linear;
}

.works-item + .works-item {
  border-top: 1px solid #ffffff;
}

.works-link-item {
  --works-row-h: clamp(112px, 16vh, 212px);
  width: 100%;
  height: auto;
  flex: 1 1 0;
  min-height: 0;
  border: 0;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0;
  transition: background-color 140ms linear, color 140ms linear;
}

.works-link-item:visited,
.works-link-item:hover,
.works-link-item:active,
.works-link-item:focus-visible {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

.works-link-item + .works-link-item {
  border-top: 1px solid #ffffff;
}

.works-item + .works-link-item,
.works-link-item + .works-item {
  border-top: 1px solid #ffffff;
}

.works-item-title {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
  font-family: var(--font-sf-expanded);
  font-size: var(--works-title-size);
  line-height: 0.92;
  font-weight: 320;
  letter-spacing: -0.04em;
  white-space: normal;
  overflow-wrap: anywhere;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  padding-left: 0;
  padding-right: clamp(10px, 1.2vw, 20px);
  padding-top: 0;
  clip-path: inset(0 0 0 0);
  will-change: clip-path;
}

.works-link-item-title {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: var(--font-sf-expanded);
  font-size: var(--works-title-size);
  line-height: 0.92;
  font-weight: 320;
  letter-spacing: -0.04em;
  white-space: normal;
  overflow-wrap: anywhere;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  padding-left: 0;
  padding-right: clamp(10px, 1.2vw, 20px);
}

.works-item-fill {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  pointer-events: none;
  z-index: 1;
  clip-path: inset(0 100% 0 0);
}

.works-item-fill-track {
  display: block;
  white-space: nowrap;
  font-family: var(--font-sf-expanded);
  font-size: var(--works-title-size);
  line-height: 0.82;
  font-weight: 320;
  letter-spacing: -0.04em;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  padding-left: 0;
  padding-right: clamp(10px, 1.2vw, 20px);
  transform: translateX(var(--fill-shift, 0ch));
}

.works-item:hover,
.works-link-item:hover {
  background: #ffffff;
  color: #000000;
}

.works-item:hover .works-item-title,
.works-item:hover .works-item-fill,
.works-item:hover .works-item-fill-track,
.works-link-item:hover .works-link-item-title {
  color: #000000;
  -webkit-text-fill-color: #000000;
}

.works-item.is-flashing {
  animation: works-row-invert-flash 180ms steps(1, end) 1;
}

.works-item.is-erasing .works-item-title {
  animation:
    works-title-erase 160ms steps(14, end) var(--erase-delay, 0ms) forwards,
    works-title-hide 1ms linear calc(var(--erase-delay, 0ms) + 160ms) forwards;
}

.works-item.is-fill-typing .works-item-fill {
  animation: works-fill-reveal var(--fill-duration, 300ms) steps(18, end)
    var(--fill-delay, 0ms) forwards;
}

@keyframes works-row-invert-flash {
  0%,
  19%,
  40%,
  59%,
  80%,
  100% {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
  }

  20%,
  39%,
  60%,
  79% {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
  }
}

@keyframes works-title-erase {
  0% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(0 0 0 102%);
  }
}

@keyframes works-fill-reveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-fill-reveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes works-title-hide {
  to {
    visibility: hidden;
  }
}

@keyframes works-blackout-in {
  0% {
    transform: translateX(-102%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes works-blackout-out {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-102%);
  }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
}

.about-card {
  aspect-ratio: 1 / 2;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: clamp(34px, 4.2vw, 88px);
  line-height: 1;
  letter-spacing: -0.1em;
  font-family: var(--font-sf-pro);
  font-weight: 100;
}

.about-title {
  display: block;
  font-family: var(--font-sf-expanded);
}

.about-model-card {
  position: relative;
  overflow: hidden;
  background: #e8e8e8;
  cursor: pointer;
}

.about-empty-card {
  background: #e8e8e8;
}

.about-model-card .about-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.about-model-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  touch-action: pan-y !important; /* Allow vertical scroll even over model */
  background: transparent;
  overflow: hidden;
}

.about-model-stage.is-preload {
  opacity: 0;
}

body.custom-cursor .about-model-stage,
body.custom-cursor .about-model-stage * {
  cursor: none !important;
}

.about-model-stage canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.about-model-stage.is-model-error {
  background: #d7d7d7;
  display: grid;
  place-items: center;
}

.about-model-stage.is-ready,
.about-model-stage.is-model-error {
  opacity: 1;
  transition: opacity 160ms linear;
}

.about-person-menu {
  position: fixed;
  z-index: 1600;
  width: 184px;
  height: 184px;
  display: block;
  pointer-events: auto;
}

.about-person-menu-inner {
  position: absolute;
  inset: 0;
  border: 1px solid #000000;
  border-radius: 50%;
  background: #e8e8e8;
  box-shadow: none;
  overflow: hidden;
}

.about-person-menu-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 50%;
  background: #000000;
  transform-origin: 50% 0;
  pointer-events: none;
  z-index: 1;
}

.about-person-menu-action {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  color: #000000;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.about-person-menu-action:hover,
.about-person-menu-action:focus-visible {
  background: #000000;
  color: #ffffff;
  outline: none;
}

.about-person-menu-label {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.about-person-menu-label-en {
  font-family: var(--font-sf-pro);
  font-size: 13px;
  letter-spacing: -0.08em;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.about-person-menu-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #000000;
  background: #e8e8e8;
  pointer-events: none;
  z-index: 3;
}

.about-person-menu-center::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #000000;
}

.model-error-tip {
  margin: 0;
  padding: 0 12px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  font-family: var(--font-sf-pro);
}

body.about-expand-lock {
  overflow: hidden;
}

.about-expand-overlay {
  --about-accent: #9aff00;
  position: fixed;
  inset: 0;
  z-index: 1400;
  pointer-events: auto;
}

.about-expand-shell {
  position: fixed;
  background: #e8e8e8;
  border: 1px solid #000000;
  overflow: visible;
  pointer-events: auto;
  transition:
    top 680ms linear,
    left 680ms linear,
    width 680ms linear,
    height 680ms linear;
}

.about-expand-left {
  --about-expand-font-size: 40px;
  position: absolute;
  z-index: 1;
  background: transparent;
  overflow-y: auto;
  overflow-x: hidden;
  display: block;
  min-width: 0;
  font-size: var(--about-expand-font-size);
  transition:
    top 680ms linear,
    left 680ms linear,
    width 680ms linear,
    height 680ms linear,
    font-size 680ms linear;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-expand-left::-webkit-scrollbar {
  display: none;
}

.about-expand-title {
  position: static;
  margin: 0;
  font-size: 1em;
  line-height: 0.96;
  letter-spacing: -0.1em;
  font-family: var(--font-sf-expanded);
  font-weight: 100;
  color: #000000;
  white-space: nowrap;
}

.about-expand-tags {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0;
  font-size: 1em;
  line-height: 1;
}

.about-pill {
  display: inline-grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  border: 1px solid #000000;
  border-radius: 999px;
  padding: 0;
  height: 1em;
  min-height: 1em;
  max-height: 1em;
  max-width: 100%; /* 防止超长单词溢出屏幕 */
  line-height: 1;
  font-size: 1.25em; /* 撑满这个区域 */
  font-weight: 100;
  font-family: var(--font-sf-pro);
  background: transparent;
}

.about-pill-text {
  position: relative;
  display: inline-grid;
  place-items: center;
  white-space: nowrap;
}

.about-pill-empty {
  pointer-events: none;
}

.about-pill-empty .about-pill-main,
.about-pill-empty .about-pill-hover {
  display: none;
}

.about-pill-text-outline {
  border-color: var(--about-accent);
  color: #000000;
  background: transparent;
}

.about-pill-text-solid {
  color: #000000;
  background: var(--about-accent);
}

.about-pill-main,
.about-pill-hover {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  text-overflow: clip;
  white-space: pre;
  letter-spacing: -0.1em; /* 缩小间距10% */
  font-family: var(--font-sf-pro);
  text-align: left;
  line-height: 1;
}

.about-pill-sizer {
  grid-area: 1 / 1;
  display: block;
  min-width: 0;
  width: auto;
  max-width: 100%;
  height: auto;
  text-overflow: clip;
  white-space: pre;
  letter-spacing: -0.1em; /* 缩小间距同步 */
  font-family: var(--font-sf-pro);
  text-align: left;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  font-size: 1em;
  padding: 0;
}

.about-pill-main {
  font-size: 1em;
  line-height: 1;
}

.about-pill-hover {
  font-family:
    "Helvetica Neue Condensed Bold", "Helvetica Condensed", Helvetica, Arial,
    sans-serif;
  font-weight: bold;
  font-stretch: condensed;
  font-size: 1em;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.about-expand-model {
  position: absolute;
  z-index: 2;
  overflow: visible;
  background: transparent;
  transition:
    top 680ms linear,
    left 680ms linear,
    width 680ms linear,
    height 680ms linear;
}

.about-expand-model .about-model-stage {
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: transparent;
  overflow: hidden;
}

.hero-text {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 60px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.1em;
}

.index-copy .hero-text {
  font-weight: 300;
  font-size: clamp(32px, 4.6vw, 86px);
}

.hero-copy.index-copy {
  padding: 0;
}

.hero-copy.index-copy {
  gap: 0;
}

.hero-copy.index-copy .hero-mark-line {
  width: 100%;
  margin: 0;
  padding: clamp(54px, 7vw, 122px) 0 clamp(50px, 6.4vw, 100px);
  text-align: center;
  line-height: 0.9;
  font-size: clamp(34px, 5vw, 92px);
  font-weight: 300;
  letter-spacing: -0.08em;
}

.maps-shell-section {
  width: 100%;
  background: #000000;
  padding: 0;
  min-height: calc(100vh - var(--accent-h));
}

.maps-layout {
  --maps-nav-size: clamp(24px, 2.8vw, 52px);
  --accent-h: var(--maps-nav-size);
  background: #000000;
}

.maps-shell {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100vh - var(--accent-h));
}

.maps-stage-card {
  min-width: 0;
  background: #000000;
  padding: 0;
}

.maps-stage-frame {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--accent-h));
  background: #000000;
  padding: 0;
}

.maps-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--accent-h));
  overflow: hidden;
  background: #000000;
}

.maps-stage-grid,
.maps-stage-fallback {
  position: absolute;
}

.maps-stage-grid {
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mix-blend-mode: screen;
}

.maps-map {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.maps-user-marker {
  width: 56px;
  height: 80px;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.maps-user-marker svg {
  display: block;
  width: 100%;
  height: 100%;
}

.maps-search-marker {
  width: 62px;
  height: 88px;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  filter:
    drop-shadow(0 0 12px rgba(154, 255, 0, 0.62))
    drop-shadow(0 0 22px rgba(154, 255, 0, 0.34));
}

.maps-search-marker svg {
  display: block;
  width: 100%;
  height: 100%;
}

.maps-search-dock {
  position: absolute;
  left: clamp(14px, 1.8vw, 24px);
  bottom: clamp(14px, 1.8vw, 24px);
  z-index: 7;
  width: min(360px, calc(100vw - 92px));
  pointer-events: none;
}

.maps-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  align-items: stretch;
  border: 2px solid #ffffff;
  background: #000000;
  pointer-events: auto;
}

.maps-search-input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-sf-condensed);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  padding: 16px 14px 14px;
  outline: none;
  box-shadow: none;
  appearance: none;
}

.maps-search-submit {
  border: 0;
  border-left: 2px solid #ffffff;
  border-radius: 0;
  background: #000000;
  color: #ffffff;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.maps-search-submit:hover,
.maps-search-submit:focus-visible,
.maps-search-form:focus-within .maps-search-submit {
  background: #9aff00;
  color: #000000;
  outline: none;
}

.maps-search-submit svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.maps-search-input::-webkit-search-decoration,
.maps-search-input::-webkit-search-cancel-button,
.maps-search-input::-webkit-search-results-button,
.maps-search-input::-webkit-search-results-decoration {
  appearance: none;
  display: none;
}

.maps-search-suggestions {
  margin-top: 10px;
  border: 2px solid #ffffff;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(4px);
  max-height: min(46vh, 360px);
  overflow: auto;
  pointer-events: auto;
}

.maps-search-suggestion {
  width: 100%;
  border: 0;
  border-radius: 0;
  border-top: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  padding: 11px 12px 10px;
  display: grid;
  gap: 4px;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 140ms ease,
    color 140ms ease;
}

.maps-search-suggestion:first-child {
  border-top: 0;
}

.maps-search-suggestion:hover,
.maps-search-suggestion:focus-visible,
.maps-search-suggestion.is-active {
  background: #9aff00;
  color: #000000;
  outline: none;
}

.maps-search-suggestion-title {
  font-family: var(--font-sf-condensed);
  font-size: 16px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.maps-search-suggestion-meta {
  font-family: var(--font-sf-pro);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  opacity: 0.82;
}

.maps-label-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  overflow: hidden;
  pointer-events: none;
}

.maps-label {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: flex-end;
  color: #ffffff;
  line-height: 0.88;
  letter-spacing: -0.08em;
  white-space: nowrap;
  mix-blend-mode: normal;
  transform-origin: center center;
  will-change: transform;
}

.maps-label-char {
  display: inline-block;
  -webkit-text-stroke: 2px #000000;
  paint-order: stroke fill;
  text-shadow:
    -1px -1px 0 #000000,
    1px -1px 0 #000000,
    -1px 1px 0 #000000,
    1px 1px 0 #000000;
  transform-origin: center 70%;
}

.maps-label-char-cjk {
  font-family: "PingFang HK", "PingFang TC", "Noto Sans CJK TC", sans-serif;
  font-weight: 800;
}

.maps-label-char-latin {
  font-family: var(--font-sf-condensed);
  font-weight: 800;
  font-stretch: condensed;
}

.maps-label-place-xl {
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 0.9;
  gap: 1px;
}

.maps-label-place-lg {
  font-size: clamp(15px, 1.35vw, 22px);
  line-height: 0.9;
  gap: 1px;
}

.maps-label-water,
.maps-label-place-md {
  font-size: clamp(12px, 1vw, 16px);
}

.maps-label-road,
.maps-label-place-sm {
  font-size: clamp(10px, 0.82vw, 13px);
}

.maps-label-place-xl .maps-label-char,
.maps-label-place-lg .maps-label-char {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  height: 1.1em;
  background: #ffffff;
  box-sizing: border-box;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.maps-label-place-xl .maps-label-char-cjk,
.maps-label-place-lg .maps-label-char-cjk,
.maps-label-place-xl .maps-label-char-latin,
.maps-label-place-lg .maps-label-char-latin {
  color: #000000;
}

.maps-label-place-xl .maps-label-char-space,
.maps-label-place-lg .maps-label-char-space {
  width: 0.18em;
  background: transparent;
}

.maps-fab-stack {
  position: absolute;
  right: clamp(14px, 1.8vw, 24px);
  bottom: clamp(14px, 1.8vw, 24px);
  z-index: 7;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.maps-fab {
  width: 58px;
  height: 58px;
  border: 2px solid #ffffff;
  border-radius: 0;
  background: #000000;
  color: #ffffff;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 160ms cubic-bezier(0.2, 0.75, 0.2, 1),
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.maps-fab:hover,
.maps-fab:focus-visible {
  background: #9aff00;
  color: #000000;
  border-color: #9aff00;
  transform: scale(1.04);
  outline: none;
}

.maps-fab svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.maps-info-row {
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.maps-info-drawer {
  width: 0;
  min-width: 0;
  padding: 0;
  border: 1px solid #ffffff;
  background: rgba(0, 0, 0, 0.92);
  color: #ffffff;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(8px, 0, 0);
  transition:
    width 180ms ease,
    padding 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.maps-info-drawer.is-open {
  width: min(198px, calc(100vw - 92px));
  min-width: 198px;
  padding: 10px 12px;
  margin-right: 10px;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.maps-info-title {
  margin: 0 0 6px;
  font-family: var(--font-sf-condensed);
  font-size: 12px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.maps-info-list {
  display: grid;
  gap: 4px;
}

.maps-info-link {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-sf-condensed);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.maps-info-link:hover,
.maps-info-link:focus-visible {
  color: #9aff00;
  outline: none;
}

.maps-stage-fallback {
  inset: 0;
  z-index: 8;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
  border: 1px solid #000000;
  background: #000000;
  color: #f3f3ef;
  text-align: center;
}

.maps-stage-fallback.is-visible {
  display: flex;
}

.maps-stage-fallback-label,
.maps-stage-fallback-copy {
  display: block;
  font-family: var(--font-sf-expanded);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.maps-stage-fallback-label {
  font-size: clamp(34px, 4.2vw, 70px);
}

.maps-stage-fallback-copy {
  font-size: clamp(20px, 2vw, 30px);
}

.maps-layout .maplibregl-map {
  font-family: var(--font-sf-pro);
}

.maps-layout .maplibregl-canvas {
  outline: none;
}

.index-events,
.index-journals {
  margin-top: clamp(60px, 10vw, 140px);
  border-top: 4px solid #000000;
  border-bottom: 4px solid #000000;
  border-left: none;
  border-right: none;
  background: transparent;
  width: 100%;
}

.events-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid #000000;
  padding: 0;
  line-height: 0.85;
  letter-spacing: -0.1em;
}

.events-label {
  font-family: var(--font-sf-pro);
  font-weight: 700; /* Bold */
  font-size: clamp(48px, 8vw, 120px);
  transform: translateY(0.06em); /* Visual alignment for large type */
  margin-left: -0.07em; /* optical trim for left side-bearing */
}

.events-month {
  font-family: var(--font-sf-pro);
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 20px);
  letter-spacing: -0.1em;
  margin-bottom: 4px; /* Tiny adjustment for baseline */
}

.events-list {
  display: flex;
  flex-direction: column;
}

.event-item {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #000000;
  padding: 0;
  font-family: var(--font-sf-pro);
  line-height: 1.1;
  position: relative;
}

.event-item:last-child {
  border-bottom: none;
}

.event-date {
  text-align: left;
  margin-left: -0.07em;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.1em;
  white-space: nowrap;
}

.event-desc {
  position: absolute;
  right: 0;
  text-align: right;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400; /* Bolder thin */
  letter-spacing: -0.1em;
  white-space: nowrap;
}

/* JOURNALS SECTION */
.journals-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid #000000;
  padding: 0;
  line-height: 0.85;
  letter-spacing: -0.1em;
}

.journals-label {
  font-family: var(--font-sf-pro);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 120px);
  transform: translateY(0.06em);
  margin-left: -0.07em;
}

.journals-count {
  font-family: var(--font-sf-pro);
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 20px);
  letter-spacing: -0.1em;
  margin-bottom: 4px;
}

.journals-list {
  display: flex;
  flex-direction: column;
}

.journal-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #000000;
  padding: 0;
  color: #000000;
  text-decoration: none;
  font-family: var(--font-sf-pro);
  line-height: 1.1;
  transition:
    background-color 300ms,
    color 300ms;
}

.journal-item:last-child {
  border-bottom: none;
}

.journal-item:hover,
.journal-item:focus-visible {
  background-color: #000000;
  color: #ffffff;
}

.journal-id {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.1em;
  white-space: nowrap;
  margin-left: -0.07em;
}

.journal-title {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 300; /* Thinner weight for elegance/avant-garde feel */
  text-transform: lowercase; /* Lowercase for a subtle, editorial look */
  font-style: italic; /* Adding italic for editorial/magazine style */
  letter-spacing: -0.04em;
  margin-left: 2vw;
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.journal-date {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400; /* keeping date consistent but maybe thinner or regular */
  text-align: right;
  letter-spacing: -0.1em;
  white-space: nowrap;
}

.podcast-layout,
.index-podcast {
  --pod-font-pro:
    "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  --pod-font-expanded:
    "SF Pro Expanded", "SF Expanded", "SF Pro Display", -apple-system,
    BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --pod-font-condensed:
    "SF Pro Condensed", "SF Condensed", "SF Pro Display", -apple-system,
    BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --pod-font-mono:
    "SF Mono", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  --pod-font-rounded:
    "SF Pro Rounded", "SF Rounded", "SF Pro Display", -apple-system,
    BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.index-podcast {
  margin-top: clamp(76px, 10vw, 150px);
  border-top: 4px solid #000000;
  border-bottom: 4px solid #000000;
  border-left: none;
  border-right: none;
  width: 100%;
}

.podcast-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid #000000;
  line-height: 0.84;
}

.podcast-label {
  font-family: var(--pod-font-expanded);
  font-weight: 680;
  font-size: clamp(52px, 8vw, 126px);
  letter-spacing: -0.055em;
  transform: translateY(0.06em);
  margin-left: -0.045em;
}

.podcast-live {
  font-family: var(--pod-font-mono);
  font-weight: 500;
  font-size: clamp(13px, 1.15vw, 17px);
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.podcast-entry {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: #000000;
  text-decoration: none;
  border-bottom: none;
  line-height: 1;
  padding: clamp(8px, 1vw, 16px) 0;
  transition:
    background-color 240ms ease-out,
    color 240ms ease-out;
}

.podcast-entry:hover,
.podcast-entry:focus-visible {
  background-color: #000000;
  color: #ffffff;
}

.podcast-entry-main {
  font-family: var(--pod-font-condensed);
  font-size: clamp(25px, 3vw, 44px);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-transform: uppercase;
  margin-left: -0.01em;
}

.podcast-entry-action {
  font-family: var(--pod-font-rounded);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 620;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.podcast-page {
  background: var(--bg);
}

.podcast-hero-visualizer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  border-top: 0;
  background: transparent;
  padding: 0 clamp(8px, 1.3vw, 18px) 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: normal;
  overflow: hidden;
  opacity: 0;
  transition:
    height 520ms cubic-bezier(0.22, 0.72, 0.22, 1),
    padding 520ms cubic-bezier(0.22, 0.72, 0.22, 1),
    opacity 360ms ease;
}

.podcast-hero-visualizer.is-active {
  height: clamp(132px, 16vw, 280px);
  padding: clamp(6px, 1vw, 16px) clamp(8px, 1.3vw, 18px) 0;
  opacity: 1;
}

.podcast-hero-visualizer-track {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: clamp(2px, 0.28vw, 6px);
  mix-blend-mode: normal;
}

.podcast-hero-bar {
  flex: 1 1 0;
  min-width: 6px;
  height: 100%;
  transform-origin: bottom center;
  transform: scaleY(0.06);
  background: var(--accent);
  mix-blend-mode: normal;
  opacity: 1;
  will-change: transform;
}

.podcast-hero-bar:nth-child(4n + 2) {
  opacity: 1;
}

.podcast-hero-bar:nth-child(4n + 3) {
  opacity: 1;
}

.podcast-hero-bar:nth-child(4n + 4) {
  opacity: 1;
}

.podcast-copy {
  padding: clamp(52px, 6vw, 110px) clamp(20px, 3.5vw, 62px)
    clamp(60px, 8vw, 120px);
}

.podcast-shell {
  width: min(1600px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(620px, 1.3fr);
  gap: clamp(26px, 2.6vw, 50px);
  align-items: start;
}

.podcast-meta-panel,
.podcast-player-panel {
  border: 2px solid #000000;
  background: var(--bg);
}

.podcast-meta-panel {
  padding: clamp(24px, 2.8vw, 42px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.7vw, 26px);
}

.podcast-meta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.podcast-page-title {
  margin: 0;
  font-family: var(--pod-font-expanded);
  font-size: clamp(40px, 4.8vw, 84px);
  line-height: 0.88;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.podcast-refresh-btn {
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
  font-family: var(--pod-font-rounded);
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 620;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 10px 14px;
  text-transform: uppercase;
}

.podcast-refresh-btn:hover,
.podcast-refresh-btn:focus-visible {
  background: #000000;
  color: #ffffff;
  outline: none;
}

.podcast-refresh-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.podcast-source-state,
.podcast-updated {
  margin: 0;
  font-family: var(--pod-font-mono);
  font-size: clamp(11px, 0.86vw, 14px);
  letter-spacing: 0.09em;
  line-height: 1.28;
  text-transform: uppercase;
}

.podcast-updated {
  font-family: var(--pod-font-expanded);
  font-size: clamp(18px, 1.35vw, 30px);
  letter-spacing: -0.01em;
  display: inline-block;
  width: fit-content;
  background: #000000;
  color: #ffffff;
  padding: 0;
  line-height: 1;
}

.podcast-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid #000000;
  background: #d9d9d9;
}

.podcast-title-main {
  margin: 0;
  font-family: var(--pod-font-condensed);
  font-size: clamp(28px, 2.75vw, 48px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 620;
}

.podcast-desc-main {
  margin: 0;
  max-width: none;
  font-family: var(--pod-font-pro);
  font-size: clamp(16px, 1.2vw, 21px);
  line-height: 1.48;
  letter-spacing: -0.02em;
  white-space: pre-line;
  font-weight: 440;
}

.podcast-player-panel {
  padding: clamp(24px, 2.8vw, 42px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.75vw, 30px);
}

.podcast-now-tag {
  margin: 0;
  font-family: var(--pod-font-mono);
  font-size: clamp(11px, 0.84vw, 13px);
  letter-spacing: 0.11em;
  line-height: 1.15;
  text-transform: uppercase;
}

.podcast-now-title {
  margin: 0;
  font-family: var(--pod-font-expanded);
  font-size: clamp(34px, 3.35vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.052em;
  font-weight: 650;
  margin-bottom: clamp(16px, 1.5vw, 24px);
}

.podcast-now-title.is-play-toggle,
.podcast-now-meta.is-play-toggle {
  cursor: pointer;
}

.podcast-now-title.is-play-toggle:hover,
.podcast-now-title.is-play-toggle:focus-visible,
.podcast-now-meta.is-play-toggle:hover,
.podcast-now-meta.is-play-toggle:focus-visible {
  opacity: 0.72;
  outline: none;
}

.podcast-now-meta {
  margin: 0;
  font-family: var(--pod-font-expanded);
  font-size: clamp(18px, 1.35vw, 30px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: inline-block;
  width: fit-content;
  background: #000000;
  color: #ffffff;
  padding: 0;
  line-height: 1;
}

.podcast-now-summary {
  margin: clamp(18px, 2vw, 28px) 0 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--pod-font-expanded);
  font-size: clamp(26px, 1.9vw, 36px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  font-weight: 560;
  max-height: min(48vh, 560px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
}

.podcast-track-line {
  border: 0;
  background: transparent;
  color: #000000;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
  width: 100%;
  padding: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 12px;
  text-align: left;
  overflow: hidden;
}

.podcast-track-index {
  width: 1.72em;
  min-width: 1.72em;
  height: 1em;
  padding: 0;
  border: 1px solid #000000;
  border-radius: 0;
  font-family: var(--pod-font-expanded);
  font-size: 0.92em;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #000000;
}

.podcast-track-line.is-active .podcast-track-index {
  background: #000000;
  color: #ffffff;
}

.podcast-track-content {
  display: block;
  width: 100%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  font-family: var(--pod-font-condensed);
  font-weight: 520;
}

.podcast-track-text-run {
  display: inline-block;
  white-space: nowrap;
  transform: translateX(0);
  will-change: transform;
}

.podcast-track-artist {
  font-family: var(--pod-font-condensed);
  font-weight: 520;
}

.podcast-track-sep {
  font-family: var(--pod-font-condensed);
  font-weight: 520;
}

.podcast-track-title {
  font-family: var(--pod-font-condensed);
  font-weight: 520;
}

.podcast-controls {
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.podcast-btn-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.podcast-btn {
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
  border-radius: 0;
  font-family: var(--pod-font-rounded);
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 600;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 10px 14px;
  text-transform: uppercase;
}

.podcast-btn:hover,
.podcast-btn:focus-visible,
.podcast-btn.is-on {
  background: #000000;
  color: #ffffff;
  outline: none;
}

.podcast-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.podcast-progress-row {
  display: grid;
  grid-template-columns: auto minmax(140px, 1fr) auto;
  align-items: center;
  gap: 10px;
  background: #000000;
  padding: 10px 12px;
}

.podcast-time {
  font-family: var(--pod-font-mono);
  font-size: clamp(11px, 0.84vw, 13px);
  letter-spacing: 0.08em;
  line-height: 1;
  color: #ffffff;
}

.podcast-progress-wrap {
  position: relative;
}

.podcast-progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  height: 22px;
}

.podcast-progress::-webkit-slider-runnable-track {
  height: 10px;
  border: 1px solid #000000;
  background: #ffffff;
  border-radius: 0;
}

.podcast-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 22px;
  background: #000000;
  border: 1px solid #000000;
  border-radius: 0;
  margin-top: -7px;
}

.podcast-progress::-moz-range-track {
  height: 10px;
  border: 1px solid #000000;
  background: #ffffff;
  border-radius: 0;
}

.podcast-progress::-moz-range-thumb {
  width: 18px;
  height: 22px;
  background: #000000;
  border: 1px solid #000000;
  border-radius: 0;
}

.podcast-progress-markers {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  height: 8px;
  pointer-events: none;
}

.podcast-progress-marker {
  pointer-events: auto;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border: 1px solid #ffffff;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.podcast-progress-marker.is-active {
  background: #ffffff;
}

.nt-mini-player {
  position: fixed;
  left: clamp(14px, 2vw, 30px);
  right: clamp(14px, 2vw, 30px);
  bottom: clamp(12px, 1.8vw, 24px);
  z-index: 1200;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  background: #000000;
  color: #f2f2f2;
  border: 2px solid #f2f2f2;
  padding: clamp(10px, 1vw, 14px) clamp(12px, 1.3vw, 18px);
}

.nt-mini-player.is-hidden {
  display: none;
}

.nt-mini-btn {
  width: clamp(34px, 3vw, 42px);
  height: clamp(34px, 3vw, 42px);
  border: 2px solid #f2f2f2;
  background: #000000;
  color: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.nt-mini-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.nt-mini-main {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.nt-mini-info-row {
  min-width: 0;
  height: auto;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.nt-mini-cover-link {
  width: 56px;
  min-width: 56px;
  max-width: 56px;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  aspect-ratio: 1 / 1;
  align-self: center;
  border: 2px solid #f2f2f2;
  background: #000000;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.nt-mini-cover {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center;
}

.nt-mini-text-group {
  min-width: 0;
  min-height: 52px;
  height: auto;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: center;
  gap: 2px;
}

.nt-mini-title {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-family: var(--pod-font-expanded, var(--font-sf-expanded));
  font-size: clamp(14px, 2.2vw, 24px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nt-mini-meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.nt-mini-meta,
.nt-mini-time {
  font-family: var(--pod-font-mono, var(--font-sf-mono));
  font-size: clamp(10px, 1.3vw, 13px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #c8c8c8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nt-mini-time {
  color: #f2f2f2;
  flex: 0 0 auto;
  margin-left: auto;
  text-align: right;
  padding-left: 10px;
}

.nt-mini-progress-wrap {
  position: relative;
  min-height: 10px;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.nt-mini-progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 16px;
  background: transparent;
  margin: 0;
}

.nt-mini-progress::-webkit-slider-runnable-track {
  height: 4px;
  border: 1px solid #f2f2f2;
  background: #000000;
  border-radius: 0;
}

.nt-mini-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 16px;
  border: 1px solid #f2f2f2;
  background: #f2f2f2;
  margin-top: -7px;
  border-radius: 0;
}

.nt-mini-progress::-moz-range-track {
  height: 4px;
  border: 1px solid #f2f2f2;
  background: #000000;
  border-radius: 0;
}

.nt-mini-progress::-moz-range-thumb {
  width: 10px;
  height: 16px;
  border: 1px solid #f2f2f2;
  background: #f2f2f2;
  border-radius: 0;
}

.nt-mini-actions {
  display: inline-flex;
  gap: 6px;
}

.nt-mini-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(34px, 3vw, 42px);
  height: clamp(34px, 3vw, 42px);
  padding: 0;
  border: 2px solid #f2f2f2;
  color: inherit;
  text-decoration: none;
  background: #000000;
  cursor: pointer;
}

.nt-mini-icon-btn svg {
  display: block;
}

.nt-mini-btn:hover,
.nt-mini-btn:focus-visible,
.nt-mini-icon-btn:hover,
.nt-mini-icon-btn:focus-visible {
  background: #f2f2f2;
  color: #000000;
  outline: none;
}

@media (max-width: 1024px) {
  .nt-mini-meta {
    display: none;
  }
}

.podcast-list-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid #000000;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.podcast-list-label {
  margin: 0;
  font-family: var(--pod-font-condensed);
  font-size: clamp(24px, 2.2vw, 40px);
  line-height: 0.93;
  letter-spacing: -0.03em;
  font-weight: 640;
}

.podcast-list-meta {
  margin: 0;
  font-family: var(--pod-font-mono);
  font-size: clamp(11px, 0.84vw, 13px);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.podcast-episodes {
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #000000;
  margin-top: 0;
}

.podcast-episode-item {
  border: 0;
  border-top: 1px solid #000000;
  background: transparent;
  color: #000000;
  width: 100%;
  padding: clamp(8px, 1.1vw, 16px) 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 2vw, 34px);
  text-align: left;
}

.podcast-episode-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.podcast-episode-item:hover,
.podcast-episode-item:focus-visible,
.podcast-episode-item.is-active {
  background: #000000;
  color: #ffffff;
  outline: none;
}

.podcast-episode-title {
  font-family: var(--pod-font-expanded);
  font-size: clamp(26px, 1.9vw, 36px);
  letter-spacing: -0.01em;
  line-height: 1.08;
  font-weight: 560;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.podcast-episode-meta {
  font-family: var(--pod-font-condensed);
  font-size: clamp(26px, 1.9vw, 36px);
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-transform: none;
  font-weight: 540;
  white-space: nowrap;
  text-align: right;
  min-width: 5.2ch;
}

@media (max-width: 1400px) {
  .podcast-shell {
    grid-template-columns: minmax(320px, 0.95fr) minmax(460px, 1.2fr);
  }
}

@media (max-width: 1180px) {
  .podcast-shell {
    grid-template-columns: 1fr;
  }

  .podcast-now-summary {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .podcast-entry-main {
    font-size: clamp(23px, 6.2vw, 36px);
  }

  .podcast-entry-action {
    font-size: clamp(14px, 3.7vw, 18px);
  }
}

.wuxi-link {
  color: #000000;
  text-decoration: none;
  transition: color 520ms cubic-bezier(0.2, 0.75, 0.22, 1);
}

.itinerary-page {
  background: var(--bg);
}

.itinerary-copy {
  padding: clamp(52px, 6vw, 110px) clamp(20px, 3.5vw, 62px)
    clamp(60px, 8vw, 120px);
}

.itinerary-shell {
  width: min(1600px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(640px, 1.3fr) minmax(360px, 0.7fr);
  gap: clamp(26px, 2.6vw, 50px);
  align-items: start;
}

.itinerary-panel {
  border: 2px solid #000000;
  background: #e8e8e8;
  padding: clamp(24px, 2.8vw, 42px);
}

.itinerary-head {
  margin-bottom: 18px;
}

.itinerary-title {
  margin: 0;
  font-family: var(--font-sf-expanded);
  font-size: clamp(34px, 3.4vw, 60px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 650;
}

.itinerary-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  padding: 14px 0;
}

.itinerary-controls-main {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.itinerary-control {
  display: grid;
  gap: 6px;
}

.itinerary-control-label {
  font-family: var(--font-sf-mono);
  font-size: clamp(11px, 0.84vw, 13px);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.itinerary-input,
.itinerary-select {
  width: 100%;
  border: 1px solid #000000;
  border-radius: 0;
  background: #ffffff;
  color: #000000;
  min-height: 42px;
  padding: 0 10px;
  font-family: var(--font-sf-expanded);
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.itinerary-input:focus-visible,
.itinerary-select:focus-visible {
  outline: 0;
  background: #000000;
  color: #ffffff;
}

.itinerary-days {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #000000;
}

.itinerary-day-card {
  border-top: 1px solid #000000;
  padding: 14px 0 16px;
  display: grid;
  gap: 10px;
}

.itinerary-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.itinerary-day-label {
  font-family: var(--font-sf-condensed);
  font-size: clamp(24px, 1.9vw, 34px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.itinerary-spots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.itinerary-location-field {
  position: relative;
}

.itinerary-suggest-panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  z-index: 120;
  border: 1px solid #000000;
  border-top: 0;
  background: #ffffff;
  max-height: 220px;
  overflow-y: auto;
  display: none;
}

.itinerary-suggest-panel.is-open {
  display: block;
}

.itinerary-suggest-item {
  width: 100%;
  border: 0;
  border-top: 1px solid #000000;
  padding: 8px 10px;
  background: #ffffff;
  color: #000000;
  text-align: left;
  font-family: var(--font-sf-pro);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.itinerary-suggest-item:first-child {
  border-top: 0;
}

.itinerary-suggest-item:hover,
.itinerary-suggest-item:focus-visible {
  background: #000000;
  color: #ffffff;
  outline: none;
}

.itinerary-spot-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.itinerary-day-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.itinerary-btn {
  border: 1px solid #000000;
  background: #000000;
  color: #ffffff;
  border-radius: 0;
  font-family: var(--font-sf-expanded);
  font-size: clamp(14px, 1.02vw, 18px);
  font-weight: 580;
  letter-spacing: -0.02em;
  line-height: 1;
  padding: 9px 12px;
  text-transform: uppercase;
}

.itinerary-btn:hover,
.itinerary-btn:focus-visible {
  background: #ffffff;
  color: #000000;
  outline: none;
}

.itinerary-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.itinerary-btn-ghost {
  background: transparent;
  color: #000000;
}

.itinerary-output-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 2px solid #000000;
  padding-bottom: 10px;
}

.itinerary-output-label {
  font-family: var(--font-sf-condensed);
  font-size: clamp(24px, 2.1vw, 38px);
  line-height: 0.93;
  letter-spacing: -0.03em;
  font-weight: 640;
}

.itinerary-output-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.itinerary-report-actions {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.itinerary-output-inline {
  margin-top: 2px;
}

.itinerary-output-block {
  display: grid;
  gap: 6px;
}

.itinerary-output-title,
.itinerary-output-empty {
  margin: 0;
  font-family: var(--font-sf-mono);
  font-size: clamp(11px, 0.84vw, 13px);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.itinerary-output-link {
  border: 1px solid #000000;
  text-decoration: none;
  color: #000000;
  padding: 8px 10px;
  font-family: var(--font-sf-expanded);
  font-size: clamp(16px, 1.2vw, 24px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  background: transparent;
}

.itinerary-output-link:hover,
.itinerary-output-link:focus-visible {
  background: #000000;
  color: #ffffff;
  outline: none;
}

.itinerary-report-wrap {
  margin-top: 24px;
  border: 2px solid #000000;
  background: #e8e8e8;
  padding: clamp(22px, 2.4vw, 34px);
}

.itinerary-report {
  display: grid;
  gap: 18px;
}

.itinerary-report-head {
  display: grid;
  gap: 8px;
  border-bottom: 2px solid #000000;
  padding-bottom: 10px;
}

.itinerary-report-title {
  margin: 0;
  font-family: var(--font-sf-expanded);
  font-size: clamp(30px, 2.7vw, 48px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 650;
}

.itinerary-report-meta {
  margin: 0;
  font-family: var(--font-sf-mono);
  font-size: clamp(11px, 0.84vw, 13px);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.itinerary-report-day {
  border: 1px solid #000000;
  background: #f2f2f2;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.itinerary-report-day-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.itinerary-report-day-title {
  margin: 0;
  font-family: var(--font-sf-expanded);
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 0.93;
  letter-spacing: -0.03em;
  font-weight: 620;
}

.itinerary-report-empty {
  margin: 0;
  font-family: var(--font-sf-pro);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.itinerary-report-list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 4px;
  font-family: var(--font-sf-pro);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.itinerary-report-map {
  width: 100%;
  height: clamp(220px, 30vh, 340px);
  border: 1px solid #000000;
  background: #d8d8d8;
}

.itinerary-report-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.itinerary-map-index {
  border: 1px solid #000000;
  border-radius: 0;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-sf-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 0 3px;
}

@media (max-width: 1180px) {
  .itinerary-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .itinerary-controls-main {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-nav,
  .hero,
  .accent-bar,
  .site-footer,
  .dot-cursor,
  .itinerary-editor,
  .itinerary-output,
  .nt-mini-player,
  .nt-site-loader {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .itinerary-copy {
    padding: 0 !important;
  }

  .itinerary-shell {
    display: block !important;
    width: 100% !important;
  }

  .itinerary-report-wrap {
    border: 0;
    padding: 0;
    margin: 0;
    background: #ffffff;
  }

  .itinerary-report-day {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .itinerary-report-map {
    height: 320px;
  }
}

.wuxi-link:hover,
.wuxi-link:focus-visible {
  color: #0000ff;
}

.studio-mark {
  display: inline-block;
  cursor: default;
}

.studio-mark .mark-char {
  display: inline-block;
}

.studio-mark .mark-char.mark-space {
  width: 0.32em;
}

.studio-mark .mark-char.font-a {
  font-family: var(--font-sf-pro);
  font-stretch: normal;
  font-variation-settings: "wdth" 100, "wght" 900;
  font-weight: 900;
}

.studio-mark .mark-char.font-b {
  font-family: var(--font-sf-expanded);
  font-stretch: expanded;
  font-variation-settings: "wdth" 125, "wght" 900;
  font-weight: 900;
}

.studio-mark .mark-char.font-c {
  font-family: var(--font-sf-condensed);
  font-stretch: condensed;
  font-variation-settings: "wdth" 75, "wght" 900;
  font-weight: 900;
}

.studio-mark .mark-char.font-d {
  font-family: var(--font-sf-pro);
  font-variation-settings: "wdth" 90, "wght" 400;
  font-weight: 400;
}

.studio-mark .mark-char.font-e {
  font-family: var(--font-sf-pro);
  font-stretch: normal;
  font-variation-settings: "wdth" 100, "wght" 100;
  font-weight: 100;
}

.accent-bar {
  position: relative;
  z-index: 60;
  width: 100%;
  height: var(--accent-h);
  background: var(--accent);
}

.accent-bar::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.site-footer {
  --footer-brand-size: clamp(104px, 16vw, 280px);
  --footer-link-size: clamp(38px, 5.2vw, 82px);
  background: #000000;
  color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  min-height: clamp(240px, 30vw, 420px);
  padding: 0 0 0 clamp(18px, 2vw, 28px);
  background-image: none;
}

.social-link {
  --arrow-size: var(--footer-link-size);
  min-height: 0;
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
  justify-content: flex-end;
  gap: clamp(8px, 0.9vw, 12px);
  color: inherit;
  text-decoration: none;
  padding: 0;
}

.social-name {
  font-family: var(--font-sf-pro);
  font-size: var(--footer-link-size);
  line-height: 1;
  font-weight: 320;
  letter-spacing: -0.045em;
  font-style: normal;
  text-align: right;
  white-space: nowrap;
}

.social-arrow {
  display: inline-flex;
  flex: 0 0 var(--arrow-size);
  width: var(--arrow-size);
  height: var(--arrow-size);
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.social-arrow-icon {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: butt;
  stroke-linejoin: miter;
}

.podcast-side-actions {
  position: fixed;
  right: clamp(12px, 1.9vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1800;
  display: block;
  transition: opacity 180ms ease, transform 180ms ease;
}

.podcast-side-actions.is-hidden {
  opacity: 0;
  transform: translateY(calc(-50% + 10px));
  pointer-events: none;
}

.podcast-side-strip {
  display: inline-flex;
  align-items: stretch;
  border: 2px solid #000000;
  background: #000000;
  color: #f2f2f2;
}

.podcast-side-icon {
  font-family: var(--font-sf-pro);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.podcast-side-btn {
  width: clamp(56px, 4.6vw, 72px);
  height: clamp(46px, 4vw, 60px);
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.podcast-side-btn + .podcast-side-btn {
  border-left: 2px solid #f2f2f2;
}

.podcast-side-btn-link {
  color: inherit;
}

.podcast-side-btn:hover,
.podcast-side-btn:focus-visible {
  background: #f2f2f2;
  color: #000000;
  outline: none;
}

.footer-copy {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0;
  font-family: var(--font-sf-pro);
  line-height: 1;
  font-style: normal;
  text-transform: none;
}

.footer-copy-meta {
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 320;
  letter-spacing: -0.03em;
  opacity: 0.56;
}

.footer-copy-brand {
  display: block;
  font-size: var(--footer-brand-size);
  line-height: 0.82;
  font-weight: 280;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.console-copy {
  padding: clamp(24px, 3vw, 44px) clamp(16px, 2vw, 24px) clamp(40px, 4vw, 72px);
}

.console-shell {
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
}

.console-access-panel,
.console-summary-card,
.console-panel {
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  background: #e8e8e8;
}

.console-access-panel {
  min-height: min(44vw, 420px);
  padding: clamp(18px, 2vw, 28px);
  display: grid;
  align-content: space-between;
  gap: 20px;
}

.console-panel-kicker,
.console-summary-label {
  display: block;
  font-family: var(--font-sf-mono);
  font-size: clamp(11px, 0.74vw, 13px);
  line-height: 1.15;
  letter-spacing: 0.1em;
}

.console-panel-title {
  margin: 0;
  font-family: var(--font-sf-expanded);
  font-size: clamp(40px, 4.6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.08em;
  font-weight: 620;
}

.console-token-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.console-token-input,
.console-token-button {
  min-height: 60px;
  border: 1px solid #000000;
  border-radius: 0;
  background: #f2f2f2;
  color: #000000;
  font-family: var(--font-sf-mono);
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 0 16px;
}

.console-token-input:focus-visible,
.console-token-button:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

.console-token-button {
  min-width: 124px;
  font-family: var(--font-sf-expanded);
  font-size: 24px;
  letter-spacing: -0.05em;
  cursor: pointer;
}

.console-access-error {
  margin: 0;
  font-family: var(--font-sf-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.console-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.console-summary-card {
  min-height: 220px;
  padding: clamp(18px, 2vw, 24px);
  display: grid;
  align-content: space-between;
  gap: 16px;
}

.console-summary-value {
  display: block;
  font-family: var(--font-sf-expanded);
  font-size: clamp(56px, 7vw, 136px);
  line-height: 0.82;
  letter-spacing: -0.09em;
}

.console-summary-value.is-small {
  font-family: var(--font-sf-pro);
  font-size: clamp(26px, 2.4vw, 44px);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.console-panels-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.console-panel {
  padding: clamp(18px, 2vw, 24px);
  display: grid;
  gap: 18px;
}

.console-panel-head {
  display: grid;
  gap: 10px;
}

.console-table-wrap {
  min-height: 0;
  overflow: auto;
}

.console-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.console-table th,
.console-table td {
  border-top: 1px solid #000000;
  padding: 11px 10px;
  text-align: left;
  vertical-align: top;
  font-family: var(--font-sf-mono);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  word-break: break-word;
}

.console-table th {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.console-table-empty {
  color: #666666;
}

.console-table td.is-online {
  color: #0d7a00;
}

.console-table td.is-offline {
  color: #5f5f5f;
}

.mobile-desktop-notice {
  display: none;
  min-height: 100vh;
  background: var(--bg);
  color: #000000;
  font-family: var(--font-sf-pro);
}

.mobile-desktop-notice-inner {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.mobile-desktop-notice-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  width: 100%;
  color: #000000;
  font-size: clamp(24px, 7vw, 42px);
  line-height: 1;
  letter-spacing: -0.1em;
}

.mobile-desktop-notice-nav span:first-child {
  justify-self: start;
}

.mobile-desktop-notice-nav span:nth-child(2) {
  justify-self: center;
}

.mobile-desktop-notice-nav span:last-child {
  justify-self: end;
}

.mobile-desktop-notice-bar {
  width: 100%;
  height: var(--accent-h);
  background: var(--accent);
}

.mobile-desktop-notice-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: clamp(22px, 7vw, 46px) clamp(12px, 4vw, 22px);
}

.mobile-desktop-notice-title,
.mobile-desktop-notice-text {
  margin: 0;
  letter-spacing: -0.1em;
  line-height: 0.95;
}

.mobile-desktop-notice-title {
  font-size: clamp(34px, 10vw, 64px);
  font-weight: 500;
}

.mobile-desktop-notice-text {
  font-size: clamp(20px, 5.8vw, 36px);
  font-weight: 300;
}

html.is-mobile-blocked body > :not(.mobile-desktop-notice) {
  display: none !important;
}

html.is-mobile-blocked .mobile-desktop-notice {
  display: block;
}

@media (max-width: 900px) {
  .nav-link {
    font-size: clamp(20px, 6vw, 32px);
  }

  .hero-copy {
    gap: 12px;
    padding: 24px 12px 24px 22px;
  }

  .hero-text {
    font-size: clamp(19px, 6.2vw, 34px);
    line-height: 1;
  }

  .hero-logo-svg {
    width: 100%;
  }

  .events-head {
    font-size: clamp(14px, 3.5vw, 19px);
  }

  .maps-shell-section {
    padding: 0;
    min-height: calc(100vh - var(--accent-h));
  }

  .maps-shell {
    min-height: 0;
  }

  .maps-stage-frame,
  .maps-stage {
    min-height: calc(100vh - var(--accent-h));
  }

  .maps-fab-stack {
    right: 12px;
    bottom: 12px;
  }

  .maps-fab {
    width: 52px;
    height: 52px;
  }

  .maps-fab svg {
    width: 24px;
    height: 24px;
  }

  .maps-user-marker {
    width: 46px;
    height: 66px;
  }

  .maps-search-marker {
    width: 52px;
    height: 74px;
  }

  .maps-search-dock {
    left: 12px;
    bottom: 12px;
    width: min(300px, calc(100vw - 84px));
  }

  .maps-search-form {
    grid-template-columns: minmax(0, 1fr) 52px;
  }

  .maps-search-input {
    font-size: 16px;
    padding: 14px 12px 12px;
  }

  .maps-search-submit svg {
    width: 22px;
    height: 22px;
  }

  .maps-info-drawer.is-open {
    width: min(248px, calc(100vw - 76px));
    padding: 9px 10px 8px;
  }

  .maps-info-list {
    min-width: 0;
  }

  .maps-info-link {
    font-size: 13px;
  }
}

/* Works Blackout Content */
.works-atlas-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8vw 4vw;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 1010;
  /* Simple fade in for the container, content will type */
  transition: opacity 0.4s ease;
}

.works-blackout-layer.is-run .works-atlas-content.is-visible {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.2s;
}

.atlas-text-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
}

.atlas-lead {
  font-family: var(--font-sf-pro);
  font-weight: 400; /* Slightly bolder for visibility */
  font-size: clamp(42px, 5vw, 80px); /* Bigger */
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.1em;
  /* Removed animations */
  min-height: 1.1em; /* Prevent layout shift */
}

/* Fallback for font-weight: 100 on standard fonts */
@supports not (font-weight: 100) {
  .atlas-lead {
    font-weight: 400;
  }
}

.atlas-detail {
  font-family: var(--font-sf-pro);
  font-weight: 300; /* Light */
  font-size: clamp(20px, 1.6vw, 24px); /* Bigger */
  line-height: 1.5;
  max-width: 90%;
  margin: 0;
  color: #cccccc;
  /* Removed animations */
  min-height: 1.5em; /* Prevent layout shift */
}

.type-cursor::after {
  content: "|";
  display: inline-block;
  color: var(--accent);
  animation: blink-caret 1s step-end infinite;
  margin-left: 2px;
  font-weight: 400;
}

@keyframes blink-caret {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .works-atlas-content {
    width: 100%;
    height: auto;
    bottom: 0;
    top: auto;
    padding: 24px 24px 48px;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 100%
    );
    align-items: flex-end;
  }
}

/* =========================================================================
   JOURNAL PREVIEW (BRUTALIST & SWISS STYLE)
   ========================================================================= */

.journal-page {
  padding-top: clamp(64px, 12vh, 120px);
  background: var(--bg);
  min-height: 100vh;
}

.journal-wrapper {
  color: var(--ink);
  padding-bottom: clamp(64px, 12vh, 120px);
}

.journal-marquee {
  border-top: 4px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
  font-family:
    ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono",
    monospace;
  font-size: clamp(14px, 1.5vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 0;
  display: flex;
  align-items: center;
  background: var(--bg);
}

.journal-marquee-inner {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.journal-marquee span {
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
}

.journal-grid-item {
  border-bottom: 2px solid var(--ink);
  padding: clamp(24px, 3vw, 48px);
}

.journal-grid-title {
  grid-column: span 12;
  padding: clamp(32px, 5vw, 80px) clamp(24px, 3vw, 48px);
}

.journal-meta-tag {
  font-family: var(--font-sf-pro);
  font-size: clamp(12px, 1.2vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: clamp(24px, 6vw, 64px);
  font-weight: 700;
}

.journal-grid-title h1 {
  margin: 0;
  font-family: var(--font-sf-pro);
  font-size: clamp(64px, 16vw, 240px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 0.85;
  text-transform: lowercase;
  color: var(--ink);
  margin-left: -0.05em;
}

.journal-grid-info {
  grid-column: span 4;
  border-right: 2px solid var(--ink);
  font-family: var(--font-sf-pro);
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
}

.info-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.journal-grid-lead {
  grid-column: span 8;
  font-family: var(--font-sf-pro);
  font-size: clamp(24px, 3.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}

.journal-grid-lead p {
  margin: 0;
  max-width: 28ch;
}

.journal-grid-body {
  grid-column: span 6;
  border-right: 2px solid var(--ink);
  font-family: var(--font-sf-pro);
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.4;
  font-weight: 400;
  column-count: 2;
  column-gap: clamp(24px, 4vw, 64px);
}

.journal-grid-body p {
  margin: 0 0 1.2em 0;
  text-align: justify;
}

.journal-grid-figure {
  grid-column: span 6;
  background: var(--bg);
  position: relative;
  min-height: 50vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.journal-grid-figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
}

.figure-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.figure-placeholder svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.figure-label {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 16px;
  font-family: var(--font-sf-pro);
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.journal-grid-footer {
  grid-column: span 12;
  display: flex;
  align-items: center;
  padding: clamp(32px, 5vw, 80px) clamp(24px, 3vw, 48px);
}

.journal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-sf-pro);
  font-size: clamp(24px, 4vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  transition: opacity 300ms;
}

.journal-back-link:hover {
  opacity: 0.5;
}

@media (max-width: 900px) {
  .journal-grid-info,
  .journal-grid-lead,
  .journal-grid-body,
  .journal-grid-figure {
    grid-column: span 12;
    border-right: none;
  }
  .journal-grid-body {
    column-count: 1;
  }
  .journal-grid-figure {
    min-height: 40vh;
  }
}

/* =========================================================================
   JOURNAL ARTICLE 01
   ========================================================================= */

.journal-article-page {
  min-height: 100vh;
  padding-top: clamp(68px, 10vh, 112px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent 22%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(8.333% - 1px),
      rgba(0, 0, 0, 0.08) calc(8.333% - 1px),
      rgba(0, 0, 0, 0.08) 8.333%
    ),
    var(--bg);
}

.journal-article-shell {
  padding: 0 0 clamp(80px, 10vw, 140px);
}

.journal-article-marquee {
  border-top: 4px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: clamp(12px, 1.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  padding: 14px 0 12px;
}

.journal-article-marquee-track {
  display: inline-block;
  min-width: 200%;
  animation: marquee 18s linear infinite;
}

.journal-article-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100%;
}

.journal-article-block {
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: clamp(20px, 2.4vw, 36px);
}

.journal-article-block.edge-free {
  border-right: none;
}

.journal-article-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journal-article-hero {
  grid-column: 1 / -1;
  padding: clamp(24px, 3vw, 44px);
}

.journal-article-hero-top {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  border-bottom: 2px solid var(--ink);
  padding-bottom: clamp(18px, 3vw, 30px);
}

.journal-article-stamp {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.journal-article-stamp span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(82px, 8vw, 118px);
  height: clamp(82px, 8vw, 118px);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.journal-article-headline {
  grid-column: span 10;
}

.journal-article-headline h1 {
  margin: 0;
  font-size: clamp(58px, 11vw, 168px);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: -0.08em;
  font-style: italic;
  font-weight: 700;
  max-width: 10.5ch;
}

.journal-article-subgrid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
}

.journal-article-meta {
  grid-column: span 3;
  border-right: 2px solid var(--ink);
  padding-top: clamp(18px, 2vw, 28px);
}

.journal-article-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.journal-article-meta-row:last-child {
  border-bottom: none;
}

.journal-article-intro {
  grid-column: span 9;
  padding: clamp(18px, 2vw, 28px) 0 0 clamp(24px, 3vw, 34px);
}

.journal-article-intro p {
  margin: 0;
  max-width: 23ch;
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.journal-article-route {
  grid-column: span 7;
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.journal-article-route svg,
.journal-article-graphic svg,
.journal-article-spectra svg {
  width: 100%;
  height: auto;
  display: block;
}

.journal-article-route-note {
  margin: 18px 0 0;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.journal-article-summary {
  grid-column: span 5;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: #dcdcdc;
}

.journal-article-stat {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding-top: 10px;
  border-top: 2px solid var(--ink);
}

.journal-article-stat:first-of-type {
  border-top: none;
  padding-top: 0;
}

.journal-article-stat-value {
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 700;
}

.journal-article-stat-copy {
  font-size: clamp(15px, 1.35vw, 21px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.journal-article-body {
  grid-column: span 4;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.26;
  letter-spacing: -0.03em;
}

.journal-article-body p,
.journal-article-caption p {
  margin: 0 0 1em;
  text-wrap: pretty;
}

.journal-article-graphic {
  grid-column: span 4;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.08), transparent 55%),
    #d5d5d5;
  min-height: 54vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journal-article-caption {
  grid-column: span 4;
  background: #0f0f0f;
  color: #ededed;
}

.journal-article-caption .journal-article-kicker {
  color: var(--accent);
}

.journal-article-full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  padding: 0;
}

.journal-article-wide-copy {
  grid-column: span 7;
  padding: clamp(20px, 2.4vw, 36px);
  border-right: 2px solid var(--ink);
}

.journal-article-wide-copy p {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 21ch;
}

.journal-article-spectra {
  grid-column: span 5;
  padding: clamp(20px, 2.4vw, 36px);
  background: #101010;
  color: #ededed;
}

.journal-article-spectra .journal-article-kicker {
  color: var(--accent);
}

.journal-article-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3vw, 44px);
}

.journal-article-footer-note {
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-article-back {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.journal-article-back:hover,
.journal-article-back:focus-visible {
  opacity: 0.55;
}

@media (max-width: 960px) {
  .journal-article-stamp,
  .journal-article-headline,
  .journal-article-meta,
  .journal-article-intro,
  .journal-article-route,
  .journal-article-summary,
  .journal-article-body,
  .journal-article-graphic,
  .journal-article-caption,
  .journal-article-wide-copy,
  .journal-article-spectra {
    grid-column: 1 / -1;
  }

  .journal-article-block,
  .journal-article-meta,
  .journal-article-wide-copy {
    border-right: none;
  }

  .journal-article-hero-top {
    row-gap: 16px;
  }

  .journal-article-intro {
    padding-left: 0;
  }

  .journal-article-route,
  .journal-article-graphic {
    min-height: auto;
  }

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

/* =========================================================================
   POLKA CONTENT (ZARA-inspired Minimal Style)
   ========================================================================= */

.works-polka-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8vw 4vw;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 1010;
  transition: opacity 0.4s ease;
}
.works-polka-content::-webkit-scrollbar {
  display: none;
}

.works-blackout-layer.is-run .works-polka-content.is-visible {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.4s;
}

.polka-grid {
  width: 100%;
  max-width: 720px;
}

.polka-text-block {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.polka-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.polka-title {
  font-family: var(--font-sf-pro);
  font-weight: 300;
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #666;
  margin: 0;
}

.polka-patterns {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
}

.polka-pattern-tag {
  font-family: var(--font-sf-pro);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em;
  color: #fff;
  padding: 0 0 16px 0;
  margin-right: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.3s ease;
}

.polka-pattern-tag:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.polka-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0;
}

.polka-profile-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.polka-section-label {
  font-family: var(--font-sf-pro);
  font-weight: 300;
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #444;
  margin: 0;
}

.polka-profile-name {
  font-family: var(--font-sf-pro);
  font-weight: 300;
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.polka-profile-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.polka-profile-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.polka-profile-detail h4 {
  font-family: var(--font-sf-pro);
  font-weight: 300;
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #555;
  margin: 0;
}

.polka-profile-detail p {
  font-family: var(--font-sf-pro);
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.8;
  color: #aaa;
  margin: 0;
  max-width: 520px;
}

@media (max-width: 768px) {
  .works-polka-content {
    left: 0;
    padding: 100px 24px 48px;
  }
  
  .polka-text-block {
    gap: 48px;
  }
  
  .polka-pattern-tag {
    font-size: clamp(24px, 6vw, 36px);
    margin-right: 24px;
    padding-bottom: 12px;
  }
  
  .polka-profile-details {
    gap: 32px;
  }
}


/* ==========================================================================
   POLKA APP SHELL
   ========================================================================== */

.polka-app {
  --polka-paper: #f2e6d3;
  --polka-ink: #2d2118;
  --polka-header: #8e454d;
  --accent-h: clamp(54px, 6vw, 72px);
  /* Very fine, monochromatic noise for fabric */
  --polka-fabric-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.0' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  --polka-ink-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  /* Extremely subtle, low-frequency monochrome shifts for uneven ink */
  --polka-ink-clouds: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.03' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background: var(--polka-paper);
  color: var(--polka-ink);
  -webkit-font-smoothing: antialiased;
}

.polka-app .page {
  background: transparent;
}

.polka-app .site-nav {
  mix-blend-mode: normal;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
  border-bottom: none !important;
  box-shadow: none !important;
}

.polka-app .site-nav.on-accent,
.polka-app .site-nav.on-accent-bottom {
  background: transparent;
}

.polka-app .site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--polka-header);
  background-image:
    radial-gradient(circle at 28% 24%, rgba(255, 241, 221, 0.05), transparent 30%),
    radial-gradient(circle at 70% 68%, rgba(63, 25, 30, 0.06), transparent 34%),
    var(--polka-fabric-grain);
  background-size: auto, auto, 200px 200px;
  background-blend-mode: screen, multiply, soft-light;
}

.polka-app .nav-link,
.polka-app .site-nav.on-accent .nav-link {
  position: relative;
  z-index: 1;
  color: var(--polka-paper);
  text-shadow: none;
}

.polka-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.polka-accent-bar {
  height: var(--accent-h);
  background: transparent;
}

.polka-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(80px, 11vh, 112px) 24px 36px;
  box-sizing: border-box;
  overflow: visible;
  isolation: isolate;
  background-color: var(--polka-paper);
  background-image:
    /* Directional fabric weave - vertical */
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.015) 0, transparent 1px, transparent 3px),
    /* Directional fabric weave - horizontal */
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.015) 0, rgba(255, 255, 255, 0.015) 1px, transparent 2px, transparent 4px),
    /* Micro grain noise, strictly grayscale */
    var(--polka-fabric-grain);
  background-size: auto, auto, 200px 200px;
  background-blend-mode: normal, normal, multiply;
}

.polka-workbench {
  position: relative;
  z-index: 1;
  width: min(50vw, 760px);
  max-width: calc(100vw - 32px);
  padding-top: clamp(18px, 3vw, 28px);
}

.polka-device-toolbar {
  position: absolute;
  top: calc(-1 * clamp(28px, 3.2vw, 36px));
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  transform: translateX(-50%);
}

.polka-device-launcher {
  position: absolute;
  left: 50%;
  top: -18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateX(-50%);
  cursor: pointer;
}

.polka-device-launcher-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: rgba(45, 33, 24, 0.9);
}

.polka-device-launcher-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.polka-device-launcher-core {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(68, 39, 30, 0.14);
  background: var(--polka-launcher-color, #b45758);
  box-shadow: 0 10px 22px rgba(56, 33, 26, 0.08);
}

.polka-device-dropdown {
  position: relative;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    max-width 180ms ease,
    margin 180ms ease;
}

.polka-device-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: clamp(144px, 12vw, 188px);
  height: 32px;
  padding: 0 10px 0 14px;
  border: 1px solid rgba(68, 39, 30, 0.14);
  border-radius: 999px;
  background: var(--polka-pill-color, rgba(255, 251, 245, 0.92));
  color: var(--polka-pill-ink, var(--polka-ink));
  font-family: var(--font-sf-condensed);
  font-size: 0.79rem;
  font-stretch: condensed;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(56, 33, 26, 0.08);
  backdrop-filter: blur(8px);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.polka-device-pill-label {
  overflow: hidden;
  text-overflow: ellipsis;
}

.polka-device-pill-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.polka-device-pill-caret svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.polka-device-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  gap: 4px;
  min-width: 100%;
  max-height: min(320px, 48vh);
  padding: 8px;
  border: 1px solid rgba(68, 39, 30, 0.14);
  border-radius: 20px;
  background: var(--polka-menu-color, rgba(255, 248, 239, 0.98));
  color: var(--polka-menu-ink, var(--polka-ink));
  box-shadow: 0 16px 38px rgba(54, 31, 24, 0.12);
  overflow-y: auto;
}

.polka-device-menu[hidden] {
  display: none;
}

.polka-device-option {
  width: 100%;
  min-height: 30px;
  padding: 7px 10px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
  text-align: left;
  font-family: var(--font-sf-condensed);
  font-size: 0.78rem;
  font-stretch: condensed;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition:
    background-color 140ms ease,
    transform 140ms ease;
}

.polka-device-option:hover,
.polka-device-option.is-selected {
  background: rgba(255, 255, 255, 0.38);
  transform: translateX(2px);
}

.polka-device-toolbar.is-collapsed .polka-device-dropdown {
  max-width: 0;
  min-width: 0;
  margin-left: -6px;
  margin-right: -6px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-10px);
}

.polka-device-toolbar:not(.is-collapsed) .polka-device-launcher {
  opacity: 0;
  pointer-events: none;
}

.polka-device-toolbar:not(.is-expanded) .polka-device-dropdown[data-dropdown="series"],
.polka-device-toolbar:not(.is-expanded) .polka-device-dropdown[data-dropdown="model"] {
  max-width: 0;
  min-width: 0;
  margin-left: -6px;
  margin-right: -6px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-10px);
}

.polka-device-pill:hover {
  border-color: rgba(68, 39, 30, 0.28);
  box-shadow: 0 10px 20px rgba(56, 33, 26, 0.12);
}

.polka-device-pill:focus-visible,
.polka-device-launcher:focus-visible,
.polka-device-option:focus-visible {
  border-color: rgba(142, 69, 77, 0.54);
  box-shadow: 0 0 0 3px rgba(180, 123, 113, 0.16);
}

.polka-device-canvas-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(540px, 80vh, 920px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.polka-device-canvas {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(68, 39, 30, 0.12);
  border-radius: clamp(18px, 2vw, 28px);
  background: #fff;
  box-shadow:
    0 18px 42px rgba(59, 35, 27, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.84);
}

.polka-device-canvas.is-landscape {
  border-radius: clamp(16px, 1.7vw, 24px);
}

.polka-device-canvas.is-portrait {
  border-radius: clamp(20px, 2.4vw, 32px);
}

.polka-random-field {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.polka-random-dot {
  position: absolute;
  display: block;
  border-radius: var(--polka-dot-radius);
  background-color: var(--polka-dot-color);
  
  /* Apply SVG bleed/edge filter to the main dot */
  filter: url(#polka-bleed-filter);
}

/* Subtle imperfection / Fabric weave showing through ink */
.polka-random-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.02);
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, transparent 1px, transparent 2px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0, rgba(0, 0, 0, 0.01) 1px, transparent 2px, transparent 3px),
    var(--polka-fabric-grain);
  mix-blend-mode: soft-light;
  background-size: auto, auto, 200px 200px;
}

/* Ink unevenness inside the color block */
.polka-random-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: var(--polka-ink-clouds);
  background-size: 300px 300px;
  mix-blend-mode: multiply;
}

.polka-filter-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.polka-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .polka-app {
    --accent-h: 50px;
  }

  .polka-stage {
    min-height: 100vh;
    padding: calc(72px + var(--nt-mobile-safe-top, 0px)) 16px 20px;
  }

  .polka-workbench {
    width: calc(100vw - 32px);
    padding-top: 60px;
  }

  .polka-device-toolbar {
    gap: 6px;
    max-width: calc(100vw - 32px);
  }

  .polka-device-launcher {
    top: -14px;
  }

  .polka-device-canvas-shell {
    min-height: clamp(470px, 70vh, 760px);
    padding: 0;
  }

  .polka-device-pill {
    min-width: 118px;
    max-width: calc((100vw - 44px) / 3);
    font-size: 0.72rem;
  }

  .polka-device-menu {
    max-height: 38vh;
  }
}

/* Polka Abstract Intro in works.html */
.works-polka-content .polka-abstract-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 4rem;
  box-sizing: border-box;
}
.polka-abstract-content {
  display: flex;
  gap: 4rem;
  max-width: 1000px;
  width: 100%;
  align-items: center;
}
.polka-abstract-visual {
  flex: 1;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
  position: relative;
  overflow: visible;
}
.polka-abstract-visual::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 80px 20px rgba(255, 255, 255, 0.2);
}
.polka-abstract-text {
  flex: 1;
  color: #fff;
}
.polka-abstract-subtitle {
  font-family: inherit;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.polka-abstract-title {
  font-family: "EB Garamond", Garamond, serif;
  font-size: 6rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 2rem 0;
}
.polka-abstract-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #999;
  margin-bottom: 3rem;
  max-width: 420px;
}
.polka-enter-action {
  margin-top: 2rem;
}
.polka-btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}
.polka-btn-detail:hover {
  border-bottom-color: #fff;
  gap: 1rem;
}
.polka-btn-detail .arrow {
  transition: transform 0.3s ease;
}
.polka-btn-detail:hover .arrow {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .polka-abstract-content {
    flex-direction: column;
    text-align: center;
  }
  .polka-abstract-visual {
    width: 200px;
    height: 200px;
  }
  .polka-abstract-visual::after {
    width: 30px;
    height: 30px;
  }
  .polka-abstract-title {
    font-size: 4rem;
  }
  .polka-abstract-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* BRUTALIST & SWISS STYLE REDESIGN (SF + OVERRIDES) */

/* Ensure text selections are pure brutalism (already mostly set, but reinforcing) */
.brutal-section {
  text-transform: uppercase;
  border-left: 4px solid var(--ink);
  border-right: 4px solid var(--ink);
  padding: 0 10px;
}

.brutal-section[aria-label="Events Calendar"], 
.brutal-section[aria-label="Journals"], 
.brutal-section[aria-label="Podcast"] {
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  margin-top: clamp(58px, 7vw, 124px);
  margin-bottom: 0;
}

.index-events.brutal-section,
.index-journals.brutal-section {
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.index-works.brutal-section {
  margin-top: clamp(58px, 7vw, 124px);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.index-works-head {
  display: flex;
  align-items: flex-end;
  line-height: 0.84;
  border-bottom: 4px solid var(--ink);
  padding-bottom: 12px;
}

.index-works-label {
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.05em;
  line-height: 0.8;
  transform: translateY(0.06em);
  margin-left: -0.045em;
}

.index-works-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.14fr);
  background: #d5d6d8;
}

.index-work-card,
.index-work-column {
  min-width: 0;
  min-height: clamp(236px, 27vw, 340px);
  border-left: 1px solid var(--ink);
}

.index-work-card,
.index-work-column,
.index-work-column-stack {
  display: flex;
  flex-direction: column;
}

.index-work-card {
  justify-content: space-between;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  padding: clamp(14px, 1.6vw, 20px);
  transition:
    background-color 180ms cubic-bezier(0.2, 0.75, 0.22, 1),
    color 180ms cubic-bezier(0.2, 0.75, 0.22, 1);
}

.index-work-card:hover,
.index-work-card:focus-visible {
  background: var(--bg);
  color: var(--ink);
}

.index-work-card.is-product {
  border-left: 0;
}

.index-work-card-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-weight: 340;
  font-size: clamp(40px, 4.4vw, 78px);
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.index-work-column {
  background: #efede7;
  color: var(--ink);
}

.index-work-column-stack {
  flex: 1 1 auto;
  min-height: 0;
}

.index-work-column-stack .index-work-card {
  flex: 1 1 0;
  min-height: 0;
  border-left: 0;
}

.index-work-column-stack .index-work-card + .index-work-card {
  border-top: 1px solid var(--bg);
}

/* Events */
.index-events.brutal-section .events-head {
  border-bottom: 4px solid var(--ink);
  padding-bottom: 12px;
  align-items: flex-end;
}
.index-events.brutal-section .events-label {
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.04em;
  line-height: 0.8;
  text-transform: uppercase;
}
.index-events.brutal-section .events-month {
  font-weight: 700;
  font-size: clamp(16px, 2vw, 24px);
  padding-bottom: 6px;
}
.index-events.brutal-section .event-item {
  border-bottom: 4px solid var(--ink);
  padding: 0.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.2s cubic-bezier(0.2, 0.75, 0.22, 1);
}
.index-events.brutal-section .event-item:last-child {
  border-bottom: 0;
}
.index-events.brutal-section .event-date {
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 36px);
  letter-spacing: -0.05em;
  margin: 0;
  white-space: nowrap;
}
.index-events.brutal-section .event-desc {
  position: static;
  text-align: right;
  font-weight: 900;
  font-size: clamp(24px, 3.5vw, 56px);
  letter-spacing: -0.05em;
  white-space: normal;
  max-width: 65%;
  line-height: 0.9;
}

/* Journals */
.index-journals.brutal-section .journals-head {
  border-bottom: 4px solid var(--ink);
  padding-bottom: 12px;
}
.index-journals.brutal-section .journals-label {
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.04em;
  line-height: 0.8;
  text-transform: uppercase;
}
.index-journals.brutal-section .journal-item {
  display: grid;
  grid-template-columns: min-content 1fr auto;
  align-items: center;
  width: 100%;
  border-bottom: 4px solid var(--ink);
  padding: 0.2rem 0;
  transition: all 0.2s cubic-bezier(0.2, 0.75, 0.22, 1);
}
.index-journals.brutal-section .journal-item:hover,
.index-journals.brutal-section .journal-item:focus-visible,
.index-journals.brutal-section .journal-item:active {
  background: var(--ink);
  color: var(--bg);
}
.index-journals.brutal-section .journal-item:last-child {
  border-bottom: 0;
}
.index-journals.brutal-section .journal-id {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  margin: 0;
}
.index-journals.brutal-section .journal-title {
  font-weight: 800; /* Heavy weight */
  font-style: normal; /* remove italics for sheer industrial feel */
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 72px);
  letter-spacing: -0.05em;
  margin: 0 2rem;
  text-align: left;
  line-height: 0.9;
}
.index-journals.brutal-section .journal-date {
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 36px);
}

/* Podcast */
.index-podcast.brutal-section {
  background: var(--ink);
  color: var(--bg);
  padding: 8px 10px;
}
.index-podcast.brutal-section .podcast-head {
  border-bottom: 4px solid var(--bg);
  padding-bottom: 12px;
}
.index-podcast.brutal-section .podcast-label {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: clamp(48px, 8vw, 120px);
  color: var(--bg);
  line-height: 0.8;
}
.index-podcast.brutal-section .podcast-live {
  font-weight: 500;
  color: #ff0000; /* Industrial Alert Red */
  border: 2px solid #ff0000;
  padding: 4px 12px;
  border-radius: 4px;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.index-podcast.brutal-section .podcast-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bg);
  padding: 0.2rem 0;
  margin-top: 1rem;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.2, 0.75, 0.22, 1);
}

.index-podcast.brutal-section .podcast-entry:hover,
.index-podcast.brutal-section .podcast-entry:focus-visible {
  background: var(--bg);
  color: var(--ink);
  outline: none;
}

.index-podcast.brutal-section .podcast-entry-main {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 92px);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.index-podcast.brutal-section .podcast-entry-action {
  font-weight: 700;
  font-size: clamp(24px, 3vw, 48px);
  padding: 8px 16px;
  border: 2px solid currentColor;
  border-radius: 40px; /* capsule for action */
}
