:root {
  --ink: #070811;
  --ink-soft: #0d0f24;
  --ivory: #f5f0e8;
  --paper: #ebe5db;
  --cobalt: #2456ff;
  --blue-deep: #142dbb;
  --pink: #ff66c7;
  --acid: #e9ff00;
  --red: #ff493a;
  --white: #fffdf9;
  --line: rgba(245, 240, 232, 0.22);
  --font-ja: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-en: "Archivo Black", "Arial Black", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 3%, rgba(36, 86, 255, 0.24), transparent 28rem),
    var(--ink);
  font-family: var(--font-ja);
  line-height: 1.65;
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p {
  text-wrap: pretty;
}

.keep-ja {
  display: inline-block;
  white-space: nowrap;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

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

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

button, input {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20000;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  mix-blend-mode: normal;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.65rem;
  line-height: 1;
}

.wordmark-logo {
  width: clamp(4.8rem, 7vw, 6.4rem);
  height: auto;
}

.wordmark-sub {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.open-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.open-dot {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 0.28rem rgba(233, 255, 0, 0.18);
}

.header-action {
  justify-self: end;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: color 0.2s ease, background 0.2s ease;
}

.header-action:hover {
  color: var(--white);
  background: var(--pink);
}

.sound-player {
  position: absolute;
  top: calc(100% + 1.3rem);
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem 1rem;
  width: min(21rem, calc(100vw - 2.4rem));
  padding: 0.85rem;
  color: var(--ink);
  background: rgba(245, 240, 232, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0.65rem 0.65rem 0 rgba(36, 86, 255, 0.78);
  backdrop-filter: blur(0.8rem);
  transform: rotate(-0.7deg);
}

.sound-player audio {
  display: none;
}

.sound-track {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.sound-track > span:last-child {
  display: grid;
}

.sound-track small {
  font-family: var(--font-en);
  font-size: 0.46rem;
  letter-spacing: 0.12em;
}

.sound-track strong {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.sound-equalizer {
  display: flex;
  align-items: end;
  gap: 0.13rem;
  width: 1.45rem;
  height: 1.5rem;
  padding: 0.25rem;
  background: var(--pink);
}

.sound-equalizer i {
  width: 0.16rem;
  height: 45%;
  background: var(--ink);
  transform-origin: center bottom;
}

.sound-equalizer i:nth-child(2) {
  height: 80%;
}

.sound-equalizer i:nth-child(3) {
  height: 60%;
}

.sound-equalizer i:nth-child(4) {
  height: 100%;
}

.sound-player[data-state="playing"] .sound-equalizer i {
  animation: sound-bars 0.55s ease-in-out infinite alternate;
}

.sound-player[data-state="playing"] .sound-equalizer i:nth-child(2) {
  animation-delay: -0.18s;
}

.sound-player[data-state="playing"] .sound-equalizer i:nth-child(3) {
  animation-delay: -0.34s;
}

.sound-player[data-state="playing"] .sound-equalizer i:nth-child(4) {
  animation-delay: -0.09s;
}

.sound-status {
  align-self: center;
  margin: 0;
  color: var(--blue-deep);
  font-family: var(--font-en);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.sound-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(7, 8, 17, 0.24);
}

.sound-actions button {
  min-height: 2.25rem;
  padding: 0.45rem 0.7rem;
  color: var(--ink);
  background: var(--acid);
  border: 0;
  font-size: 0.68rem;
  font-weight: 900;
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.sound-actions button + button {
  color: var(--white);
  background: var(--cobalt);
}

.sound-actions button:disabled {
  color: rgba(7, 8, 17, 0.42);
  background: rgba(7, 8, 17, 0.09);
  cursor: default;
}

.sound-actions button + button:disabled {
  color: rgba(245, 240, 232, 0.45);
  background: rgba(7, 8, 17, 0.72);
}

.hero {
  position: relative;
  min-height: 100svh;
  height: max(760px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-media,
.hero-grade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -5;
  background:
    radial-gradient(circle at 18% 32%, rgba(36, 86, 255, 0.48), transparent 24rem),
    linear-gradient(145deg, #090a1a, #03040b);
}

.hero-media img {
  width: 72%;
  height: 100%;
  margin-left: auto;
  object-fit: cover;
  object-position: 50% 39%;
  filter: brightness(0.84) saturate(1.18) contrast(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 15%, black 32%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 15%, black 32%);
  transform: scale(1.015);
  animation: hero-in 1.2s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-grade {
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(6, 7, 18, 0.3) 0%, transparent 42%, rgba(4, 5, 13, 0.91) 100%),
    linear-gradient(90deg, rgba(6, 7, 18, 0.68) 0%, rgba(18, 39, 178, 0.08) 52%, rgba(255, 70, 186, 0.12) 100%),
    radial-gradient(circle at 72% 42%, rgba(255, 102, 199, 0.18), transparent 28%);
}

.hero-grid {
  z-index: -3;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 11vw 11vw;
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 14%;
  right: -7vw;
  z-index: -2;
  width: min(40vw, 34rem);
  aspect-ratio: 1;
  border: clamp(2rem, 4vw, 5rem) solid rgba(255, 102, 199, 0.35);
  border-radius: 50%;
  mix-blend-mode: screen;
}

.hero::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 18%;
  z-index: -1;
  width: clamp(5rem, 10vw, 9rem);
  height: clamp(1rem, 1.7vw, 1.5rem);
  background: var(--acid);
  transform: rotate(-18deg);
  box-shadow: 0 0 2.2rem rgba(233, 255, 0, 0.34);
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.hero-orbit-a {
  top: 17%;
  left: 8%;
  width: 2.5rem;
  aspect-ratio: 1;
  background: var(--red);
  border: 0;
  box-shadow: 0 0 0 1rem rgba(255, 73, 58, 0.13);
}

.hero-orbit-b {
  right: 29%;
  bottom: 25%;
  width: 6rem;
  aspect-ratio: 1;
  border-width: 0.9rem;
  border-color: rgba(255, 255, 255, 0.48);
}

.hero-kicker {
  position: absolute;
  top: 13%;
  left: clamp(1rem, 4.5vw, 5rem);
  z-index: 4;
  margin: 0;
  padding: 0.45rem 0.65rem;
  color: var(--ink);
  background: var(--pink);
  font-family: var(--font-en);
  font-size: clamp(0.58rem, 0.8vw, 0.72rem);
  letter-spacing: 0.12em;
  transform: rotate(-2deg);
}

.hero-side-note {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  z-index: 4;
  margin: 0;
  font-family: var(--font-en);
  font-size: 0.57rem;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-title {
  position: absolute;
  inset: 16% 0 auto;
  z-index: 3;
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.78;
  pointer-events: none;
}

.hero-title-top,
.hero-title-bottom {
  display: block;
  width: max-content;
}

.hero-title-top {
  margin-left: -0.04em;
  color: var(--acid);
  font-size: clamp(6.6rem, 17vw, 16rem);
  text-shadow: 0.045em 0.045em 0 var(--cobalt), -0.015em -0.015em 0 var(--ink);
}

.hero-particle {
  color: var(--pink);
  font-size: 0.47em;
  letter-spacing: -0.2em;
  vertical-align: 0.55em;
  text-shadow: none;
}

.hero-title-bottom {
  margin-top: 0.12em;
  margin-left: clamp(1rem, 8vw, 9rem);
  color: transparent;
  font-size: clamp(5rem, 13vw, 12.5rem);
  -webkit-text-stroke: clamp(1.5px, 0.22vw, 4px) var(--white);
  paint-order: stroke fill;
  filter: drop-shadow(0.045em 0.055em 0 var(--cobalt));
  transform: scaleX(0.89);
  transform-origin: left center;
}

.hero-stamp {
  position: absolute;
  top: 15%;
  right: clamp(2.5rem, 8vw, 8rem);
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(4.4rem, 8vw, 7.5rem);
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-family: var(--font-en);
  line-height: 0.8;
  transform: rotate(11deg);
  box-shadow: 0.65rem 0.65rem 0 rgba(36, 86, 255, 0.76);
}

.hero-stamp span {
  font-size: clamp(0.4rem, 0.7vw, 0.65rem);
  letter-spacing: 0.2em;
}

.hero-stamp strong {
  font-size: clamp(1.4rem, 3vw, 2.8rem);
}

.hero-hours {
  position: absolute;
  top: 57%;
  left: clamp(1rem, 4.5vw, 5rem);
  z-index: 5;
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: baseline;
  gap: 0 0.45rem;
  padding: 0.7rem 0.85rem 0.75rem;
  color: var(--white);
  background: rgba(7, 8, 17, 0.72);
  border-top: 1px solid var(--acid);
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(0.7rem);
}

.hero-hours > span {
  grid-column: 1 / -1;
  color: var(--acid);
  font-family: var(--font-en);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
}

.hero-hours strong {
  font-family: var(--font-en);
  font-size: clamp(1.4rem, 2.6vw, 2.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-hours i {
  color: var(--pink);
  font-style: normal;
}

.hero-hours small {
  grid-column: 1 / -1;
  margin-top: 0.35rem;
  font-family: var(--font-en);
  font-size: 0.45rem;
  letter-spacing: 0.12em;
}

.hero-replay {
  position: absolute;
  bottom: 12%;
  left: clamp(1rem, 4.5vw, 5rem);
  z-index: 5;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 0.85rem;
  align-items: start;
  max-width: 27rem;
  padding: 0.85rem 1rem 0.9rem;
  color: var(--ink);
  background: rgba(245, 240, 232, 0.93);
  box-shadow: 0.7rem 0.7rem 0 var(--cobalt);
  transform: rotate(-1.5deg);
}

.hero-replay-number {
  grid-row: 1 / 3;
  color: var(--pink);
  font-family: var(--font-en);
  font-size: 2.2rem;
  line-height: 1;
}

.hero-replay p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.15;
}

.hero-replay small {
  margin-top: 0.3rem;
  font-size: 0.63rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-actions {
  position: absolute;
  right: clamp(1rem, 4.5vw, 5rem);
  bottom: 11%;
  z-index: 5;
  display: flex;
  gap: 0.7rem;
}

.action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 12rem;
  min-height: 5.3rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.action:hover {
  transform: translateY(-0.35rem);
}

.action span {
  font-weight: 900;
  letter-spacing: -0.04em;
}

.action small {
  font-family: var(--font-en);
  font-size: 0.53rem;
  letter-spacing: 0.1em;
}

.action-primary {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.action-primary:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.action-ghost {
  color: var(--white);
  background: rgba(7, 8, 17, 0.56);
  backdrop-filter: blur(0.6rem);
}

.action-ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 7;
  width: 100%;
  padding: 0.55rem 0;
  color: var(--ink);
  background: var(--pink);
  overflow: hidden;
  transform: rotate(-0.45deg) scale(1.02);
  transform-origin: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  font-family: var(--font-en);
  font-size: clamp(0.75rem, 1vw, 1rem);
  letter-spacing: 0.08em;
  animation: ticker 18s linear infinite;
}

.ticker-track i {
  color: var(--cobalt);
  font-style: normal;
}

.editorial-section {
  position: relative;
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 10rem) clamp(1.15rem, 5vw, 6rem);
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--acid);
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.section-index {
  position: absolute;
  top: 5rem;
  right: clamp(1.2rem, 5vw, 6rem);
  display: grid;
  color: rgba(245, 240, 232, 0.34);
  font-family: var(--font-en);
  text-align: right;
}

.section-index span {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.section-index strong {
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.85;
}

.manifesto {
  padding-bottom: clamp(8rem, 14vw, 14rem);
  background:
    radial-gradient(circle at 100% 38%, rgba(255, 102, 199, 0.16), transparent 30rem),
    var(--ink);
  overflow: hidden;
}

.manifesto::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -8rem;
  width: 17rem;
  aspect-ratio: 1;
  border: 4rem solid rgba(36, 86, 255, 0.22);
  border-radius: 50%;
}

.manifesto-copy {
  position: relative;
  z-index: 1;
  max-width: 68rem;
}

.manifesto-copy h2 {
  margin: 0;
  font-size: clamp(3.2rem, 8.5vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.93;
}

.manifesto-copy h2 span {
  display: block;
  white-space: nowrap;
}

.manifesto-copy .type-outline {
  width: max-content;
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.13vw, 2px) var(--pink);
  transform: translateX(clamp(1rem, 8vw, 8rem));
}

.manifesto-lead {
  max-width: 44rem;
  margin: clamp(3rem, 6vw, 6rem) 0 0 auto;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2;
}

.manifesto-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 4vw, 4.5rem);
  max-width: 74rem;
  margin: clamp(4rem, 8vw, 8rem) auto 0;
  background: transparent;
  border: 0;
}

.manifesto-facts article {
  position: relative;
  min-height: 17rem;
  padding: clamp(1.4rem, 3vw, 2.5rem) 0;
  background: transparent;
  border-top: 1px solid rgba(245, 240, 232, 0.78);
  border-bottom: 1px solid var(--line);
}

.manifesto-facts article:nth-child(2) {
  color: var(--ivory);
  background: transparent;
  transform: translateY(5rem);
}

.fact-no {
  display: block;
  margin-bottom: 5rem;
  color: var(--acid);
  font-family: var(--font-en);
  font-size: 0.62rem;
}

.manifesto-facts article:nth-child(2) .fact-no {
  color: var(--pink);
}

.manifesto-facts strong {
  display: block;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  letter-spacing: -0.06em;
}

.manifesto-facts p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.9;
}

.manifesto-facts article::after {
  content: "●";
  position: absolute;
  top: -0.65rem;
  right: 0;
  color: var(--pink);
  font-size: 0.75rem;
}

.manifesto-facts article:nth-child(2)::after {
  color: var(--acid);
}

.manifesto-facts article:nth-child(3)::after {
  color: var(--cobalt);
}

.manifesto-ribbon {
  position: absolute;
  right: -2%;
  bottom: 4%;
  width: 104%;
  padding: 0.7rem;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--font-en);
  font-size: clamp(1rem, 2.5vw, 2.2rem);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transform: rotate(2.5deg);
  overflow: hidden;
}

.play {
  width: 100%;
  max-width: none;
  padding-right: clamp(1rem, 3vw, 3rem);
  padding-left: clamp(1rem, 3vw, 3rem);
  color: var(--ivory);
  background:
    linear-gradient(120deg, rgba(36, 86, 255, 0.3), transparent 35%),
    var(--ink-soft);
  overflow: hidden;
}

.play-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem;
  width: min(100%, 1500px);
  margin: 0 auto clamp(3rem, 6vw, 6rem);
}

.play-heading .eyebrow {
  grid-column: 1 / -1;
  color: var(--acid);
}

.play-heading h2 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 8.5rem);
  line-height: 0.78;
  letter-spacing: -0.11em;
}

.play-heading h2 span,
.play-heading h2 strong {
  display: block;
  white-space: nowrap;
}

.play-heading h2 strong {
  color: var(--pink);
  font-size: 0.72em;
  transform: translateX(10%);
}

.play-heading > p:last-child {
  max-width: 24rem;
  margin: 0 0 0.6rem auto;
  font-size: 0.92rem;
  font-weight: 700;
}

.play-slider-ui {
  display: none;
}

.play-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(18, clamp(3.2rem, 5.8vw, 6rem));
  gap: 0;
  width: min(100%, 1500px);
  margin: 0 auto;
}

.play-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.play-card img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2, .8, .2, 1), filter 0.8s ease;
}

.play-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.2);
}

.play-card-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(7, 8, 17, 0.04), rgba(7, 8, 17, 0.84));
}

.play-card-darts {
  grid-column: 1 / 8;
  grid-row: 2 / 12;
  z-index: 1;
}

.play-card-darts .play-card-wash {
  background:
    linear-gradient(180deg, rgba(36, 86, 255, 0.05), rgba(7, 8, 17, 0.88)),
    linear-gradient(90deg, rgba(36, 86, 255, 0.24), transparent);
}

.play-card-karaoke .play-card-wash {
  background: linear-gradient(180deg, rgba(255, 102, 199, 0.1), rgba(65, 6, 52, 0.88));
}

.play-card-karaoke {
  grid-column: 8 / 13;
  grid-row: 1 / 8;
  z-index: 2;
  transform: translateX(-1.4rem);
}

.play-card-game .play-card-wash {
  background: linear-gradient(180deg, rgba(233, 255, 0, 0.04), rgba(7, 8, 17, 0.9));
}

.play-card-game {
  grid-column: 7 / 12;
  grid-row: 9 / 17;
  z-index: 5;
  transform: translateX(1.5rem);
}

.play-card-floor {
  grid-column: 2 / 8;
  grid-row: 12 / 19;
  z-index: 4;
  transform: translate(-1.5rem, -1rem);
}

.card-counter {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.4rem 0.55rem;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--font-en);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.play-card-copy {
  position: absolute;
  right: 1.5rem;
  bottom: 1.6rem;
  left: 1.5rem;
  color: var(--white);
}

.play-card-copy p {
  margin: 0 0 0.5rem;
  color: var(--acid);
  font-family: var(--font-en);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.play-card-copy h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(3.3rem, 8vw, 8.2rem);
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 0.9;
  text-shadow: 0.07em 0.07em 0 var(--cobalt);
}

.play-card-karaoke .play-card-copy h3 {
  text-shadow: 0.07em 0.07em 0 var(--pink);
}

.play-card-game .play-card-copy h3 {
  text-shadow: 0.07em 0.07em 0 rgba(233, 255, 0, 0.56);
}

.play-card-copy span {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.play-side-type {
  position: absolute;
  top: 35%;
  right: -0.09em;
  margin: 0;
  color: rgba(233, 255, 0, 0.03);
  font-family: var(--font-en);
  font-size: clamp(8rem, 21vw, 25rem);
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(233, 255, 0, 0.2);
  writing-mode: vertical-rl;
  pointer-events: none;
}

.price {
  width: 100%;
  max-width: none;
  padding-right: clamp(1.2rem, 5vw, 6rem);
  padding-left: clamp(1.2rem, 5vw, 6rem);
  background:
    radial-gradient(circle at 20% 45%, rgba(36, 86, 255, 0.25), transparent 30rem),
    var(--ink-soft);
}

.price::before {
  content: "+";
  position: absolute;
  top: 8%;
  right: 7%;
  color: var(--pink);
  font-family: var(--font-en);
  font-size: clamp(5rem, 10vw, 11rem);
  line-height: 1;
  transform: rotate(15deg);
}

.price-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 26rem);
  gap: 3rem;
  align-items: end;
  width: min(100%, 1450px);
  margin: 0 auto clamp(4rem, 8vw, 8rem);
}

.price-heading .eyebrow {
  grid-column: 1 / -1;
}

.price-heading h2 {
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 8.8rem);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.87;
}

.price-heading h2 span,
.price-heading h2 strong {
  display: block;
  white-space: nowrap;
}

.price-heading h2 strong {
  color: var(--pink);
  transform: translateX(11%);
}

.price-heading > p:last-child {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  line-height: 2;
}

.price-poster {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
  width: min(100%, 1450px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem);
  color: var(--ink);
  background: var(--pink);
  overflow: hidden;
}

.price-poster::before {
  content: "";
  position: absolute;
  top: -8rem;
  left: 50%;
  width: 22rem;
  aspect-ratio: 1;
  border: 5rem solid var(--acid);
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0.46;
}

.price-sex {
  position: relative;
  z-index: 1;
}

.price-sex p {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(0.6rem, 1vw, 0.8rem);
  letter-spacing: 0.13em;
}

.price-sex strong {
  display: flex;
  align-items: flex-start;
  gap: 0.06em;
  font-family: var(--font-en);
  font-size: clamp(4.4rem, 11vw, 12rem);
  letter-spacing: -0.1em;
  line-height: 0.9;
  white-space: nowrap;
}

.price-sex strong span {
  font-size: 0.25em;
  line-height: 1;
  margin-top: 0.15em;
}

.price-cross {
  position: relative;
  z-index: 1;
  color: var(--blue-deep);
  font-family: var(--font-en);
  font-size: clamp(3rem, 7vw, 7rem);
}

.price-poster-note {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  left: 1rem;
  z-index: 1;
  margin: 0;
  font-family: var(--font-en);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.price-discount-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) 1fr 6.5rem;
  align-items: stretch;
  width: min(100%, 1180px);
  margin: clamp(3.5rem, 7vw, 6rem) auto clamp(2.5rem, 5vw, 4.5rem);
  color: var(--ivory);
  background: rgba(7, 8, 17, 0.8);
  border-top: 1px solid var(--acid);
  border-bottom: 1px solid var(--line);
  box-shadow: 0.8rem 0.8rem 0 rgba(255, 102, 199, 0.2);
  overflow: hidden;
}

.price-discount-value {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 8.5rem;
  padding: 1.25rem 2.8rem 1.25rem 1.4rem;
  color: var(--ink);
  background: var(--acid);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.price-discount-value span {
  font-family: var(--font-en);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
}

.price-discount-value strong {
  font-family: var(--font-en);
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.price-discount-copy {
  order: 2;
  align-self: center;
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 1.25rem clamp(1rem, 3vw, 2.5rem);
}

.price-discount-copy strong {
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  letter-spacing: -0.04em;
}

.price-discount-copy span {
  color: rgba(245, 240, 232, 0.62);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.price-discount-badge {
  order: 3;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--pink);
  font-family: var(--font-en);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  writing-mode: vertical-rl;
}

.calculator {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 6rem);
  width: min(100%, 1180px);
  margin: clamp(4rem, 8vw, 8rem) auto 0;
  padding: clamp(1.3rem, 4vw, 4rem);
  border: 1px solid var(--line);
  background: rgba(7, 8, 17, 0.74);
  backdrop-filter: blur(1rem);
}

.calculator-heading {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
}

.calculator-heading h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 3rem);
  letter-spacing: -0.06em;
  line-height: 1.25;
}

.calculator-no {
  padding: 0.6rem;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--font-en);
  font-size: 0.53rem;
  line-height: 1.2;
}

.gender-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 2.5rem 0 0;
  padding: 0;
  border: 0;
}

.gender-control legend {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.gender-control input {
  position: absolute;
  opacity: 0;
}

.gender-control span {
  display: flex;
  flex-direction: column;
  padding: 0.9rem;
  border: 1px solid var(--line);
  font-family: var(--font-en);
  font-size: 0.72rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.gender-control span b {
  margin-top: 0.25rem;
  font-family: var(--font-ja);
  font-size: 0.6rem;
}

.gender-control input:checked + span {
  color: var(--ink);
  background: var(--pink);
  border-color: var(--pink);
}

.gender-control input:focus-visible + span {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.time-control {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.time-control span {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
}

.time-control strong {
  font-size: 1.6rem;
  letter-spacing: -0.06em;
}

.range {
  width: 100%;
  height: 3px;
  margin: 1.3rem 0 0;
  background: linear-gradient(90deg, var(--pink), var(--cobalt), var(--acid));
  border-radius: 0;
  appearance: none;
}

.range::-webkit-slider-thumb {
  width: 1.8rem;
  height: 1.8rem;
  background: var(--acid);
  border: 0.35rem solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--acid);
  appearance: none;
}

.range::-moz-range-thumb {
  width: 1.1rem;
  height: 1.1rem;
  background: var(--acid);
  border: 0.35rem solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--acid);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-family: var(--font-en);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
}

.calculator-result {
  position: relative;
  align-self: stretch;
  min-height: 18rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--ink);
  background: var(--ivory);
  overflow: hidden;
}

.calculator-result::before {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 12rem;
  aspect-ratio: 1;
  border: 2rem solid var(--cobalt);
  border-radius: 50%;
  opacity: 0.8;
}

.calculator-result p,
.calculator-result strong,
.calculator-result small {
  position: relative;
  z-index: 1;
}

.calculator-result p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
}

.calculator-result strong {
  display: block;
  margin: 1.3rem 0 0.5rem;
  color: var(--blue-deep);
  font-family: var(--font-en);
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: -0.1em;
  line-height: 0.85;
}

.calculator-result small {
  font-size: 0.68rem;
  font-weight: 700;
}

.calculator-note {
  grid-column: 1 / -1;
  margin: -2rem 0 0;
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.6rem;
}

.mood {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  width: 100%;
  max-width: none;
  color: var(--ivory);
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 102, 199, 0.18), transparent 22rem),
    linear-gradient(135deg, #0e1233, var(--ink));
}

.mood-slider {
  position: relative;
  min-height: min(80vh, 56rem);
  margin-left: calc(clamp(1.15rem, 5vw, 6rem) * -1);
  overflow: hidden;
}

.mood-track {
  display: flex;
  min-height: min(80vh, 56rem);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
}

.mood-track::-webkit-scrollbar {
  display: none;
}

.mood-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  min-height: min(80vh, 56rem);
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}

.mood-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 17, 0.1) 35%, rgba(7, 8, 17, 0.7)),
    linear-gradient(90deg, rgba(36, 86, 255, 0.25), transparent 55%);
  pointer-events: none;
}

.mood-slide img {
  width: 100%;
  height: 100%;
  min-height: min(80vh, 56rem);
  object-fit: cover;
  filter: saturate(1.22) contrast(1.08);
}

.mood-slide figcaption {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 3;
  margin: 0;
  padding: 0.45rem 0.6rem;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--font-en);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.mood-slide figcaption span {
  margin-right: 0.45rem;
  color: var(--blue-deep);
}

.mood-display-type {
  position: absolute;
  right: -0.05em;
  bottom: 0;
  z-index: 2;
  color: var(--acid);
  font-family: var(--font-en);
  font-size: clamp(4rem, 9vw, 9rem);
  letter-spacing: -0.1em;
  line-height: 0.72;
  text-align: right;
  pointer-events: none;
}

.mood-controls {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.mood-controls p {
  display: flex;
  align-items: baseline;
  gap: 0.28rem;
  min-width: 4.5rem;
  margin: 0;
  color: var(--white);
  font-family: var(--font-en);
}

.mood-controls p strong {
  color: var(--acid);
  font-size: 1.25rem;
}

.mood-controls p span {
  font-size: 0.65rem;
}

.mood-arrow {
  display: grid;
  place-items: center;
  width: 2.75rem;
  aspect-ratio: 1;
  padding: 0;
  color: var(--white);
  background: rgba(7, 8, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  cursor: pointer;
  backdrop-filter: blur(0.5rem);
  transition: color 0.2s ease, background 0.2s ease;
}

.mood-arrow:hover,
.mood-arrow:focus-visible {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  outline: 0;
}

.mood-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1.02;
}

.mood-copy h2 em {
  color: var(--cobalt);
  font-style: normal;
  white-space: nowrap;
}

.mood-copy .eyebrow {
  color: var(--acid);
}

.mood-list {
  margin-top: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.mood-list article {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.mood-list article > span {
  color: var(--pink);
  font-family: var(--font-en);
  font-size: 0.62rem;
}

.mood-list h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.mood-list p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.85;
}

.access {
  width: 100%;
  max-width: none;
  min-height: 90vh;
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 50%, rgba(255, 102, 199, 0.28), transparent 24rem),
    linear-gradient(135deg, var(--blue-deep), #08102f 54%, var(--ink));
  overflow: hidden;
}

.access::before {
  content: "";
  position: absolute;
  top: -12rem;
  right: -10rem;
  width: 35rem;
  aspect-ratio: 1;
  border: 7rem solid rgba(233, 255, 0, 0.87);
  border-radius: 50%;
  mix-blend-mode: screen;
}

.access::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: -8%;
  width: 65%;
  height: 3rem;
  background: var(--pink);
  transform: rotate(-7deg);
}

.access-label {
  position: absolute;
  top: 2rem;
  right: clamp(1rem, 5vw, 6rem);
  display: flex;
  gap: 1rem;
  font-family: var(--font-en);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.access-copy {
  position: relative;
  z-index: 2;
  max-width: 62rem;
}

.access-copy h2 {
  margin: 0;
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.13em;
  line-height: 0.78;
}

.access-copy h2 span,
.access-copy h2 strong {
  display: block;
  white-space: nowrap;
}

.access-copy h2 strong {
  width: max-content;
  color: transparent;
  -webkit-text-stroke: clamp(1.5px, 0.18vw, 3px) var(--acid);
  transform: translateX(14%);
}

.access-address {
  margin: clamp(3rem, 6vw, 6rem) 0 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 800;
  line-height: 1.8;
}

.access-open {
  margin: 1rem 0 0;
  color: var(--acid);
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.access-map {
  position: relative;
  z-index: 2;
  width: min(100%, 75rem);
  height: clamp(20rem, 38vw, 32rem);
  margin-top: clamp(3rem, 6vw, 6rem);
  padding: clamp(0.45rem, 0.8vw, 0.75rem);
  background: var(--acid);
  box-shadow: 1.25rem 1.25rem 0 rgba(255, 102, 199, 0.76);
  transform: rotate(-0.7deg);
}

.access-map.reveal {
  transform: rotate(-0.7deg) translateY(2.5rem);
}

.access-map.reveal.is-visible {
  transform: rotate(-0.7deg) translateY(0);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(1.08);
}

.access-map > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.65rem;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--font-en);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  pointer-events: none;
}

.access-actions {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 75rem;
  margin-top: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.access-actions a {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  min-height: 9rem;
  padding: 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease, background 0.2s ease;
}

.access-actions a:hover {
  color: var(--ink);
  background: var(--acid);
}

.access-actions span {
  font-family: var(--font-en);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.access-actions strong {
  margin-top: auto;
  font-size: 1rem;
}

.access-sound {
  position: absolute;
  right: 7%;
  bottom: 10%;
  z-index: 1;
  width: clamp(11rem, 21vw, 22rem);
}

.access-disc {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--pink);
  border: clamp(1rem, 2.4vw, 2.6rem) solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--pink), 0 0 5rem rgba(255, 102, 199, 0.45);
  transform: rotate(8deg);
  transform-origin: center;
  animation: access-disc-spin 14s linear infinite;
  will-change: transform;
}

.access-disc span,
.access-disc small {
  position: absolute;
  font-family: var(--font-en);
}

.access-disc span {
  top: 32%;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.08em;
}

.access-disc small {
  bottom: 27%;
  font-size: 0.5rem;
  letter-spacing: 0.24em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  padding: 2rem clamp(1.2rem, 4vw, 4rem) 2.5rem;
  color: var(--ivory);
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-wordmark {
  width: clamp(13rem, 27vw, 25rem);
}

.footer-wordmark img {
  width: 100%;
  height: auto;
}

.site-footer p,
.site-footer small {
  margin: 0;
}

.site-footer p {
  font-family: var(--font-en);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.site-footer small {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.5rem;
}

.site-footer > a {
  justify-self: end;
  font-family: var(--font-en);
  font-size: 0.6rem;
}

.mobile-reserve {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2, .7, .2, 1);
}

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

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes access-disc-spin {
  from { transform: rotate(8deg); }
  to { transform: rotate(368deg); }
}

@keyframes play-swipe-hint {
  0%, 100% { transform: translateX(-0.1rem); }
  50% { transform: translateX(0.28rem); }
}

@keyframes sound-bars {
  from { transform: scaleY(0.3); }
  to { transform: scaleY(1); }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .open-note {
    display: none;
  }

  .hero-title {
    top: 19%;
  }

  .hero-replay {
    bottom: 22%;
  }

  .hero-actions {
    bottom: 10%;
  }

  .manifesto-facts {
    grid-template-columns: 1fr;
  }

  .manifesto-facts article {
    min-height: 0;
  }

  .fact-no {
    margin-bottom: 2rem;
  }

  .play-heading,
  .price-heading {
    grid-template-columns: 1fr;
  }

  .play-heading > p:last-child,
  .price-heading > p:last-child {
    margin-left: 0;
  }

  .play-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(28rem, 65vh));
  }

  .play-card-darts {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    transform: none;
  }

  .play-card-karaoke {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    transform: none;
  }

  .play-card-game {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    transform: none;
  }

  .play-card-floor {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    transform: none;
  }

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

  .calculator-note {
    margin-top: 0;
  }

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

  .mood-slider {
    margin-right: calc(clamp(1.15rem, 5vw, 6rem) * -1);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 4.7rem;
  }

  .site-header {
    padding: 0.8rem 0.85rem;
  }

  .sound-player {
    top: calc(100% + 0.65rem);
    right: calc(4rem + 0.65rem);
    width: min(20rem, calc(100vw - 1.3rem));
    padding: 0.55rem;
    box-shadow: 0.45rem 0.45rem 0 rgba(36, 86, 255, 0.78);
  }

  .sound-track strong {
    font-size: 0.75rem;
  }

  .sound-actions button {
    min-height: 1.8rem;
  }

  .wordmark-logo {
    width: 4.6rem;
  }

  .wordmark-sub {
    display: none;
  }

  .header-action {
    padding: 0.55rem 0.65rem;
    font-size: 0.65rem;
  }

  .hero {
    height: max(760px, 100svh);
  }

  .hero-media img {
    width: 100%;
    margin-left: 0;
    object-position: 53% 37%;
    filter: brightness(0.82) saturate(1.2) contrast(1.1);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-grade {
    background:
      linear-gradient(180deg, rgba(6, 7, 18, 0.5) 0%, rgba(6, 7, 18, 0.05) 26%, rgba(6, 7, 18, 0.12) 55%, rgba(4, 5, 13, 0.96) 100%),
      linear-gradient(90deg, rgba(6, 7, 18, 0.57), transparent 70%),
      radial-gradient(circle at 76% 42%, rgba(255, 102, 199, 0.23), transparent 35%);
  }

  .hero-grid {
    background-size: 25vw 25vw;
  }

  .hero::before {
    top: 16%;
    right: -7rem;
    width: 18rem;
    border-width: 2.8rem;
  }

  .hero::after {
    right: 7%;
    bottom: 30%;
  }

  .hero-kicker {
    top: 11%;
    left: 0.8rem;
    font-size: 0.5rem;
  }

  .hero-side-note {
    right: 0.55rem;
  }

  .hero-title {
    top: 15.5%;
  }

  .hero-title-top {
    font-size: clamp(6rem, 34vw, 8.5rem);
  }

  .hero-title-bottom {
    margin-top: 0.22em;
    margin-left: 0.5rem;
    font-size: clamp(4.2rem, 21vw, 5.7rem);
    transform: scaleX(0.9);
  }

  .hero-stamp {
    top: 30%;
    right: 0.9rem;
    width: 4.6rem;
  }

  .hero-hours {
    top: 49%;
    left: 0.8rem;
    padding: 0.55rem 0.7rem 0.6rem;
  }

  .hero-hours strong {
    font-size: 1.35rem;
  }

  .hero-orbit-a {
    top: 12%;
    left: auto;
    right: 5rem;
    width: 1.4rem;
  }

  .hero-orbit-b {
    display: none;
  }

  .hero-replay {
    bottom: 17%;
    left: 0.8rem;
    width: calc(100% - 1.6rem);
    max-width: none;
  }

  .hero-replay-number {
    font-size: 1.7rem;
  }

  .hero-replay p {
    font-size: 0.9rem;
  }

  .hero-replay small {
    font-size: 0.57rem;
  }

  .hero-actions {
    right: 0.8rem;
    bottom: 6%;
    left: 0.8rem;
    gap: 0.45rem;
  }

  .action {
    flex: 1;
    min-width: 0;
    min-height: 4.3rem;
    padding: 0.65rem 0.7rem;
  }

  .action span {
    font-size: 0.73rem;
  }

  .action small {
    font-size: 0.45rem;
  }

  .hero-ticker {
    padding: 0.4rem 0;
  }

  .section-index {
    top: 3rem;
  }

  .manifesto {
    padding-top: 7rem;
  }

  .manifesto-copy h2 {
    font-size: clamp(2.55rem, 13.4vw, 4.8rem);
  }

  .manifesto-copy .type-outline {
    width: auto;
    transform: translateX(0.3rem);
  }

  .manifesto-lead {
    margin-top: 2.5rem;
    font-size: 0.88rem;
    line-height: 1.9;
  }

  .manifesto-facts {
    margin-top: 3rem;
  }

  .manifesto-facts article {
    padding: 1.5rem 0;
  }

  .manifesto-facts article:nth-child(2) {
    transform: none;
  }

  .play-heading {
    margin-bottom: 2.5rem;
  }

  .play-heading h2,
  .price-heading h2 {
    font-size: clamp(2.65rem, 14.5vw, 5.2rem);
  }

  .play-heading h2 strong,
  .price-heading h2 strong {
    transform: translateX(0);
  }

  .play-slider-ui {
    display: grid;
    grid-template-columns: auto minmax(3rem, 1fr) auto auto;
    align-items: center;
    gap: 0.75rem;
    margin: -0.7rem 0 1.1rem;
  }

  .play-slider-ui > p {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    color: var(--acid);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .play-slider-ui > p span {
    font-family: var(--font-en);
    font-size: 1rem;
    animation: play-swipe-hint 1.4s ease-in-out infinite;
  }

  .play-slider-progress {
    height: 2px;
    background: rgba(245, 240, 232, 0.24);
    overflow: hidden;
  }

  .play-slider-progress i {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--pink);
    transform: scaleX(0.25);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }

  .play-slider-count {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    font-family: var(--font-en);
  }

  .play-slider-count strong {
    color: var(--pink);
    font-size: 1rem;
  }

  .play-slider-count span {
    color: rgba(245, 240, 232, 0.48);
    font-size: 0.52rem;
  }

  .play-slider-buttons {
    display: flex;
  }

  .play-slider-buttons button {
    display: grid;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    padding: 0;
    color: var(--ink);
    background: var(--acid);
    border: 0;
    font-family: var(--font-en);
    cursor: pointer;
  }

  .play-slider-buttons button + button {
    color: var(--white);
    background: var(--cobalt);
  }

  .play-grid {
    position: relative;
    display: flex;
    gap: 0;
    margin-right: -1rem;
    padding-right: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .play-grid::-webkit-scrollbar {
    display: none;
  }

  .play-card {
    flex: 0 0 84vw;
    min-height: 68svh;
    transform: none;
    scroll-snap-align: start;
  }

  .play-card + .play-card {
    border-left: 0.45rem solid var(--ink-soft);
  }

  .play-card-copy {
    right: 1rem;
    bottom: 1.2rem;
    left: 1rem;
  }

  .play-card-copy h3 {
    font-size: 4.1rem;
  }

  .play-side-type {
    display: none;
  }

  .price::before {
    top: 4%;
  }

  .price-heading {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .price-poster {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 2rem 1.2rem 2.8rem;
  }

  .price-discount-banner {
    margin-top: 2.5rem;
    grid-template-columns: 1fr 4.2rem;
    box-shadow: 0.5rem 0.5rem 0 rgba(255, 102, 199, 0.2);
  }

  .price-discount-value {
    order: 1;
    grid-column: 1 / -1;
    min-height: 6.4rem;
    padding: 1rem 2rem 1rem 1rem;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  }

  .price-discount-value strong {
    font-size: 3.2rem;
  }

  .price-discount-copy {
    order: 2;
    padding: 1rem;
  }

  .price-discount-copy strong {
    font-size: 0.95rem;
  }

  .price-discount-copy span {
    font-size: 0.58rem;
    line-height: 1.7;
  }

  .price-discount-badge {
    order: 3;
    font-size: 1rem;
  }

  .price-sex + .price-cross + .price-sex {
    text-align: right;
  }

  .price-sex + .price-cross + .price-sex strong {
    justify-content: flex-end;
  }

  .price-sex strong {
    font-size: clamp(4.6rem, 23vw, 7.2rem);
  }

  .price-cross {
    position: static;
    justify-self: center;
    font-size: 2.6rem;
    line-height: 0.72;
  }

  .calculator {
    margin-top: 3rem;
    padding: 1.1rem;
  }

  .calculator-heading {
    gap: 0.8rem;
  }

  .calculator-heading h3 {
    font-size: 1.5rem;
  }

  .gender-control {
    margin-top: 1.7rem;
  }

  .gender-control span {
    padding: 0.7rem;
    font-size: 0.6rem;
  }

  .calculator-result {
    min-height: 14rem;
  }

  .calculator-result strong {
    font-size: 4rem;
    white-space: nowrap;
  }

  .mood-slider,
  .mood-track,
  .mood-slide,
  .mood-slide img {
    min-height: 55vh;
  }

  .mood-copy h2 {
    font-size: clamp(2.35rem, 12.5vw, 4.6rem);
  }

  .mood-display-type {
    bottom: 4rem;
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .mood-controls {
    bottom: 0.8rem;
    left: 0.8rem;
  }

  .mood-slide figcaption {
    top: 0.8rem;
    left: 0.8rem;
  }

  .mood-list article {
    grid-template-columns: 2.6rem 1fr;
  }

  .access {
    min-height: 100svh;
  }

  .access::before {
    top: -8rem;
    right: -10rem;
    width: 24rem;
    border-width: 4.5rem;
  }

  .access-copy h2 {
    font-size: clamp(5.2rem, 26vw, 8rem);
  }

  .access-copy h2 strong {
    transform: translateX(0);
  }

  .access-address {
    margin-top: 3.5rem;
    font-size: 0.9rem;
  }

  .access-map {
    width: calc(100% - 0.8rem);
    height: 23rem;
    margin-top: 3.5rem;
    box-shadow: 0.8rem 0.8rem 0 rgba(255, 102, 199, 0.76);
  }

  .access-map.reveal {
    transform: rotate(-0.4deg) translateY(2.5rem);
  }

  .access-map.reveal.is-visible {
    transform: rotate(-0.4deg) translateY(0);
  }

  .access-actions {
    grid-template-columns: 1fr;
    max-width: 75%;
  }

  .access-actions a {
    gap: 0.7rem;
    min-height: 0;
    padding: 0.9rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  }

  .access-actions strong {
    font-size: 0.83rem;
  }

  .access-disc {
    width: 100%;
    border-width: 1.3rem;
  }

  .access-sound {
    right: -4rem;
    bottom: 8%;
    width: 12rem;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding-bottom: 1.5rem;
  }

  .footer-wordmark {
    grid-column: 1 / -1;
    width: min(14rem, 62vw);
  }

  .site-footer > div:nth-child(2) {
    display: none;
  }

  .mobile-reserve {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: block;
    padding: 0.4rem;
    background: var(--ink);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  }

  .mobile-reserve-inner {
    display: flex;
    align-items: center;
    width: 100%;
    background: var(--acid);
    border-radius: 4px;
    overflow: hidden;
  }

  .mobile-reserve-copy {
    flex: 1.1;
    padding: 0.7rem 0.4rem;
    text-align: center;
    border-right: 1px solid rgba(7, 8, 17, 0.2);
  }

  .mobile-reserve-copy span {
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--ink);
    white-space: nowrap;
  }

  .mobile-reserve-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.35rem;
    color: var(--ink);
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease;
  }

  .mobile-reserve-btn.btn-insta {
    flex: 0.95;
    border-right: 1px solid rgba(7, 8, 17, 0.2);
  }

  .mobile-reserve-btn.btn-tel {
    flex: 0.85;
  }

  .mobile-reserve-btn span {
    font-size: 0.85rem;
    font-weight: 900;
    line-height: 1.1;
  }

  .mobile-reserve-btn small {
    font-family: var(--font-en);
    font-size: 0.45rem;
    letter-spacing: 0.03em;
    line-height: 1;
  }

  .mobile-reserve-btn:active {
    background: rgba(0, 0, 0, 0.12);
  }
}

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

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

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

/* Accessibility & LLMO Visually Hidden Section */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

