:root {
  --red: #e84855;
  --blue: #4361ee;
  --green: #06d6a0;
  --pink: #ff6b9d;
  --white: #fafaf8;
  --black: #0a0a0a;
  --line: rgba(10, 10, 10, 0.14);
  --shadow: 10px 10px 0 var(--black);
  --content: 1120px;
  --motion-y: 0px;
  --motion-x: 0px;
  --hero-fast-y: 0px;
  --hero-slow-y: 0px;
  --hero-drift-x: 0px;
  --hero-drift-x-neg: 0px;
  --pointer-main-x: 0px;
  --pointer-main-y: 0px;
  --pointer-side-x: 0px;
  --pointer-side-y: 0px;
  --pointer-soft-x: 0px;
  --pointer-soft-x-neg: 0px;
  --pointer-soft-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  color: var(--black);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(250, 250, 248, 0.88);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  min-height: 64px;
  justify-content: space-between;
  left: 0;
  padding: 10px 18px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand-link,
.nav-links a {
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.header-tools {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 14px;
}

.nav-links a {
  opacity: 0.55;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  opacity: 1;
}

.nav-links a[aria-current="page"] {
  font-size: 18px;
  font-weight: 950;
}

.language-switcher {
  flex-shrink: 0;
}

.language-menu button {
  appearance: none;
  color: var(--black);
  cursor: pointer;
  font: inherit;
}

.language-menu {
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--black);
  display: grid;
  grid-template-columns: repeat(8, 44px);
  overflow: hidden;
}

.language-menu-compact {
  grid-template-columns: repeat(2, 46px);
}

.language-menu button {
  align-items: center;
  background: transparent;
  border: 0;
  display: grid;
  font-size: 12px;
  font-weight: 950;
  justify-content: center;
  min-height: 34px;
  padding: 0;
  position: relative;
  text-align: center;
}

.language-menu button + button {
  border-left: 2px solid var(--black);
}

.language-menu button:nth-child(8n + 1) {
  border-left: 0;
}

.language-menu button:nth-child(n + 9) {
  border-top: 2px solid var(--black);
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-active {
  background: var(--black);
  color: var(--white);
}

.language-menu button.is-active {
  box-shadow: inset 0 0 0 3px var(--green);
}

.language-menu button:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

.kurotty-page .language-menu {
  background: rgba(244, 241, 234, 0.76);
  border: 1px solid rgba(17, 17, 20, 0.22);
  border-radius: 3px;
  box-shadow: none;
}

.kurotty-page .language-menu button {
  min-height: 36px;
}

.kurotty-page .language-menu button + button {
  border-left: 1px solid rgba(17, 17, 20, 0.22);
}

.kurotty-page .language-menu button:hover,
.kurotty-page .language-menu button:focus-visible,
.kurotty-page .language-menu button.is-active {
  background: var(--kurotty-ink);
  color: var(--kurotty-paper);
}

.kurotty-page .language-menu button.is-active {
  box-shadow: none;
}

.kurotty-page .language-menu button:focus-visible {
  outline: 2px solid rgba(17, 17, 20, 0.28);
  outline-offset: 2px;
}

.section-band {
  padding: 86px 18px;
  position: relative;
}

.section-band > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content);
}

.eyebrow {
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 16px;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: 76px;
  line-height: 0.92;
  margin-bottom: 22px;
}

.kitsnyang-page .hero h1 {
  font-size: clamp(84px, 7vw, 112px);
}

h2 {
  font-size: 48px;
  line-height: 1.04;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.12;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.64;
}

.home-hero {
  min-height: calc(100vh - 64px);
  padding: 104px 20px 72px;
}

.home-hero,
.home-project {
  margin: 0 auto;
  max-width: var(--content);
}

.home-hero h1 {
  max-width: 760px;
}

.home-lead {
  max-width: 560px;
}

.text-arrow {
  display: inline-flex;
  font-weight: 900;
  margin-top: 20px;
  text-decoration: none;
}

.text-arrow::after {
  content: "->";
  margin-left: 10px;
}

.home-project {
  align-items: end;
  border-top: 3px solid var(--black);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr 220px;
  padding: 54px 20px 90px;
}

.home-project h2 {
  color: var(--green);
}

.project-card-link {
  background: var(--black);
  color: var(--white);
  display: grid;
  gap: 8px;
  padding: 18px;
  text-decoration: none;
}

.project-card-link span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-green {
  background:
    linear-gradient(90deg, var(--green) 0 12px, transparent 12px),
    var(--white);
}

.section-white {
  background: var(--white);
}

.section-black {
  background: var(--black);
  color: var(--white);
}

.section-pink {
  background: var(--pink);
}

.hero {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: calc(100vh - 64px);
  overflow: hidden;
  padding-left: max(18px, calc((100% - var(--content)) / 2));
  padding-right: max(18px, calc((100% - var(--content)) / 2));
}

.hero-copy {
  min-width: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-line {
  font-size: 24px;
  font-weight: 800;
  max-width: 520px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  max-width: 100%;
}

.proof-row span {
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  max-width: 100%;
  min-width: 0;
  padding: 10px 14px;
  overflow-wrap: anywhere;
}

.proof-row span:nth-child(1) {
  background: var(--green);
}

.proof-row span:nth-child(2) {
  background: var(--blue);
  color: var(--white);
}

.proof-row span:nth-child(3) {
  background: var(--pink);
}

.hero-stage {
  min-height: 620px;
  position: relative;
  perspective: 1000px;
}

.color-rail {
  border: 3px solid var(--black);
  height: 180px;
  position: absolute;
  width: 76px;
}

.rail-red {
  background: var(--red);
  right: 8%;
  top: 6%;
  transform: translate(var(--pointer-soft-x), calc(var(--hero-slow-y) - var(--pointer-soft-y))) rotate(12deg);
  transition: transform 160ms ease-out;
}

.rail-blue {
  background: var(--blue);
  left: 12%;
  top: 48%;
  transform: translate(var(--pointer-soft-x-neg), calc(var(--hero-fast-y) + var(--pointer-soft-y))) rotate(-18deg);
  transition: transform 160ms ease-out;
}

.app-icon-tile {
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  height: 118px;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 42px;
  transform: translate(var(--pointer-side-x), var(--pointer-side-y)) rotate(-8deg);
  transition: transform 160ms ease-out;
  width: 118px;
  z-index: 3;
}

.phone-mock {
  background: var(--white);
  border: 4px solid var(--black);
  box-shadow: var(--shadow);
  color: var(--black);
  overflow: hidden;
}

.hero-phone {
  position: absolute;
}

.phone-main {
  height: 470px;
  left: 18%;
  top: 54px;
  transform:
    translate(calc(var(--hero-drift-x) + var(--pointer-main-x)), calc(var(--hero-slow-y) + var(--pointer-main-y)))
    rotate(-3deg);
  transition: transform 160ms ease-out;
  width: 250px;
  z-index: 4;
}

.phone-side {
  height: 380px;
  right: 6%;
  top: 170px;
  transform:
    translate(calc(var(--hero-drift-x-neg) + var(--pointer-side-x)), calc(var(--hero-fast-y) + var(--pointer-side-y)))
    rotate(5deg);
  transition: transform 160ms ease-out;
  width: 252px;
  z-index: 2;
}

.phone-top {
  align-items: center;
  border-bottom: 3px solid var(--black);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: space-between;
  padding: 14px;
}

.phone-pill {
  background: var(--black);
  height: 10px;
  width: 42px;
}

.alarm-list {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.alarm-item {
  border: 3px solid var(--black);
  display: grid;
  gap: 6px;
  padding: 16px;
}

.alarm-item span {
  font-size: 12px;
  font-weight: 900;
}

.alarm-item strong {
  font-size: 42px;
  line-height: 1;
}

.accent-red {
  background: var(--red);
  color: var(--white);
}

.accent-blue {
  background: var(--blue);
  color: var(--white);
}

.accent-green {
  background: var(--green);
}

.sound-screen {
  display: grid;
  gap: 20px;
  padding: 30px 20px;
}

.screen-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.sound-screen strong {
  font-size: 30px;
  line-height: 1.08;
  word-break: keep-all;
}

html:lang(ko) .sound-screen strong,
html:lang(ja) .sound-screen strong,
html:lang(zh) .sound-screen strong,
html:lang(zh-TW) .sound-screen strong {
  white-space: nowrap;
}

.sound-screen p {
  font-size: 16px;
  font-weight: 800;
}

.mini-player {
  align-items: end;
  border: 3px solid var(--black);
  display: flex;
  gap: 8px;
  height: 84px;
  padding: 12px;
}

.mini-player span {
  background: var(--green);
  display: block;
  width: 24px;
}

.mini-player span:nth-child(1) {
  height: 28px;
}

.mini-player span:nth-child(2) {
  background: var(--pink);
  height: 54px;
}

.mini-player span:nth-child(3) {
  background: var(--blue);
  height: 40px;
}

.scroll-cat {
  bottom: 48px;
  height: auto;
  position: absolute;
  right: 30%;
  transform: translate(calc(var(--motion-x) + var(--pointer-main-x)), calc(var(--hero-fast-y) + var(--pointer-main-y)));
  transition: transform 160ms ease-out;
  width: 104px;
  z-index: 5;
}

.statement {
  background:
    linear-gradient(180deg, transparent 0 78%, var(--green) 78% 100%),
    var(--white);
  border-bottom: 3px solid var(--black);
  border-top: 3px solid var(--black);
  padding-bottom: 110px;
  padding-top: 110px;
  text-align: center;
}

.statement h2 {
  max-width: 720px;
}

.statement-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
}

.statement-word {
  border: 3px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  font-size: 32px;
  font-weight: 950;
  line-height: 1.08;
  min-height: 150px;
  padding: 18px;
  text-align: left;
}

.color-red {
  background: var(--red);
  color: var(--white);
}

.color-blue {
  background: var(--blue);
  color: var(--white);
}

.color-green {
  background: var(--green);
}

.color-pink {
  background: var(--pink);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 620px;
}

.screen-stack {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.showcase-phone {
  min-height: 390px;
  padding: 22px;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.showcase-phone:nth-child(2) {
  margin-top: 70px;
}

.showcase-phone:nth-child(3) {
  margin-top: 28px;
}

.showcase-phone:nth-child(4) {
  margin-top: 96px;
}

.screen-kicker {
  color: var(--green);
  display: block;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 14px;
}

.screen-time {
  border-bottom: 4px solid var(--black);
  font-size: 58px;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 28px;
  padding-bottom: 18px;
}

.wheel-preview {
  align-items: center;
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 24px 0 32px;
}

.wheel-preview span {
  color: rgba(10, 10, 10, 0.28);
  font-size: 28px;
  font-weight: 900;
}

.wheel-preview strong {
  color: var(--black);
  font-size: 64px;
  line-height: 1;
}

.sound-lines {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.sound-lines li {
  border-bottom: 2px solid var(--black);
  font-size: 16px;
  font-weight: 900;
  padding-bottom: 12px;
}

.dismiss-dot {
  align-items: center;
  background: var(--green);
  border: 3px solid var(--black);
  border-radius: 50%;
  display: flex;
  font-size: 18px;
  font-weight: 950;
  height: 126px;
  justify-content: center;
  margin: 34px auto;
  width: 126px;
}

.sound-player {
  border: 3px solid var(--white);
  box-shadow: 8px 8px 0 var(--green);
  display: grid;
  gap: 22px;
  padding: 22px;
}

.player-now {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.player-toggle {
  align-items: center;
  appearance: none;
  background: var(--green);
  border: 3px solid var(--white);
  box-shadow: 5px 5px 0 var(--white);
  color: var(--black);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 24px;
  font-weight: 950;
  height: 68px;
  justify-content: center;
  padding: 0;
  touch-action: manipulation;
  width: 68px;
}

.player-toggle:focus-visible,
.track-button:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.player-copy {
  min-width: 0;
}

.player-copy span {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.player-copy strong {
  display: block;
  font-size: 42px;
  font-weight: 950;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.player-status {
  color: rgba(250, 250, 248, 0.72);
  font-size: 15px;
  font-weight: 800;
  margin: 8px 0 0;
}

.player-poem {
  color: var(--white);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.38;
  margin: 14px 0 0;
}

.player-poem mark {
  background: var(--green);
  color: var(--black);
  padding: 0 4px;
}

.player-bars {
  align-items: end;
  display: flex;
  gap: 7px;
  height: 72px;
}

.player-bars span {
  background: var(--pink);
  display: block;
  height: 22px;
  width: 14px;
}

.player-bars span:nth-child(2) {
  background: var(--blue);
  height: 48px;
}

.player-bars span:nth-child(3) {
  background: var(--red);
  height: 34px;
}

.player-bars span:nth-child(4) {
  background: var(--green);
  height: 58px;
}

.sound-player.is-playing .player-bars span {
  animation: playerPulse 760ms steps(2, end) infinite;
}

.sound-player.is-playing .player-bars span:nth-child(2) {
  animation-delay: 120ms;
}

.sound-player.is-playing .player-bars span:nth-child(3) {
  animation-delay: 240ms;
}

.sound-player.is-playing .player-bars span:nth-child(4) {
  animation-delay: 360ms;
}

.player-progress {
  background: rgba(250, 250, 248, 0.18);
  height: 8px;
  overflow: hidden;
}

.player-progress span {
  background: var(--green);
  display: block;
  height: 100%;
  transform-origin: left;
  transform: scaleX(0);
}

.track-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.track-button {
  align-content: space-between;
  appearance: none;
  background: transparent;
  border: 2px solid rgba(250, 250, 248, 0.6);
  color: var(--white);
  cursor: pointer;
  display: grid;
  font: inherit;
  grid-template-rows: auto 1fr auto;
  min-height: 142px;
  min-width: 0;
  padding: 12px;
  text-align: left;
  touch-action: manipulation;
}

.track-button:hover,
.track-button.is-active {
  background: var(--white);
  color: var(--black);
}

.track-button.is-active {
  border-color: var(--green);
  box-shadow: 5px 5px 0 var(--green);
}

.track-button span,
.track-button em {
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.track-button strong {
  align-self: center;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.14;
  margin: 16px 0;
  overflow-wrap: normal;
  word-break: keep-all;
}

html:lang(ko) .track-button strong,
html:lang(ja) .track-button strong,
html:lang(zh) .track-button strong,
html:lang(zh-TW) .track-button strong {
  font-size: 14px;
  white-space: nowrap;
}

@keyframes playerPulse {
  0% {
    transform: scaleY(0.5);
  }

  100% {
    transform: scaleY(1);
  }
}

.sound-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sound-marquee span {
  border: 2px solid currentColor;
  display: inline-flex;
  font-size: 22px;
  font-weight: 950;
  padding: 12px 16px;
}

.sound-marquee span:nth-child(1),
.sound-marquee span:nth-child(5) {
  color: var(--green);
}

.sound-marquee span:nth-child(2),
.sound-marquee span:nth-child(6) {
  color: var(--pink);
}

.sound-marquee span:nth-child(3) {
  color: var(--blue);
}

.sound-marquee span:nth-child(4) {
  color: var(--red);
}

.closing {
  min-height: 560px;
  overflow: hidden;
  text-align: center;
}

.closing h2 {
  max-width: 760px;
}

.closing p:not(.eyebrow) {
  font-weight: 800;
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}

.privacy-inline-link,
.privacy-back-link {
  margin-top: 24px;
}

.closing-cat {
  bottom: 70px;
  height: auto;
  position: absolute;
  right: max(24px, calc((100vw - var(--content)) / 2));
  width: 132px;
}

.kurotty-page {
  --kurotty-ink: #111114;
  --kurotty-paper: #f4f1ea;
  --kurotty-panel: #fffcf5;
  --kurotty-line: rgba(17, 17, 20, 0.18);
  --kurotty-green: #9ce67f;
  --kurotty-cyan: #8fcfd4;
  --kurotty-red: #d95b53;
  --kurotty-violet: #9f94cf;
  background: var(--kurotty-paper);
  color: var(--kurotty-ink);
}

.kurotty-page .site-header {
  background: rgba(244, 241, 234, 0.86);
  backdrop-filter: blur(18px);
}

.kurotty-hero {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  min-height: calc(100vh - 64px);
  overflow: hidden;
  padding: 80px max(18px, calc((100% - var(--content)) / 2)) 72px;
}

.kurotty-hero-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.kurotty-page h1 {
  font-size: clamp(76px, 8vw, 132px);
  line-height: 0.82;
  max-width: 100%;
}

.kurotty-lead {
  color: rgba(17, 17, 20, 0.72);
  font-size: 21px;
  font-weight: 650;
  max-width: 520px;
}

.kurotty-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.kurotty-download,
.kurotty-release-link {
  align-items: center;
  border: 1px solid var(--kurotty-ink);
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
}

.kurotty-download {
  background: var(--kurotty-ink);
  color: var(--kurotty-paper);
}

.kurotty-release-link {
  background: transparent;
}

.kurotty-download:hover,
.kurotty-release-link:hover {
  background: var(--kurotty-green);
  color: var(--kurotty-ink);
}

.kurotty-download-note {
  font-size: 14px;
  font-weight: 850;
  margin-top: 18px;
}

.kurotty-stage {
  min-height: 640px;
  position: relative;
  perspective: 1100px;
}

.kurotty-grid {
  background:
    linear-gradient(rgba(17, 17, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 20, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  border: 1px solid var(--kurotty-line);
  inset: 40px 2% 66px 9%;
  position: absolute;
  transform: translate(var(--pointer-soft-x), var(--hero-slow-y));
}

.kurotty-cat {
  border: 1px solid var(--kurotty-line);
  border-radius: 34px;
  box-shadow: 0 18px 45px rgba(17, 17, 20, 0.16);
  height: 136px;
  left: 3%;
  object-fit: contain;
  position: absolute;
  top: 42px;
  transform: translate(var(--pointer-side-x), var(--pointer-side-y)) rotate(-4deg);
  transition: transform 160ms ease-out;
  width: 136px;
  z-index: 4;
}

.kurotty-terminal-card {
  background: #151518;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(17, 17, 20, 0.28);
  color: var(--kurotty-green);
  left: 7%;
  min-height: 318px;
  padding: 0;
  position: absolute;
  top: 176px;
  transform:
    translate(calc(var(--hero-drift-x) + var(--pointer-main-x)), calc(var(--hero-slow-y) + var(--pointer-main-y)))
    rotate(-2.5deg);
  transition: transform 160ms ease-out;
  width: min(460px, 80%);
  z-index: 3;
}

.kurotty-terminal-top {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 8px;
  padding: 14px 16px;
}

.kurotty-terminal-top span {
  border-radius: 50%;
  display: block;
  height: 11px;
  width: 11px;
}

.kurotty-terminal-top span:nth-child(1) {
  background: var(--kurotty-red);
}

.kurotty-terminal-top span:nth-child(2) {
  background: #ffd866;
}

.kurotty-terminal-top span:nth-child(3) {
  background: var(--kurotty-green);
}

.kurotty-terminal-card pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin: 0;
  overflow: auto;
  padding: 24px 26px;
}

.kurotty-preview {
  border: 1px solid var(--kurotty-line);
  border-radius: 18px;
  bottom: 42px;
  box-shadow: 0 24px 70px rgba(17, 17, 20, 0.2);
  max-width: 380px;
  position: absolute;
  right: 0;
  transform:
    translate(calc(var(--hero-drift-x-neg) + var(--pointer-side-x)), calc(var(--hero-fast-y) + var(--pointer-side-y)))
    rotate(2.5deg);
  transition: transform 160ms ease-out;
  width: 58%;
  z-index: 2;
}

.kurotty-badges {
  border-bottom: 1px solid var(--kurotty-line);
  border-top: 1px solid var(--kurotty-line);
  color: rgba(17, 17, 20, 0.74);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 max(18px, calc((100% - var(--content)) / 2));
}

.kurotty-badges span {
  border-right: 1px solid var(--kurotty-line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  min-height: auto;
  padding: 18px 16px;
}

.kurotty-badges span:last-child {
  border-right: 0;
}

.kurotty-section {
  padding: 112px max(18px, calc((100% - var(--content)) / 2));
}

.kurotty-section-heading {
  max-width: 800px;
}

.kurotty-section h2 {
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.98;
}

.kurotty-feature-grid {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 58px;
  max-width: 860px;
}

.kurotty-feature-grid article {
  align-items: start;
  background: transparent;
  border-bottom: 1px solid var(--kurotty-line);
  display: grid;
  gap: 28px;
  grid-template-columns: 52px minmax(150px, 0.35fr) minmax(0, 1fr);
  min-height: 0;
  padding: 26px 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.kurotty-feature-grid article span {
  color: rgba(17, 17, 20, 0.42);
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0;
}

.kurotty-feature-grid article h3 {
  font-size: 19px;
  margin: 0;
}

.kurotty-feature-grid article p {
  color: rgba(17, 17, 20, 0.66);
  font-size: 16px;
  font-weight: 580;
  line-height: 1.55;
  margin: 0;
}

.reveal {
  opacity: 0;
}

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

.kurotty-closing {
  border-top: 1px solid var(--kurotty-line);
  min-height: 0;
  text-align: left;
}

.kurotty-closing h2,
.kurotty-closing p {
  margin-left: 0;
  margin-right: 0;
  max-width: 720px;
}

.kurotty-closing .kurotty-release-link {
  margin-top: 24px;
}

.privacy-hero {
  align-items: end;
  display: grid;
  min-height: 420px;
}

.privacy-hero h1 {
  font-size: clamp(48px, 6vw, 88px);
  max-width: 920px;
}

.privacy-lead {
  font-size: 22px;
  font-weight: 800;
  max-width: 680px;
}

.privacy-summary {
  background: var(--black);
  color: var(--white);
}

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

.privacy-summary article {
  border: 3px solid var(--white);
  min-height: 220px;
  padding: 22px;
}

.privacy-summary span {
  color: var(--green);
  display: block;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 26px;
}

.privacy-summary h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.privacy-summary p {
  color: rgba(250, 250, 248, 0.82);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.privacy-policy {
  border-top: 4px solid var(--black);
  max-width: 820px;
  padding-top: 42px;
}

.privacy-policy h2 {
  margin-bottom: 42px;
}

.privacy-block {
  border-top: 2px solid var(--line);
  padding: 28px 0;
}

.privacy-block h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.privacy-block p {
  font-size: 17px;
  margin-bottom: 0;
}

.privacy-block ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.privacy-block li {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.privacy-block a {
  font-weight: 900;
  overflow-wrap: anywhere;
}

.privacy-updated {
  border-top: 3px solid var(--black);
  font-size: 15px;
  font-weight: 900;
  margin: 18px 0 0;
  padding-top: 22px;
}

.privacy-back-link {
  display: inline-flex;
}

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

@media (max-width: 900px) {
  h1 {
    font-size: 58px;
  }

  .kitsnyang-page .hero h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 38px;
  }

  .home-project,
  .hero,
  .screen-stack,
  .privacy-summary-grid,
  .statement-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
  }

  .phone-main {
    left: 8%;
  }

  .phone-side {
    right: 0;
  }

  .statement-word {
    min-height: 110px;
  }

  .privacy-summary article {
    min-height: 0;
  }

  .showcase-phone,
  .showcase-phone:nth-child(2),
  .showcase-phone:nth-child(3),
  .showcase-phone:nth-child(4) {
    margin-top: 0;
    min-height: 330px;
  }

  .track-list {
    display: flex;
    overflow-x: auto;
    padding: 0 0 8px;
    scroll-snap-type: x proximity;
  }

  .track-button {
    flex: 0 0 132px;
    min-height: 136px;
    scroll-snap-align: start;
  }
}

@media (max-width: 980px) {
  .kurotty-hero {
    gap: 36px;
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-top: 68px;
  }

  .kurotty-hero-copy {
    max-width: 680px;
  }

  .kurotty-page h1 {
    font-size: clamp(72px, 18vw, 142px);
  }

  .kurotty-stage {
    min-height: 560px;
    width: min(100%, 680px);
  }
}

@media (max-width: 560px) {
  .site-header {
    display: grid;
    gap: 10px 12px;
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    justify-content: stretch;
    min-height: 58px;
    padding: 10px 12px 12px;
    overflow-x: hidden;
  }

  .header-tools {
    display: contents;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    justify-content: flex-start;
    justify-self: start;
    min-width: 0;
  }

  .brand-link,
  .nav-links a {
    font-size: 13px;
    white-space: nowrap;
  }

  .nav-links a[aria-current="page"] {
    font-size: 16px;
  }

  .language-switcher {
    grid-column: 1;
    min-width: 0;
    width: 100%;
  }

  .language-menu {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .language-menu button {
    font-size: 10px;
    min-width: 0;
    min-height: 32px;
  }

  .language-menu button:nth-child(8n + 1) {
    border-left: 2px solid var(--black);
  }

  .language-menu button:nth-child(4n + 1) {
    border-left: 0;
  }

  .language-menu button:nth-child(n + 5) {
    border-top: 2px solid var(--black);
  }

  .section-band {
    padding: 64px 16px;
  }

  h1 {
    font-size: 48px;
  }

  .kitsnyang-page .hero h1 {
    font-size: clamp(52px, 14vw, 58px);
  }

  h2 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    width: min(100%, 288px);
    max-width: 288px;
  }

  .hero-line {
    font-size: 22px;
    max-width: 100%;
  }

  .proof-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 288px);
  }

  .proof-row span {
    justify-content: center;
  }

  .privacy-hero {
    min-height: 360px;
  }

  .privacy-page .privacy-hero h1 {
    font-size: clamp(38px, 10vw, 44px);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .privacy-lead {
    font-size: 18px;
  }

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

  .app-icon-tile {
    height: 84px;
    width: 84px;
  }

  .phone-main {
    height: 390px;
    left: 0;
    top: 66px;
    width: 210px;
  }

  .phone-side {
    height: 300px;
    right: -8px;
    top: 156px;
    width: 206px;
  }

  .scroll-cat {
    bottom: 16px;
    right: 22%;
    width: 82px;
  }

  .closing {
    min-height: 620px;
  }

  .closing-cat {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .alarm-item strong {
    font-size: 34px;
  }

  .sound-screen strong {
    font-size: 22px;
  }

  .sound-marquee span {
    font-size: 18px;
  }

  .sound-player {
    box-shadow: 5px 5px 0 var(--green);
    padding: 16px;
  }

  .player-now {
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .player-bars {
    display: none;
  }

  .player-toggle {
    box-shadow: 4px 4px 0 var(--white);
    height: 54px;
    width: 54px;
  }

  .player-copy strong {
    font-size: 28px;
  }

  .player-poem {
    font-size: 15px;
  }

  .track-button {
    flex-basis: 124px;
    min-height: 126px;
  }

  .track-button strong {
    font-size: 14px;
    margin: 14px 0;
  }

  .kurotty-hero {
    gap: 22px;
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 56px 16px 42px;
  }

  .kurotty-page h1 {
    font-size: clamp(54px, 16vw, 70px);
  }

  .kurotty-lead {
    font-size: 18px;
  }

  .kurotty-actions {
    align-items: stretch;
    display: grid;
  }

  .kurotty-download,
  .kurotty-release-link {
    justify-content: center;
    width: 100%;
  }

  .kurotty-stage {
    min-height: 530px;
  }

  .kurotty-grid {
    inset: 18px 8px 44px;
  }

  .kurotty-cat {
    height: 104px;
    left: 0;
    top: 12px;
    width: 104px;
  }

  .kurotty-terminal-card {
    left: 0;
    min-height: 280px;
    top: 138px;
    width: 88%;
  }

  .kurotty-terminal-card pre {
    font-size: 14px;
    padding: 18px;
  }

  .kurotty-preview {
    bottom: 18px;
    right: 0;
    width: 74%;
  }

  .kurotty-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 16px;
  }

  .kurotty-badges span {
    border-bottom: 1px solid var(--kurotty-line);
    font-size: 12px;
    min-height: 0;
    padding: 14px 12px;
  }

  .kurotty-badges span:nth-child(2n) {
    border-right: 0;
  }

  .kurotty-section {
    padding: 68px 16px;
  }

  .kurotty-feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .kurotty-feature-grid article {
    gap: 10px;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
}

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

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

  .hero-phone,
  .scroll-cat,
  .color-rail,
  .app-icon-tile,
  .kurotty-cat,
  .kurotty-grid,
  .kurotty-preview,
  .kurotty-terminal-card {
    transform: none;
  }
}
