@font-face {
  font-family: Space;
  src: url("/fonts/space-grotesk-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Space;
  src: url("/fonts/space-grotesk-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  --ink: #272222;
  --paper: #fbf7ef;
  --coral: #ff6547;
  --blue: #3049ec;
  --purple: #b9a0fb;
  --border: 2px solid var(--ink);
  font-family: Space, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  color: inherit;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #152ed6;
  outline-offset: 5px;
}
button:focus:not(:focus-visible) {
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  display: block;
}
p,
h1,
h2 {
  margin: 0;
}
button[hidden],
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: 12px;
  transform: translateY(-150%);
  z-index: 999;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  border-radius: 4px;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 96px;
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 48px;
}
.brand {
  display: flex;
  align-items: baseline;
  font-size: 33px;
  letter-spacing: -2px;
  font-weight: 700;
}
.brand span {
  font-weight: 400;
  font-size: 27px;
  letter-spacing: -1.8px;
}
.brand i {
  width: 11px;
  height: 11px;
  margin-left: 6px;
  background: var(--coral);
  border-radius: 50%;
}
.header-caption {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-left: 35px;
}
.github-link {
  font-size: 13px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 10px 17px;
  display: flex;
  gap: 26px;
  align-items: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.github-link:hover {
  background: var(--ink);
  color: var(--paper);
}
.github-link > span[aria-hidden] {
  font-size: 21px;
  line-height: 1;
}
.intro {
  padding: 44px 48px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 1.4px;
  margin-bottom: 16px;
}
.tiny-square {
  width: 6px;
  height: 6px;
  background: var(--coral);
}
h1 {
  font-size: clamp(42px, 5.7vw, 86px);
  font-weight: 700;
  letter-spacing: -0.067em;
  line-height: 1.05;
}
.mobile-break {
  display: none;
}
.title-last {
  position: relative;
  display: inline-block;
  color: var(--blue);
}
.title-last svg {
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 16px;
  stroke: var(--coral);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
}
.intro-note {
  display: flex;
  align-items: center;
  gap: 14px;
  transform: rotate(5deg);
  padding: 5px 30px 0 0;
}
.intro-note p {
  font-size: 14px;
  line-height: 1.6;
}
.note-arrow {
  font-size: 54px;
  color: var(--coral);
  line-height: 1;
}
.project-section {
  margin: 0 28px;
}
.board-toolbar {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: var(--border);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  padding: 10px 20px;
  background: #fffdf8;
}
.board-label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.live-dot {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: var(--coral);
}
.count {
  font-size: 10px;
  padding: 3px 6px;
  background: #efebe3;
  border-radius: 5px;
  margin-left: 1px;
}
.board-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}
.board-controls button {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #dcd8d0;
  border-radius: 7px;
  background: transparent;
  padding: 7px 11px;
  font-size: 10px;
  min-height: 34px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.board-controls button:hover {
  background: #e9e2fb;
  border-color: var(--ink);
}
.board-controls button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}
.board-controls svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.motion-symbol {
  font-size: 13px;
  font-weight: 700;
}
.playground {
  position: relative;
  isolation: isolate;
  background-color: #efebe4;
  background-image: radial-gradient(#bcb6ab 1px, transparent 1px);
  background-size: 18px 18px;
  border: var(--border);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  padding: 42px;
  --card-width: clamp(320px, 32vw, 440px);
  overflow: clip;
  min-width: 0;
}
.board-decoration {
  display: none;
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.board-word {
  position: absolute;
  left: 32px;
  top: 250px;
  font-size: clamp(82px, 12vw, 180px);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.75;
  color: #d4cec3;
  transform: rotate(-7deg);
}
.board-word i {
  font-style: normal;
}
.orbit-sticker {
  position: absolute;
  left: 47%;
  top: 48%;
  width: 82px;
  height: 82px;
  color: var(--coral);
}
.orbit-sticker svg {
  fill: currentColor;
  width: 100%;
  height: 100%;
}
.board-arrow {
  position: absolute;
  right: 5%;
  top: 21%;
  color: var(--blue);
  font-size: 110px;
  transform: rotate(10deg);
  font-weight: 700;
}
.board-stamp {
  position: absolute;
  left: 40px;
  bottom: 58px;
  width: 132px;
  height: 132px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  transform: rotate(-14deg);
  background: #ffe781;
  box-shadow: 5px 5px 0 var(--ink);
}
.project-window {
  --rotation: 0deg;
  --drag-x: 0px;
  --drag-y: 0px;
  position: relative;
  min-width: 0;
  border: var(--border);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
  transform: translate(var(--drag-x), var(--drag-y)) rotate(var(--rotation));
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s;
  transform-origin: center;
  will-change: auto;
}
.project-window:focus-within {
  z-index: 110 !important;
  box-shadow: 9px 9px 0 var(--ink);
}
.project-window:hover {
  box-shadow: 9px 9px 0 var(--ink);
}
.window-topbar {
  height: 37px;
  display: flex;
  align-items: center;
  border-bottom: var(--border);
  background: var(--card-chrome, #ddd);
  gap: 10px;
  padding: 0 12px;
}
.window-number {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.65;
}
.window-grip {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.3px;
  height: 100%;
  cursor: default;
}
.window-grip > span:first-child {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.grip-dots {
  font-size: 18px;
  line-height: 1;
  opacity: 0.65;
  display: none;
}
.window-dot {
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  flex: none;
}
.project-visual {
  height: 215px;
  position: relative;
  overflow: hidden;
  display: block;
  border-bottom: var(--border);
}
.project-visual:focus-visible {
  outline-offset: -6px;
  outline-color: white;
}
.window-content {
  padding: 18px 20px 15px;
}
.project-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
h2 {
  font-size: 21px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.project-tag {
  font-size: 8px;
  letter-spacing: 0.7px;
  white-space: nowrap;
}
.window-content p {
  font-size: 12px;
  line-height: 1.55;
  margin-top: 8px;
  min-height: 38px;
  max-width: 370px;
  color: #5f5751;
}
.project-links {
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid #dfdbd2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.open-project {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  gap: 16px;
  align-items: center;
}
.open-project > span[aria-hidden] {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  background: var(--card-chrome);
  font-size: 15px;
  transition: transform 0.2s;
}
.open-project:hover > span[aria-hidden] {
  transform: rotate(45deg);
}
.source-link,
.link-note {
  font-size: 10px;
  color: #68605a;
}
.source-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.source-link:hover {
  color: var(--ink);
}
.window-toolyflow {
  --card-chrome: #bdb1ff;
}
.toolyflow-visual {
  background: #3449ed;
  color: #fff;
}
.visual-heading {
  position: absolute;
  left: 20px;
  top: 18px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}
.tool-spark {
  font-weight: 400;
  font-size: 42px;
  position: absolute;
  left: 178px;
  top: 0;
  color: #c5bcff;
}
.mini-label {
  position: absolute;
  left: 21px;
  top: 69px;
  font-size: 7px;
  letter-spacing: 1.4px;
}
.screen-capture {
  position: absolute;
  top: 94px;
  left: 22px;
  right: 45px;
  transform: rotate(-3deg);
  border: 1.5px solid #20195c;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 9px 7px 0 #172daf;
}
.screen-capture img {
  width: 100%;
  height: auto;
}
.visual-badge {
  position: absolute;
  right: 15px;
  top: 20px;
  background: #ffe477;
  color: #272222;
  font-size: 11px;
  width: 66px;
  height: 66px;
  display: grid;
  align-content: center;
  text-align: center;
  line-height: 1.2;
  border-radius: 50%;
  transform: rotate(12deg);
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}
.visual-badge b {
  font-size: 18px;
}
.window-fusun {
  --card-chrome: #ffbca8;
}
.fusun-visual {
  background: #ffa98f;
  color: #532219;
}
.fusun-word {
  position: absolute;
  top: 3px;
  left: 25px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 74px;
  letter-spacing: -4px;
  line-height: 1.2;
}
.fusun-flower {
  display: inline-block;
  font-size: 42px;
  font-style: normal;
  margin-left: 12px;
  vertical-align: middle;
  color: #c4442d;
}
.fusun-kicker {
  position: absolute;
  top: 89px;
  left: 29px;
  font-size: 7px;
  letter-spacing: 1.9px;
}
.fusun-screen {
  position: absolute;
  right: 26px;
  top: 112px;
  left: 35px;
  transform: rotate(5deg);
  border: 1.5px solid #532219;
  box-shadow: 7px 7px 0 #e97f66;
  border-radius: 3px;
  overflow: hidden;
}
.fusun-screen img {
  width: 100%;
}
.beta-badge {
  position: absolute;
  right: 13px;
  top: 19px;
  font-size: 7px;
  letter-spacing: 0.8px;
  writing-mode: vertical-rl;
}
.window-amasya {
  --card-chrome: #ffe780;
}
.amasya-visual {
  background: #345251;
  color: white;
}
.amasya-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  filter: brightness(0.75);
}
.amasya-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #10292ba8, transparent 75%);
}
.postcard-top {
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 18px;
  font-size: 7px;
  letter-spacing: 1.2px;
}
.postcard-title {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 25px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 52px;
  line-height: 1;
}
.postcard-title > span {
  display: block;
  font-family: Space, sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2px;
  margin-top: 10px;
}
.postcard-stamp {
  position: absolute;
  z-index: 1;
  right: 18px;
  top: 19px;
  width: 52px;
  height: 62px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid #fff8;
  transform: rotate(10deg);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
}
.postcard-stamp small {
  font-size: 6px;
  letter-spacing: 0.8px;
}
.window-genctek {
  --card-chrome: #b6d3a7;
}
.genctek-visual {
  background: #b9a0ef;
  color: #302041;
}
.clue-grid {
  position: absolute;
  inset: 8px;
  font-size: 35px;
  line-height: 1.45;
  letter-spacing: 7px;
  white-space: nowrap;
  opacity: 0.15;
  transform: rotate(-12deg);
}
.detective-word {
  position: absolute;
  top: 24px;
  left: 22px;
  font-size: 33px;
  letter-spacing: -1.8px;
  line-height: 1;
  font-weight: 700;
  z-index: 1;
}
.detective-word > span {
  display: block;
  font-size: 7px;
  letter-spacing: 1.3px;
  margin-top: 13px;
}
.detective-eye {
  position: absolute;
  right: 20px;
  bottom: 23px;
  width: 122px;
  height: 122px;
  transform: rotate(-13deg);
  overflow: visible;
  fill: #f4fa92;
  stroke: #302041;
  stroke-width: 7;
  stroke-linecap: round;
}
.eye-stroke {
  fill: none;
  stroke-width: 2;
}
.eye-pupil {
  fill: #302041;
  stroke: none;
}
.genctek-label {
  position: absolute;
  bottom: 20px;
  left: 22px;
  font-size: 7px;
  letter-spacing: 1px;
  border-bottom: 1px solid;
  padding-bottom: 3px;
}
.board-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 10px;
  font-size: 10px;
  color: #797065;
}
.drag-tip {
  display: none;
  font-size: 10px;
  line-height: 1.5;
}
.bottom-caption {
  font-size: 8px;
  letter-spacing: 1.4px;
  margin-left: auto;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: var(--border);
  margin: 10px 48px 0;
  padding: 27px 0 30px;
  gap: 20px;
}
.footer-brand {
  font-size: 22px;
  letter-spacing: -1.4px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand span {
  color: var(--coral);
  font-size: 27px;
}
.site-footer > span {
  font-size: 8px;
  letter-spacing: 1.4px;
}
.site-footer > a:last-child {
  font-size: 11px;
}
.site-footer > a:last-child:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (min-width: 900px) {
  .playground[data-enhanced="true"][data-layout="free"] {
    display: block;
    height: 960px;
    padding: 0;
  }
  .playground[data-enhanced="true"][data-layout="free"] .board-decoration {
    display: block;
  }
  .playground[data-enhanced="true"][data-layout="free"] .project-window {
    position: absolute;
    width: var(--card-width);
    transition:
      transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
      left 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
      top 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
      box-shadow 0.2s;
  }
  .playground[data-layout="free"] [data-slot="0"] {
    left: 5%;
    top: 43px;
    --rotation: -5deg;
  }
  .playground[data-layout="free"] [data-slot="1"] {
    left: 49%;
    top: 34px;
    --rotation: 5deg;
  }
  .playground[data-layout="free"] [data-slot="2"] {
    left: 20%;
    top: 475px;
    --rotation: 3deg;
  }
  .playground[data-layout="free"] [data-slot="3"] {
    left: calc(100% - var(--card-width) - 34px);
    top: 493px;
    --rotation: -5deg;
  }
  .playground[data-enhanced="true"][data-layout="free"] .window-grip {
    cursor: grab;
    touch-action: none;
  }
  .playground[data-enhanced="true"][data-layout="free"] .grip-dots {
    display: inline;
  }
  .playground[data-enhanced="true"] .project-window.is-dragging {
    transition: none;
    box-shadow: 13px 15px 0 #27222280;
    user-select: none;
    --rotation: 0deg;
  }
  .project-window.is-dragging .window-grip {
    cursor: grabbing !important;
  }
  .project-section:has([data-enhanced="true"][data-layout="free"]) .drag-tip {
    display: block;
  }
}
body[data-motion="on"] .tool-spark {
  animation: turn 20s linear infinite;
}
body[data-motion="on"] .orbit-sticker {
  animation: turn 24s linear infinite;
}
body[data-motion="on"] .fusun-flower {
  animation: flower 7s ease-in-out infinite;
}
body[data-motion="on"] .detective-eye {
  animation: peek 7s ease-in-out infinite;
}
.project-visual:hover .screen-capture {
  transform: rotate(0deg) translateY(-5px);
}
.project-visual:hover .fusun-screen {
  transform: rotate(0deg) translateY(-5px);
}
.screen-capture,
.fusun-screen {
  transition: transform 0.35s;
}
.project-visual:hover .postcard-title {
  transform: translateX(5px);
}
.postcard-title {
  transition: transform 0.35s;
}
@keyframes turn {
  to {
    transform: rotate(360deg);
  }
}
@keyframes flower {
  0%,
  100% {
    transform: rotate(-12deg);
  }
  50% {
    transform: rotate(14deg);
  }
}
@keyframes peek {
  0%,
  100% {
    transform: rotate(-13deg);
  }
  50% {
    transform: rotate(7deg) translate(0, -5px);
  }
}
body[data-motion="off"] *,
body[data-motion="off"] *:before,
body[data-motion="off"] *:after {
  animation: none !important;
  transition: none !important;
}
@media (min-width: 1450px) {
  .site-header,
  .intro,
  .site-footer {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }
  .intro {
    padding-left: 0;
    padding-right: 0;
  }
  .project-section {
    max-width: 1556px;
    margin-left: auto;
    margin-right: auto;
  }
  .playground {
    --card-width: 440px;
  }
  .playground[data-enhanced="true"][data-layout="free"] {
    height: 960px;
  }
}
@media (max-width: 1099px) {
  .site-header {
    margin: 0 28px;
  }
  .intro {
    padding: 36px 28px;
  }
  .intro-note {
    padding-right: 5px;
  }
  .project-section {
    margin: 0 16px;
  }
  .project-title-row {
    flex-wrap: wrap;
    gap: 4px;
  }
  .project-tag {
    font-size: 7px;
  }
  .window-content {
    padding: 16px;
  }
  .site-footer {
    margin-left: 28px;
    margin-right: 28px;
  }
  .playground[data-enhanced="true"][data-layout="free"] {
    height: 990px;
  }
  .playground[data-layout="free"] [data-slot="1"] {
    left: 52%;
    top: 64px;
  }
  .playground[data-layout="free"] [data-slot="2"] {
    left: 11%;
    top: 501px;
  }
  .playground[data-layout="free"] [data-slot="3"] {
    left: calc(100% - var(--card-width) - 30px);
    top: 525px;
  }
}
@media (max-width: 899px) {
  .header-caption {
    display: none;
  }
  .intro-note {
    display: none;
  }
  .intro {
    padding: 32px 28px 34px;
  }
  h1 {
    font-size: clamp(39px, 7.7vw, 69px);
  }
  .board-controls #shuffle,
  .board-controls #layout-toggle {
    display: none;
  }
  .board-toolbar {
    padding: 10px 15px;
    min-height: 56px;
  }
  .playground {
    padding: 26px;
    gap: 24px;
  }
  .window-grip {
    pointer-events: none;
  }
  .project-title-row {
    display: block;
  }
  .project-tag {
    display: block;
    margin-top: 5px;
  }
  .project-visual {
    height: 210px;
  }
  .visual-heading {
    font-size: 32px;
  }
  .tool-spark {
    left: 144px;
    font-size: 35px;
  }
  .visual-badge {
    width: 53px;
    height: 53px;
    right: 10px;
    top: 19px;
    font-size: 9px;
  }
  .visual-badge b {
    font-size: 14px;
  }
  .detective-word {
    font-size: 27px;
  }
  .detective-eye {
    width: 104px;
    height: 104px;
    right: 12px;
    bottom: 17px;
  }
  .fusun-word {
    font-size: 66px;
    left: 20px;
  }
  .fusun-flower {
    font-size: 33px;
    margin-left: 9px;
  }
  .window-content p {
    min-height: 57px;
  }
  .window-content {
    padding: 15px;
  }
  .project-links {
    gap: 10px;
  }
  .open-project {
    gap: 8px;
  }
  .source-link {
    font-size: 9px;
  }
}
@media (max-width: 699px) {
  .site-header {
    height: 75px;
    margin: 0 20px;
    gap: 15px;
  }
  .brand {
    font-size: 28px;
  }
  .brand span {
    font-size: 23px;
  }
  .brand i {
    width: 8px;
    height: 8px;
  }
  .github-link {
    font-size: 11px;
    padding: 8px 13px;
    gap: 18px;
  }
  .header-caption {
    display: none;
  }
  .intro {
    padding: 30px 22px 34px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
    margin-bottom: 14px;
  }
  h1 {
    font-size: clamp(42px, 11.9vw, 68px);
    line-height: 1.03;
  }
  .mobile-break {
    display: block;
  }
  .title-last svg {
    bottom: -10px;
    height: 12px;
  }
  .project-section {
    margin: 0 12px;
  }
  .board-toolbar {
    padding: 10px 12px;
    min-height: 54px;
    border-radius: 11px 11px 0 0;
  }
  .board-label {
    font-size: 10px;
    gap: 7px;
  }
  .board-controls {
    gap: 0;
  }
  .board-controls button {
    font-size: 9px;
    padding: 6px 8px;
    min-height: 32px;
    gap: 5px;
  }
  .playground {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px 15px 28px;
    gap: 30px;
  }
  .project-window {
    box-shadow: 4px 4px 0 var(--ink);
    border-radius: 9px;
  }
  .project-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
  }
  .project-tag {
    display: inline;
    margin: 0;
    font-size: 7px;
  }
  .project-visual {
    height: 215px;
  }
  .visual-heading {
    font-size: 40px;
  }
  .tool-spark {
    left: 178px;
    font-size: 40px;
  }
  .visual-badge {
    width: 60px;
    height: 60px;
    right: 16px;
    top: 18px;
    font-size: 10px;
  }
  .visual-badge b {
    font-size: 16px;
  }
  .screen-capture {
    right: 33px;
  }
  .window-content {
    padding: 17px;
  }
  .window-content p {
    font-size: 12px;
    min-height: 38px;
    margin-top: 8px;
  }
  .project-links {
    margin-top: 12px;
    padding-top: 11px;
  }
  .open-project {
    font-size: 12px;
  }
  .source-link {
    font-size: 10px;
  }
  .fusun-word {
    font-size: 73px;
    left: 23px;
  }
  .fusun-flower {
    font-size: 39px;
  }
  .detective-word {
    font-size: 33px;
  }
  .detective-eye {
    width: 114px;
    height: 114px;
    right: 20px;
    bottom: 20px;
  }
  .board-bottom {
    padding: 15px 4px;
  }
  .bottom-caption {
    font-size: 7px;
    letter-spacing: 1px;
    margin: 0 auto;
  }
  .site-footer {
    margin: 6px 20px 0;
    padding: 23px 0;
    flex-wrap: wrap;
    gap: 12px;
  }
  .site-footer > span {
    display: none;
  }
  .site-footer > a:last-child {
    font-size: 10px;
  }
  .footer-brand {
    font-size: 20px;
  }
  .footer-brand span {
    font-size: 24px;
  }
}
@media (max-width: 359px) {
  .playground {
    padding: 20px 10px;
    gap: 24px;
  }
  .window-topbar {
    padding: 0 9px;
    gap: 7px;
  }
  .window-grip {
    font-size: 9px;
  }
  .project-visual {
    height: 195px;
  }
  .window-content {
    padding: 14px;
  }
  .visual-heading {
    font-size: 34px;
    left: 16px;
  }
  .tool-spark {
    left: 150px;
    font-size: 35px;
  }
  .mini-label {
    left: 18px;
    top: 65px;
    font-size: 6px;
  }
  .visual-badge {
    width: 50px;
    height: 50px;
    right: 10px;
    font-size: 8px;
  }
  .visual-badge b {
    font-size: 13px;
  }
  .screen-capture {
    left: 19px;
    top: 88px;
    right: 25px;
  }
  .fusun-word {
    font-size: 64px;
    left: 17px;
  }
  .fusun-flower {
    font-size: 34px;
    margin-left: 8px;
  }
  .fusun-kicker {
    left: 20px;
    top: 80px;
    font-size: 6px;
  }
  .fusun-screen {
    top: 103px;
    left: 25px;
    right: 20px;
  }
  .detective-word {
    font-size: 28px;
    left: 17px;
  }
  .detective-eye {
    width: 99px;
    height: 99px;
    right: 15px;
    bottom: 18px;
  }
  .genctek-label {
    left: 17px;
    font-size: 6px;
  }
  .board-controls button {
    padding: 5px 6px;
    font-size: 8px;
  }
  .board-toolbar {
    padding: 9px 10px;
  }
  .board-label {
    font-size: 9px;
  }
  .window-content p {
    min-height: 56px;
  }
  .site-header {
    margin: 0 16px;
  }
  .intro {
    padding-left: 18px;
  }
}
.fusun-screen img {
  height: auto;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
