:root {
  --ink: #3f413d;
  --soft-ink: #62635f;
  --muted: #858780;
  --paper: #fffdf8;
  --paper-2: #f8fbff;
  --line: rgba(31, 32, 38, 0.12);
  --shadow: 0 18px 46px rgba(31, 32, 38, 0.1);
  --teal: #56c3c2;
  --orange: #f47a4b;
  --yellow: #ffba27;
  --green: #7cc51f;
  --pink: #ee5773;
  --lavender: #bf85bd;
  --blue: #91bfe5;
  --white: #ffffff;
  --max: 1180px;
  --apple-gothic: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --body-gothic: "AppleGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  --latin-display: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 9%, rgba(255, 186, 39, 0.12), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(86, 195, 194, 0.1), transparent 24%),
    linear-gradient(rgba(31, 32, 38, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 32, 38, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 48px 48px, 48px 48px;
  font-family: var(--body-gothic);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.78;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-cursor {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(31, 32, 38, 0.3);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.18s ease, height 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.site-cursor.is-visible {
  opacity: 1;
}

.site-cursor.is-active {
  width: 42px;
  height: 42px;
  border-color: rgba(244, 122, 75, 0.42);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(18px, 4vw, 62px);
  background: rgba(255, 253, 248, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(22px);
  transition: padding 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(255, 253, 248, 0.94);
  border-color: var(--line);
}

.brand {
  position: relative;
  z-index: 55;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(108px, 9.8vw, 148px);
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.4vw, 22px);
  color: var(--soft-ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 700;
  letter-spacing: 0;
}

.global-nav a,
.nav-dropdown__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 2px;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  white-space: nowrap;
  cursor: pointer;
}

.global-nav a::before,
.nav-dropdown__trigger::before {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.global-nav a:nth-child(2n)::before {
  background: var(--pink);
}

.global-nav a:nth-child(3n)::before {
  background: var(--yellow);
}

.global-nav a:hover::before,
.global-nav a.is-active::before,
.nav-dropdown:hover .nav-dropdown__trigger::before,
.nav-dropdown:focus-within .nav-dropdown__trigger::before {
  opacity: 1;
  transform: scale(1);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Keeps the desktop Audition dropdown open while moving from the label to the menu. */
.nav-dropdown::after {
  position: absolute;
  left: -150px;
  right: -22px;
  top: 100%;
  height: 24px;
  content: "";
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  display: grid;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 42px rgba(31, 32, 38, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 7px;
  color: var(--ink);
  font-size: 12px;
}

.nav-dropdown__menu a::before {
  opacity: 1;
  transform: scale(0.76);
}

.nav-dropdown__menu a:hover {
  background: rgba(31, 32, 38, 0.06);
}

.menu-toggle {
  position: relative;
  z-index: 55;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 25px;
}

.menu-toggle.is-open span:first-child {
  top: 21px;
  transform: rotate(38deg);
}

.menu-toggle.is-open span:last-child {
  top: 21px;
  transform: rotate(-38deg);
}

.section-panel {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  scroll-margin-top: 92px;
}

.hero {
  width: 100%;
  min-height: 84svh;
  padding: 118px clamp(20px, 5vw, 70px) 54px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  content: "";
}

.hero::before {
  left: max(18px, 7vw);
  top: 122px;
  width: 42px;
  height: 42px;
  background: var(--yellow);
  box-shadow:
    76px 48px 0 var(--teal),
    152px 8px 0 var(--green),
    226px 70px 0 var(--pink);
  opacity: 0.78;
}

.hero::after {
  right: max(12px, 6vw);
  top: 132px;
  width: 48px;
  height: 48px;
  background: var(--blue);
  box-shadow:
    -72px 64px 0 var(--orange),
    -156px 16px 0 var(--teal),
    -228px 82px 0 var(--green);
  opacity: 0.72;
}

.sound-score {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.sound-score::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 32, 38, 0.24), transparent);
  content: "";
}

.sound-score span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 8px rgba(255, 186, 39, 0.14);
  animation: soundPulse 4.8s ease-in-out infinite;
}

.sound-score span:nth-child(2) {
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(86, 195, 194, 0.14);
  animation-delay: -0.9s;
}

.sound-score span:nth-child(3) {
  background: var(--pink);
  box-shadow: 0 0 0 8px rgba(238, 87, 115, 0.13);
  animation-delay: -1.8s;
}

.sound-score span:nth-child(4) {
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(124, 197, 31, 0.13);
  animation-delay: -2.7s;
}

.sound-score span:nth-child(5) {
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(145, 191, 229, 0.15);
  animation-delay: -3.6s;
}

.sound-score--hero {
  left: clamp(24px, 6vw, 86px);
  right: clamp(24px, 7vw, 98px);
  bottom: clamp(118px, 14vw, 178px);
  height: 96px;
}

.sound-score--hero span:nth-child(1) {
  left: 4%;
  top: 52px;
}

.sound-score--hero span:nth-child(2) {
  left: 26%;
  top: 12px;
}

.sound-score--hero span:nth-child(3) {
  left: 49%;
  top: 62px;
}

.sound-score--hero span:nth-child(4) {
  left: 72%;
  top: 18px;
}

.sound-score--hero span:nth-child(5) {
  left: 92%;
  top: 46px;
}

.orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  opacity: 0.92;
  mix-blend-mode: multiply;
  animation: floatBeat 9s ease-in-out infinite;
}

.orb--teal {
  right: 24vw;
  bottom: 12vh;
  width: 62px;
  height: 62px;
  background: var(--teal);
}

.orb--pink {
  right: 17vw;
  bottom: 18vh;
  width: 48px;
  height: 48px;
  background: var(--pink);
  animation-delay: -2s;
}

.orb--yellow {
  left: 12vw;
  bottom: 12vh;
  width: 82px;
  height: 82px;
  background: var(--yellow);
  animation-delay: -4s;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  min-height: calc(92svh - 210px);
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0;
  color: var(--soft-ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kinetic-title {
  display: grid;
  gap: 8px;
  max-width: 850px;
  margin: 20px 0 0;
  font-family: var(--latin-display);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.kinetic-title > span {
  display: block;
  width: fit-content;
  padding: 0 0.04em 0.02em;
  background: var(--paper);
  transform: none;
  white-space: nowrap;
}

.kinetic-title > span:nth-child(1) {
  color: var(--ink);
}

.kinetic-title > span:nth-child(2) {
  color: var(--orange);
  transform: translateX(clamp(10px, 3vw, 34px));
}

.hero__lead {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--ink);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  line-height: 1.85;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button::after {
  width: 9px;
  height: 9px;
  margin-left: 12px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(31, 32, 38, 0.12);
}

.button:hover::after {
  transform: scale(1.35);
}

.button--primary {
  color: var(--white);
  background: var(--ink);
}

.button--line {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
}

.hero-board {
  position: relative;
  min-height: 480px;
}

.beat-lane {
  position: absolute;
  inset: 30px 12px auto auto;
  display: grid;
  gap: 14px;
  width: 210px;
  transform: rotate(8deg);
}

.beat-lane span {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.1;
}

.beat-lane span:nth-child(2) {
  width: 72%;
  background: var(--pink);
  opacity: 0.65;
}

.beat-lane span:nth-child(3) {
  width: 48%;
  background: var(--yellow);
  opacity: 0.8;
}

.beat-lane span:nth-child(4) {
  width: 84%;
  background: var(--teal);
  opacity: 0.65;
}

.beat-lane span:nth-child(5) {
  width: 58%;
  background: var(--green);
  opacity: 0.72;
}

.hero-card {
  position: absolute;
  display: grid;
  align-content: end;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(31, 32, 38, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 54px rgba(31, 32, 38, 0.1);
  backdrop-filter: blur(18px);
}

.hero-card > img {
  position: absolute;
  inset: 10px 10px auto;
  width: calc(100% - 20px);
  height: 52%;
  object-fit: cover;
  border-radius: 6px;
}

.hero-card p,
.hero-card strong {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-card p {
  color: var(--soft-ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-card strong {
  max-width: 300px;
  font-family: var(--apple-gothic);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.28;
}

.hero-card--main {
  left: 0;
  top: 34px;
  width: min(100%, 390px);
  min-height: 270px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-card--float {
  right: 0;
  top: 250px;
  width: min(72%, 280px);
  min-height: 145px;
  background: rgba(255, 255, 255, 0.88);
}

.hero-card--mini {
  left: 0;
  bottom: 16px;
  width: min(58%, 220px);
  min-height: 122px;
  background: var(--yellow);
}

.hero-marquee {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  width: max-content;
  margin-top: clamp(132px, 10vw, 178px);
  color: rgba(31, 32, 38, 0.72);
  font-family: var(--latin-display);
  font-size: clamp(20px, 2.75vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  animation: marquee 28s linear infinite;
}

.hero-marquee > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.shuffle-char {
  display: inline-block;
  white-space: pre;
}

.hero-marquee > span::after {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.about,
.artist,
.link-stack,
.stores,
.recruit,
.contact {
  padding: clamp(34px, 4.2vw, 62px) 0;
}

.section-head {
  max-width: 850px;
  margin-bottom: clamp(22px, 3.5vw, 42px);
}

.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  max-width: none;
}

.section-head h2,
.stack-copy h2,
.recruit-panel h2,
.contact h2 {
  margin: 8px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
}

.section-head p:last-child,
.stack-copy p,
.recruit-panel p,
.contact p {
  max-width: 670px;
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: clamp(13px, 1.12vw, 15px);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.bento-card,
.creator-card,
.stack-card,
.store-card,
.recruit-panel,
.contact__inner {
  border: 1px solid rgba(31, 32, 38, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(31, 32, 38, 0.08);
}

.bento-card {
  position: relative;
  min-height: 230px;
  padding: clamp(22px, 2.7vw, 32px);
  overflow: hidden;
}

.bento-card::after {
  position: absolute;
  right: 24px;
  top: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: -26px 20px 0 var(--teal), 22px 26px 0 var(--pink);
  content: "";
  mix-blend-mode: multiply;
  opacity: 0.78;
}

.bento-card--wide {
  grid-column: span 7;
  min-height: 330px;
}

.profile-card {
  grid-column: span 5;
  background: #f4fbff;
}

.image-card {
  grid-column: span 5;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  padding: 14px;
  background: #f5fbff;
  color: var(--ink);
}

.image-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(1.05) contrast(0.98);
}

.origin-card {
  grid-column: span 7;
  background: #fff6d8;
}

.about-link-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(31, 32, 38, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-link-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(31, 32, 38, 0.1);
}

.about-link-panel img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
}

.about-link-panel div {
  padding: clamp(12px, 2vw, 24px) clamp(10px, 2.6vw, 34px) clamp(12px, 2vw, 24px) 0;
}

.about-link-panel h3 {
  margin: 8px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.28;
}

.about-link-panel p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--soft-ink);
  font-size: clamp(14px, 1.28vw, 16px);
}

.bento-card h3 {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(20px, 1.75vw, 27px);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0;
}

.profile-card h3,
.origin-card h3,
.image-card h3 {
  font-size: clamp(19px, 1.55vw, 24px);
}

.bento-card p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.78;
}

.image-card p,
.image-card .card-label {
  color: var(--soft-ink);
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.creator-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 172px;
  padding: 20px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.creator-card::before,
.creator-card::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  mix-blend-mode: multiply;
}

.creator-card::before {
  right: -18px;
  top: -22px;
  width: 86px;
  height: 86px;
  background: rgba(255, 255, 255, 0.55);
}

.creator-card::after {
  left: 20px;
  bottom: 18px;
  width: 12px;
  height: 12px;
  background: rgba(31, 32, 38, 0.3);
}

.creator-card:hover {
  transform: translateY(-5px) rotate(-0.8deg);
  box-shadow: 0 24px 54px rgba(31, 32, 38, 0.14);
}

.creator-card span {
  color: rgba(31, 32, 38, 0.62);
  font-family: var(--latin-display), var(--apple-gothic);
  font-weight: 800;
  letter-spacing: 0;
}

.creator-card strong {
  position: relative;
  z-index: 1;
  font-family: var(--apple-gothic);
  font-size: clamp(19px, 1.75vw, 26px);
  line-height: 1.25;
}

.tone-pink {
  background: #ffd7e0;
}

.tone-yellow {
  background: #ffe69a;
}

.tone-teal {
  background: #c8f2ef;
}

.tone-green {
  background: #dcf7b9;
}

.tone-orange {
  background: #ffd0b8;
}

.tone-blue {
  background: #d5eaff;
}

.tone-lime {
  background: #eef7a6;
}

.link-stack {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(20px, 3.5vw, 48px);
  align-items: start;
}

.editorial-gateway {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4.6vw, 66px);
  align-items: center;
  padding: clamp(38px, 5vw, 72px) 0;
}

.gateway-copy {
  position: relative;
  z-index: 2;
}

.gateway-copy h2 {
  max-width: 560px;
  margin: 8px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(26px, 3.2vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

.gateway-copy p:last-child {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.9;
}

.gateway-spread {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 92px;
  gap: 12px;
}

.gateway-panel {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 220px;
  padding: clamp(18px, 2.2vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(31, 32, 38, 0.14);
  border-radius: 8px;
  color: var(--ink);
  isolation: isolate;
  box-shadow: 0 22px 54px rgba(31, 32, 38, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gateway-panel:hover {
  transform: translateY(-5px) rotate(-0.4deg);
  box-shadow: 0 30px 72px rgba(31, 32, 38, 0.15);
}

.gateway-panel::before,
.gateway-panel::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.gateway-panel::before {
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(255, 253, 248, 0.92)),
    var(--panel-image) center / cover;
}

.gateway-panel::after {
  z-index: -1;
  right: -52px;
  top: -44px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--panel-dot);
  mix-blend-mode: multiply;
  opacity: 0.48;
}

.gateway-panel--talent {
  --panel-dot: var(--teal);
  --panel-image: url("../images/miuzic-wall.jpg");
  grid-column: span 4;
  grid-row: span 2;
}

.gateway-panel--news {
  --panel-dot: var(--pink);
  --panel-image: url("../images/news/vertex-silver-partner.webp");
  grid-column: span 4;
  grid-row: span 2;
}

.gateway-panel--event {
  --panel-dot: var(--orange);
  --panel-image: url("../images/hero-shizuoka-live.jpg");
  grid-column: span 4;
  grid-row: span 2;
}

.gateway-panel--audition {
  --panel-dot: var(--green);
  --panel-image: url("../images/miuzic-entertainment-visual.png");
  grid-column: 4 / span 5;
  grid-row: span 2;
}

.gateway-number {
  position: absolute;
  left: 18px;
  top: 14px;
  color: rgba(31, 32, 38, 0.2);
  font-family: var(--latin-display);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 900;
  line-height: 1;
}

.gateway-panel .card-label {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(8px);
}

.gateway-panel strong {
  max-width: 430px;
  margin-top: 14px;
  font-family: var(--apple-gothic);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.22;
}

.gateway-panel em {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 0 12px 0 15px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.gateway-panel em::after {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  content: ">";
}

.gateway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.gateway-actions a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px 0 15px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 12px;
  font-weight: 900;
}

.gateway-actions a::after {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  content: ">";
  line-height: 1;
}

.sound-score--gateway {
  inset: 18% 0 auto 30%;
  height: 120px;
  transform: rotate(-4deg);
}

.sound-score--gateway span:nth-child(1) {
  left: 0;
  top: 76px;
}

.sound-score--gateway span:nth-child(2) {
  left: 23%;
  top: 30px;
}

.sound-score--gateway span:nth-child(3) {
  left: 46%;
  top: 88px;
}

.sound-score--gateway span:nth-child(4) {
  left: 68%;
  top: 12px;
}

.sound-score--gateway span:nth-child(5) {
  left: 92%;
  top: 60px;
}

.stack-copy {
  position: relative;
  top: auto;
}

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

.stack-card {
  position: relative;
  top: auto;
  display: grid;
  align-content: space-between;
  min-height: 278px;
  padding: clamp(20px, 2.4vw, 28px);
  overflow: hidden;
  isolation: isolate;
  border: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58)),
    var(--white);
  box-shadow: 0 22px 58px rgba(31, 32, 38, 0.1);
  transform-origin: center;
}

.stack-card > * {
  position: relative;
  z-index: 1;
}

.stack-card:nth-child(2) {
  top: -16px;
}

.stack-card:nth-child(3) {
  top: 18px;
}

.stack-card::before,
.stack-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.stack-card::before {
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.76), transparent 46%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.76) 0 16%, transparent 17%),
    linear-gradient(135deg, var(--card-a), var(--card-b));
}

.stack-card::after {
  z-index: -1;
  right: -42px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 24px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  background: transparent;
  mix-blend-mode: soft-light;
}

.stack-card h3 {
  max-width: 280px;
  margin: 18px 0 0;
  padding: 10px 12px 0;
  font-family: var(--apple-gothic);
  font-size: clamp(24px, 2.15vw, 34px);
  line-height: 1.18;
  letter-spacing: 0;
}

.stack-card p {
  max-width: 280px;
  margin: 0;
  padding: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.76;
}

.stack-card--talent {
  --card-a: #d7f5ff;
  --card-b: #f6fbff;
}

.stack-card--event {
  --card-a: #ffd6c6;
  --card-b: #fff5d8;
}

.stack-card--audition {
  --card-a: #e7f8b9;
  --card-b: #fff0f4;
}

.stack-card--event::before {
  background:
    linear-gradient(135deg, rgba(255, 245, 239, 0.96), rgba(255, 253, 248, 0.78)),
    url("../images/hero-shizuoka-live.jpg") center / cover;
}

.stack-card--talent::before {
  background:
    linear-gradient(135deg, rgba(232, 249, 255, 0.96), rgba(255, 253, 248, 0.78)),
    url("../images/miuzic-wall.jpg") center / cover;
}

.stack-card--audition::before {
  background:
    linear-gradient(135deg, rgba(241, 251, 211, 0.96), rgba(255, 253, 248, 0.78)),
    url("../images/miuzic-entertainment-visual.png") center / cover;
}

.stack-card .card-label,
.stack-card h3,
.stack-card p {
  width: fit-content;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  backdrop-filter: blur(8px);
}

.stack-card .card-label {
  padding: 7px 10px;
}

.stack-card--talent .card-label::after,
.stack-card--event .card-label::after,
.stack-card--audition .card-label::after {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 9px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.stack-card--event .card-label::after {
  background: var(--yellow);
}

.stack-card--audition .card-label::after {
  background: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  width: fit-content;
  min-height: 38px;
  margin-top: 24px;
  padding: 0 13px 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.text-link::after {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  content: ">";
}

.stack-card:hover .text-link {
  transform: translateX(3px);
  box-shadow: 0 12px 28px rgba(31, 32, 38, 0.16);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.store-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 22px;
  min-height: 310px;
  padding: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(31, 32, 38, 0.13);
}

.store-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 6px;
}

.store-card div {
  display: grid;
  align-content: end;
  padding: 20px 16px 20px 0;
}

.store-card span {
  color: var(--soft-ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-weight: 800;
}

.store-card h3 {
  margin: 10px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.18;
  letter-spacing: 0;
}

.store-card p {
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.78;
}

.store-card--river {
  background: #effaff;
}

.store-card--cafe {
  background: #fff0f4;
}

.recruit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: end;
  padding: clamp(26px, 4.4vw, 52px);
  background:
    linear-gradient(90deg, rgba(255, 186, 39, 0.24), transparent 58%),
    var(--white);
}

.job-list {
  display: grid;
  gap: 10px;
}

.job-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  font-family: var(--latin-display), var(--apple-gothic);
  font-weight: 800;
}

.job-list span::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.job-list span:nth-child(2)::after {
  background: var(--teal);
}

.job-list span:nth-child(3)::after {
  background: var(--yellow);
}

.job-list span:nth-child(4)::after {
  background: var(--green);
}

.recruit-panel .button {
  margin-top: 22px;
}

.contact__inner {
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 32, 38, 0.92), rgba(31, 32, 38, 0.82)),
    url("../images/hero-shizuoka-live.jpg") center / cover;
}

.contact .section-kicker,
.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact h2 {
  max-width: 720px;
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.45;
}

.contact .button--line {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 70px);
  color: var(--soft-ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.footer p {
  margin: 0;
}

.subpage .site-header {
  /* position: sticky; */
}

.sub-hero {
  min-height: 76svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(64px, 7vw, 110px) 0 clamp(42px, 6vw, 78px);
}

.sub-hero h1 {
  margin: 10px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(42px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.sub-hero p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--soft-ink);
  font-size: clamp(14px, 1.26vw, 16px);
}

.sub-hero__mark {
  position: relative;
  min-height: 330px;
}

.sub-hero__mark span {
  position: absolute;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.sub-hero__mark span:nth-child(1) {
  left: 0;
  top: 34px;
  background: var(--yellow);
}

.sub-hero__mark span:nth-child(2) {
  left: 76px;
  top: 92px;
  background: var(--teal);
}

.sub-hero__mark span:nth-child(3) {
  left: 154px;
  top: 24px;
  background: var(--green);
}

.sub-hero__mark span:nth-child(4) {
  left: 198px;
  top: 118px;
  background: var(--pink);
}

.sub-hero__mark span:nth-child(5) {
  left: 88px;
  top: 190px;
  background: var(--blue);
}

.sub-hero__visual {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.sub-hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.creator-grid--page {
  margin-bottom: clamp(40px, 7vw, 96px);
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(24px, 4vw, 54px) 0 clamp(54px, 7vw, 92px);
}

.article-nav {
  position: sticky;
  top: 116px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.article-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 800;
}

.article-nav a::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-block {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(31, 32, 38, 0.07);
  scroll-margin-top: 112px;
}

.article-block h2 {
  margin: 8px 0 20px;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.28;
  font-family: var(--apple-gothic);
}

.article-block p {
  max-width: 860px;
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(13px, 1.08vw, 15px);
  line-height: 1.95;
}

.article-block p + p {
  margin-top: 16px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid rgba(31, 32, 38, 0.18);
}

.location-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.62fr) minmax(210px, 0.82fr) minmax(0, 1.2fr);
  gap: clamp(14px, 2vw, 28px);
  align-items: start;
  padding: 22px 8px 22px 34px;
  border: 0;
  border-bottom: 1px solid rgba(31, 32, 38, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.location-card::before {
  position: absolute;
  left: 6px;
  top: 29px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(86, 195, 194, 0.12);
  content: "";
}

.location-card:nth-child(3n + 2)::before {
  background: var(--yellow);
  box-shadow: 0 0 0 7px rgba(255, 186, 39, 0.14);
}

.location-card:nth-child(3n)::before {
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(238, 87, 115, 0.12);
}

.location-card:hover {
  padding-left: 42px;
  background: rgba(255, 255, 255, 0.58);
}

.location-card:nth-child(2n) {
  background: transparent;
}

.location-card span {
  display: block;
  color: var(--ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 0;
  font-family: var(--apple-gothic);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.25;
}

.location-card p {
  margin: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.article-photo {
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.article-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.article-photo--wide img {
  aspect-ratio: 16 / 9;
}

.artist-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(238, 87, 115, 0.12), transparent 22%),
    radial-gradient(circle at 86% 8%, rgba(255, 186, 39, 0.14), transparent 24%),
    radial-gradient(circle at 72% 72%, rgba(86, 195, 194, 0.12), transparent 28%),
    linear-gradient(rgba(31, 32, 38, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 32, 38, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, auto, 48px 48px, 48px 48px;
}

.artist-hero {
  min-height: 72svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5.2vw, 72px);
  align-items: center;
  padding: clamp(54px, 7vw, 104px) 0 clamp(30px, 5vw, 62px);
}

.artist-hero__copy h1 {
  max-width: 860px;
  margin: 10px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(38px, 6.4vw, 84px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.artist-hero__copy p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--soft-ink);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  line-height: 1.9;
}

.artist-hero__visual {
  position: relative;
  min-height: 420px;
}

.artist-hero__visual img {
  position: absolute;
  inset: 54px 0 auto auto;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 76px rgba(31, 32, 38, 0.14);
  transform: rotate(2deg);
}

.artist-orbit {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  animation: floatBeat 8s ease-in-out infinite;
}

.artist-orbit--one {
  right: 36px;
  top: 18px;
  width: 76px;
  height: 76px;
  background: var(--yellow);
}

.artist-orbit--two {
  left: 6px;
  top: 104px;
  width: 104px;
  height: 104px;
  background: var(--teal);
  animation-delay: -2s;
}

.artist-orbit--three {
  right: 8px;
  bottom: 12px;
  width: 122px;
  height: 122px;
  background: var(--pink);
  animation-delay: -4s;
}

.artist-directory {
  padding: clamp(30px, 5vw, 68px) 0 clamp(42px, 7vw, 90px);
}

.artist-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: clamp(18px, 3vw, 34px);
}

.artist-toolbar h2 {
  margin: 8px 0 0;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.25;
}

.artist-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.artist-filter {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.78);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.artist-filter:hover,
.artist-filter.is-active {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-1px);
}

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

.artist-profile-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(31, 32, 38, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(31, 32, 38, 0.08);
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.artist-profile-card::after {
  position: absolute;
  right: -30px;
  top: 42%;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 186, 39, 0.3);
  content: "";
  mix-blend-mode: multiply;
  pointer-events: none;
}

.artist-profile-card:nth-child(3n + 2)::after {
  background: rgba(86, 195, 194, 0.28);
}

.artist-profile-card:nth-child(3n)::after {
  background: rgba(238, 87, 115, 0.24);
}

.artist-profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 66px rgba(31, 32, 38, 0.13);
}

.artist-profile-card.is-hidden {
  display: none;
}

.artist-profile-card--feature {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.86fr);
  grid-template-rows: 1fr;
}

.artist-card-image {
  display: block;
  overflow: hidden;
  background: #edf5f6;
}

.artist-card-image img {
  width: 100%;
  height: 100%;
  min-height: 255px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(0.99);
  transition: transform 0.42s ease, filter 0.42s ease;
}

.artist-profile-card:hover .artist-card-image img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1);
}

.artist-profile-card--feature .artist-card-image img {
  min-height: 100%;
  aspect-ratio: auto;
}

.artist-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  padding: clamp(18px, 2.2vw, 26px);
}

.artist-category {
  width: fit-content;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.72);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.artist-card-body h3 {
  margin: 14px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
  letter-spacing: 0;
}

.artist-lead {
  margin: 12px 0 0;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.72;
}

.artist-profile-copy {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.artist-profile-copy summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  color: var(--ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.artist-profile-copy summary::-webkit-details-marker {
  display: none;
}

.artist-profile-copy summary::after {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  content: "+";
  line-height: 1;
  transition: transform 0.2s ease;
}

.artist-profile-copy[open] summary::after {
  transform: rotate(45deg);
}

.artist-profile-copy p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.86;
}

.artist-profile-copy p + p {
  margin-top: 10px;
}

.mini-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 12px;
  font-weight: 900;
}

.mini-link::after {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  content: ">";
  font-size: 12px;
}

.news-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(238, 87, 115, 0.12), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(255, 186, 39, 0.14), transparent 24%),
    radial-gradient(circle at 74% 78%, rgba(86, 195, 194, 0.12), transparent 28%),
    linear-gradient(rgba(31, 32, 38, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 32, 38, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, auto, 48px 48px, 48px 48px;
}

.news-page .sub-hero h1 {
  font-size: clamp(42px, 6.1vw, 88px);
  line-height: 1.02;
  white-space: nowrap;
}

.news-page .sub-hero h1 span {
  display: inline;
}

.news-list {
  padding: clamp(30px, 5vw, 68px) 0 clamp(46px, 7vw, 90px);
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(20px, 3vw, 34px);
}

.news-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(31, 32, 38, 0.13);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 42px rgba(31, 32, 38, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 66px rgba(31, 32, 38, 0.13);
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f4f4f0;
}

.news-card div {
  display: grid;
  align-content: start;
  padding: 18px;
}

.news-card span,
.news-article__date {
  color: var(--soft-ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 10px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.34;
  letter-spacing: 0;
}

.news-card p {
  margin: 12px 0 0;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.72;
}

.news-card--feature {
  grid-column: span 2;
}

.news-article {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(44px, 6vw, 86px) 0;
}

.news-article__media {
  position: sticky;
  top: 110px;
}

.news-article__media img {
  width: 100%;
  max-height: 76svh;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 64px rgba(31, 32, 38, 0.12);
}

.news-article__body {
  padding: clamp(22px, 3vw, 40px);
  border: 1px solid rgba(31, 32, 38, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.news-article__body h1 {
  margin: 12px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(28px, 4.6vw, 60px);
  line-height: 1.12;
  letter-spacing: 0;
}

.news-article__body p {
  margin: 20px 0 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.95;
}

.news-article__body h2 {
  margin: 34px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.26;
  letter-spacing: 0;
}

.news-source {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.news-embed {
  max-width: 560px;
  margin-top: 28px;
  overflow: hidden;
}

.news-embed .twitter-tweet {
  margin-inline: 0 !important;
}

.works-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 186, 39, 0.16), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(238, 87, 115, 0.1), transparent 24%),
    radial-gradient(circle at 76% 76%, rgba(86, 195, 194, 0.12), transparent 28%),
    linear-gradient(rgba(31, 32, 38, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 32, 38, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, auto, 48px 48px, 48px 48px;
}

.works-hero {
  min-height: 68svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  padding: clamp(44px, 5vw, 76px) 0 clamp(42px, 6vw, 82px);
}

.sound-score--works {
  left: -3vw;
  right: -3vw;
  bottom: clamp(42px, 6vw, 82px);
  height: 92px;
  opacity: 0.8;
}

.sound-score--works span:nth-child(1) {
  left: 8%;
  top: 54px;
}

.sound-score--works span:nth-child(2) {
  left: 30%;
  top: 16px;
}

.sound-score--works span:nth-child(3) {
  left: 52%;
  top: 58px;
}

.sound-score--works span:nth-child(4) {
  left: 73%;
  top: 18px;
}

.sound-score--works span:nth-child(5) {
  left: 92%;
  top: 48px;
}

.works-hero__copy,
.works-hero__collage {
  position: relative;
  z-index: 2;
}

.works-hero__copy h1 {
  max-width: 880px;
  margin: 12px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(42px, 7vw, 98px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.works-hero__copy p:last-child {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--ink);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(13px, 1.08vw, 15px);
  font-weight: 400;
  line-height: 1.95;
}

.works-hero__collage {
  min-height: 520px;
}

.works-hero__collage::before {
  position: absolute;
  right: 7%;
  top: 8%;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
  mix-blend-mode: multiply;
  animation: floatBeat 9s ease-in-out infinite;
}

.works-hero__collage::after {
  position: absolute;
  left: 5%;
  bottom: 8%;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
  mix-blend-mode: multiply;
  animation: floatBeat 8s ease-in-out infinite reverse;
}

.works-hero__image {
  position: absolute;
  border: 1px solid rgba(31, 32, 38, 0.14);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 72px rgba(31, 32, 38, 0.16);
  filter: saturate(1.06) contrast(1);
}

.works-hero__image--one {
  right: 0;
  top: 48px;
  width: min(84%, 430px);
  aspect-ratio: 4 / 3;
  transform: rotate(2deg);
}

.works-hero__image--two {
  left: 0;
  top: 172px;
  width: min(60%, 300px);
  aspect-ratio: 1 / 1;
  transform: rotate(-4deg);
}

.works-hero__image--three {
  right: 14%;
  bottom: 20px;
  width: min(64%, 330px);
  aspect-ratio: 16 / 10;
  transform: rotate(-2deg);
}

.works-manifest {
  padding: clamp(30px, 5vw, 70px) clamp(22px, 4vw, 64px);
}

.works-manifest__grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) minmax(0, 1fr);
  margin-top: 18px;
  border-top: 1px solid rgba(31, 32, 38, 0.18);
}

.works-manifest__grid strong,
.works-manifest__grid span {
  min-height: 78px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(31, 32, 38, 0.18);
}

.works-manifest__grid strong {
  color: var(--ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 900;
  min-width: 0;
  padding-right: clamp(12px, 2vw, 28px);
  word-break: keep-all;
}

.works-manifest__grid span {
  color: var(--soft-ink);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.85;
}

.works-section {
  padding: clamp(34px, 6vw, 86px) 0;
}

.works-section__head {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(20px, 4vw, 48px);
}

.works-section__head .section-kicker {
  grid-column: 1 / -1;
}

.works-section__head h2 {
  margin: 0;
  font-family: var(--apple-gothic);
  font-size: clamp(30px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.works-section__head p:last-child {
  margin: 0;
  color: var(--soft-ink);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.work-reel {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.work-piece {
  position: relative;
  grid-column: span 4;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(31, 32, 38, 0.13);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(31, 32, 38, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.work-piece:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 78px rgba(31, 32, 38, 0.13);
}

.work-piece--large {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 720px;
}

.work-piece--wide {
  grid-column: span 8;
}

.work-piece img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border-bottom: 1px solid rgba(31, 32, 38, 0.1);
  transition: transform 0.42s ease, filter 0.42s ease;
}

.work-piece:hover img {
  transform: scale(1.035);
  filter: saturate(1.12);
}

.work-piece--large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-bottom: 0;
  object-fit: contain;
  padding: clamp(28px, 4.5vw, 70px);
  background: #dc0000;
}

.work-piece--wide img {
  height: 285px;
}

.work-piece > div {
  position: relative;
  z-index: 1;
  padding: clamp(18px, 2.2vw, 28px);
  background: rgba(255, 255, 255, 0.92);
}

.work-piece--large > div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(31, 32, 38, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.work-piece__number {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 14px;
  color: var(--white);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 13px;
  font-weight: 900;
  text-shadow: 0 2px 18px rgba(31, 32, 38, 0.34);
}

.work-piece p,
.work-lane span,
.event-rhythm span {
  margin: 0;
  color: var(--soft-ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.work-piece h3,
.work-lane h3,
.event-rhythm h3 {
  margin: 8px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
}

.work-piece span:not(.work-piece__number),
.work-lane p,
.event-rhythm p {
  display: block;
  margin-top: 12px;
  color: var(--soft-ink);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.78;
}

.work-lanes {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(31, 32, 38, 0.18);
}

.work-lane {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  padding: clamp(18px, 3vw, 32px) 0;
  border-bottom: 1px solid rgba(31, 32, 38, 0.18);
  transition: padding-left 0.24s ease, background 0.24s ease;
}

.work-lane:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.work-lane img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(31, 32, 38, 0.12);
  border-radius: 8px;
  filter: saturate(1.06);
}

.work-lane h3 {
  max-width: 760px;
}

.work-lane p {
  max-width: 820px;
}

.event-rhythm {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.event-rhythm article {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid rgba(31, 32, 38, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(31, 32, 38, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.event-rhythm article:nth-child(1),
.event-rhythm article:nth-child(2) {
  grid-column: span 5;
}

.event-rhythm article:nth-child(2),
.event-rhythm article:nth-child(4) {
  margin-top: 52px;
}

.event-rhythm article:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 78px rgba(31, 32, 38, 0.13);
}

.event-rhythm img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid rgba(31, 32, 38, 0.1);
}

.event-rhythm article > span,
.event-rhythm article > h3,
.event-rhythm article > p {
  margin-left: clamp(18px, 2.1vw, 26px);
  margin-right: clamp(18px, 2.1vw, 26px);
}

.event-rhythm article > span {
  display: block;
  margin-top: 20px;
}

.event-rhythm article > p {
  margin-bottom: clamp(20px, 2.4vw, 30px);
}

.recruit-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 186, 39, 0.16), transparent 22%),
    radial-gradient(circle at 90% 12%, rgba(86, 195, 194, 0.12), transparent 24%),
    radial-gradient(circle at 72% 72%, rgba(238, 87, 115, 0.1), transparent 28%),
    linear-gradient(rgba(31, 32, 38, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 32, 38, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, auto, 48px 48px, 48px 48px;
}

.recruit-hero {
  min-height: 72svh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.46fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  padding: clamp(54px, 6vw, 94px) 0 clamp(40px, 6vw, 80px);
}

.recruit-hero__copy h1 {
  margin: 12px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.recruit-hero__copy h1 span {
  display: block;
  white-space: nowrap;
}

.recruit-hero__copy p:last-child {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--ink);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(13px, 1.08vw, 15px);
  font-weight: 400;
  line-height: 1.95;
}

.recruit-hero__note {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 420px;
  padding: clamp(24px, 3.4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(31, 32, 38, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 186, 39, 0.82) 0 58px, transparent 60px),
    radial-gradient(circle at 72% 32%, rgba(86, 195, 194, 0.72) 0 72px, transparent 74px),
    radial-gradient(circle at 50% 70%, rgba(238, 87, 115, 0.7) 0 62px, transparent 64px),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.recruit-hero__note span {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.recruit-hero__note p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--apple-gothic);
  font-size: clamp(16px, 1.6vw, 23px);
  font-weight: 900;
  line-height: 1.7;
}

.recruit-statement,
.recruit-audition {
  padding: clamp(28px, 4.6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(31, 32, 38, 0.07);
}

.recruit-statement h2,
.recruit-detail__head h2,
.recruit-apply h2,
.recruit-audition h2 {
  margin: 8px 0 0;
  font-family: var(--apple-gothic);
  font-size: clamp(28px, 4.4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
}

.recruit-statement p:not(.section-kicker),
.recruit-audition p:not(.section-kicker) {
  max-width: 920px;
  margin: 20px 0 0;
  color: var(--soft-ink);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.95;
}

.recruit-detail {
  padding: clamp(44px, 7vw, 98px) 0;
}

.recruit-detail__head {
  margin-bottom: clamp(18px, 3vw, 34px);
}

.recruit-rows {
  display: grid;
  border-top: 1px solid rgba(31, 32, 38, 0.18);
}

.recruit-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 58px);
  padding: clamp(18px, 2.6vw, 30px) 0;
  border-bottom: 1px solid rgba(31, 32, 38, 0.18);
  transition: padding-left 0.22s ease, background 0.22s ease;
}

.recruit-row:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.recruit-row span {
  color: var(--ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.recruit-row p,
.recruit-row li {
  color: var(--soft-ink);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.recruit-row p,
.recruit-row ul {
  margin: 0;
}

.recruit-row ul {
  display: grid;
  gap: 6px;
  padding-left: 1.2em;
}

.recruit-apply {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 5vw, 72px);
  align-items: end;
  padding: clamp(28px, 5vw, 64px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 32, 38, 0.94), rgba(31, 32, 38, 0.82)),
    url("../images/hero-shizuoka-live.jpg") center / cover;
  box-shadow: var(--shadow);
}

.recruit-apply .section-kicker,
.recruit-apply p {
  color: rgba(255, 255, 255, 0.74);
}

.recruit-apply p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.9;
}

.recruit-apply .button {
  min-width: 180px;
}

.recruit-audition {
  margin-top: clamp(28px, 5vw, 70px);
}

[data-reveal],
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible,
[data-reveal-group] > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero [data-reveal],
.sub-hero [data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal-group] > *:nth-child(2n) {
  transition-delay: 0.04s;
}

[data-reveal-group] > *:nth-child(3n) {
  transition-delay: 0.08s;
}

[data-reveal-group] > *:nth-child(4n) {
  transition-delay: 0.12s;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes floatBeat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(8px, -18px, 0) scale(1.04);
  }
}

@keyframes soundPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.12);
  }
}

@media (max-width: 1080px) {
  .global-nav {
    position: fixed;
    z-index: 52;
    inset: 0 auto auto 0;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 8px;
    width: 100%;
    min-height: 100svh;
    padding: 112px 28px 40px;
    background: var(--paper);
    font-size: clamp(18px, 4.4vw, 26px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-120%);
    transition: opacity 0.2s ease, transform 0.28s ease;
    visibility: hidden;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .global-nav a {
    min-height: 34px;
  }

  .nav-dropdown {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .nav-dropdown__trigger {
    justify-content: flex-start;
    min-height: 34px;
    padding: 0;
    font-size: inherit;
  }

  .nav-dropdown__menu {
    position: relative;
    top: auto;
    right: auto;
    min-width: 0;
    width: 100%;
    padding: 0 0 0 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown__menu a {
    min-height: 30px;
    padding: 0;
    font-size: clamp(12px, 3.1vw, 16px);
  }

  .nav-dropdown__menu a:hover {
    background: transparent;
  }

  .menu-toggle {
    display: block;
  }

  .hero__inner,
  .section-head--split,
  .link-stack,
  .editorial-gateway,
  .article-layout,
  .artist-hero,
  .works-hero,
  .recruit-hero,
  .artist-toolbar,
  .works-section__head,
  .recruit-apply,
  .recruit-panel {
    grid-template-columns: 1fr;
  }

  .stack-copy {
    position: relative;
    top: auto;
  }

  .stack-card,
  .stack-card:nth-child(2),
  .stack-card:nth-child(3) {
    position: relative;
    top: auto;
  }

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

  .gateway-spread {
    grid-auto-rows: 82px;
  }

  .artist-filters {
    justify-content: flex-start;
  }

  .artist-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works-hero__collage {
    min-height: 420px;
  }

  .work-piece,
  .work-piece--large,
  .work-piece--wide {
    grid-column: span 6;
    grid-row: auto;
  }

  .work-piece--large img {
    height: 285px;
  }

  .recruit-hero__note {
    min-height: 320px;
  }

  .event-rhythm {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-rhythm article,
  .event-rhythm article:nth-child(1),
  .event-rhythm article:nth-child(2) {
    grid-column: auto;
  }

  .artist-profile-card--feature {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .store-card {
    grid-template-columns: 1fr;
  }

  .store-card div {
    padding: 6px 10px 18px;
  }

  .article-nav {
    position: relative;
    top: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-cursor {
    display: none;
  }

  .section-panel {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding: 90px 14px 26px;
  }

  .hero::before {
    left: 20px;
    top: 100px;
    width: 44px;
    height: 44px;
    box-shadow: 70px 42px 0 var(--teal), 138px 8px 0 var(--green), 206px 66px 0 var(--pink);
  }

  .hero::after,
  .orb,
  .sound-score--hero {
    display: none;
  }

  .hero__inner {
    gap: 22px;
    min-height: auto;
  }

  .kinetic-title {
    margin-top: 54px;
    font-size: clamp(38px, 10.6vw, 58px);
  }

  .kinetic-title > span:nth-child(2),
  .kinetic-title > span:nth-child(3) {
    transform: none;
  }

  .hero__lead {
    font-size: 18px;
  }

  .sub-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .artist-hero {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 34px;
    gap: 24px;
  }

  .works-hero {
    min-height: auto;
    padding-top: 46px;
  }

  .recruit-hero {
    min-height: auto;
    padding-top: 46px;
  }

  .artist-hero__copy h1 {
    font-size: clamp(38px, 12vw, 62px);
  }

  .works-hero__copy h1 {
    font-size: clamp(36px, 12vw, 68px);
  }

  .recruit-hero__copy h1 {
    font-size: clamp(36px, 12vw, 66px);
  }

  .recruit-hero__copy h1 span {
    white-space: normal;
  }

  .works-hero__copy p:last-child {
    font-size: 13px;
    line-height: 1.82;
  }

  .recruit-hero__copy p:last-child {
    font-size: 13px;
    line-height: 1.82;
  }

  .artist-hero__visual {
    min-height: 0;
    padding-top: 6px;
  }

  .works-hero__collage {
    min-height: 330px;
  }

  .works-hero__collage::before {
    right: 4%;
    width: 94px;
    height: 94px;
  }

  .works-hero__collage::after {
    width: 70px;
    height: 70px;
  }

  .works-hero__image--one {
    width: min(78%, 360px);
    top: 22px;
  }

  .works-hero__image--two {
    width: min(52%, 230px);
    top: 130px;
  }

  .works-hero__image--three {
    right: 4%;
    width: min(64%, 270px);
  }

  .sound-score--works {
    display: none;
  }

  .artist-hero__visual img {
    position: relative;
    inset: auto;
    display: block;
    width: calc(100% - 28px);
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
    transform: rotate(1deg);
  }

  .artist-orbit--one {
    right: 24px;
    top: 0;
    width: 56px;
    height: 56px;
  }

  .artist-orbit--two {
    left: 0;
    top: 78px;
    width: 76px;
    height: 76px;
  }

  .artist-orbit--three {
    right: 12px;
    bottom: -10px;
    width: 78px;
    height: 78px;
  }

  .artist-directory {
    padding-top: 38px;
  }

  .sub-hero h1 {
    font-size: clamp(40px, 14vw, 74px);
  }

  .sub-hero__mark {
    min-height: 210px;
  }

  .sub-hero__mark span {
    width: 72px;
    height: 72px;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

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

  .location-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 6px 20px 30px;
  }

  .location-card:hover {
    padding-left: 30px;
  }

  .location-card h3 {
    font-size: 17px;
    line-height: 1.46;
  }

  .hero__actions,
  .contact__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-board {
    display: grid;
    gap: 12px;
    min-height: 0;
  }

  .beat-lane {
    display: none;
  }

  .hero-card {
    position: relative;
    inset: auto;
    padding: 18px;
  }

  .hero-card--main {
    width: 88%;
    min-height: 230px;
  }

  .hero-card--float {
    justify-self: end;
    width: 82%;
  }

  .hero-card--mini {
    width: 72%;
  }

  .hero-marquee {
    margin-top: 22px;
    animation-duration: 20s;
  }

  .editorial-gateway {
    padding: 30px 0 42px;
  }

  .sound-score--gateway {
    display: none;
  }

  .gateway-copy h2 {
    font-size: 28px;
  }

  .gateway-copy p:last-child {
    font-size: 13px;
    line-height: 1.8;
  }

  .gateway-spread {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .gateway-panel,
  .gateway-panel--talent,
  .gateway-panel--news,
  .gateway-panel--event,
  .gateway-panel--audition {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .gateway-panel strong {
    font-size: 24px;
  }

  .news-article {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 42px 0;
  }

  .news-page .sub-hero h1 {
    font-size: clamp(54px, 17vw, 76px);
    line-height: 0.98;
    white-space: normal;
  }

  .news-page .sub-hero h1 span {
    display: block;
  }

  .news-article__media {
    position: relative;
    top: auto;
  }

  .news-article__media img {
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .news-article__body {
    padding: 22px;
  }

  .news-card--feature {
    grid-column: auto;
  }

  .bento-grid,
  .stack-cards,
  .creator-grid,
  .artist-card-grid,
  .news-card-grid,
  .work-reel,
  .event-rhythm,
  .store-grid,
  .about-link-panel {
    grid-template-columns: 1fr;
  }

  .works-manifest__grid {
    grid-template-columns: 1fr;
  }

  .works-manifest {
    padding-inline: 22px;
  }

  .works-manifest__grid strong {
    min-height: 0;
    padding-top: 20px;
    border-bottom: 0;
    font-size: 18px;
  }

  .works-manifest__grid span {
    min-height: 0;
    padding: 8px 0 20px;
    font-size: 13px;
  }

  .works-section {
    padding: 42px 0;
  }

  .recruit-statement,
  .recruit-audition,
  .recruit-apply {
    padding: 24px;
  }

  .recruit-statement h2,
  .recruit-detail__head h2,
  .recruit-apply h2,
  .recruit-audition h2 {
    font-size: 30px;
  }

  .recruit-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .recruit-row:hover {
    padding-left: 0;
  }

  .works-section__head {
    gap: 12px;
    margin-bottom: 18px;
  }

  .works-section__head h2 {
    font-size: 31px;
  }

  .works-section__head p:last-child {
    font-size: 13px;
    line-height: 1.8;
  }

  .work-piece,
  .work-piece--large,
  .work-piece--wide {
    grid-column: auto;
    min-height: 0;
  }

  .work-piece img,
  .work-piece--large img,
  .work-piece--wide img {
    position: relative;
    inset: auto;
    height: auto;
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid rgba(31, 32, 38, 0.1);
  }

  .work-piece--large > div {
    position: relative;
    inset: auto;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
  }

  .work-piece h3,
  .work-lane h3,
  .event-rhythm h3 {
    font-size: 20px;
  }

  .work-lane {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .work-lane:hover {
    padding-left: 0;
  }

  .event-rhythm article:nth-child(2),
  .event-rhythm article:nth-child(4) {
    margin-top: 0;
  }

  .artist-toolbar {
    gap: 14px;
  }

  .artist-filter {
    min-height: 32px;
    padding: 0 11px;
    font-size: 11px;
  }

  .artist-profile-card--feature {
    grid-column: auto;
  }

  .artist-card-image img {
    min-height: 228px;
  }

  .artist-card-body {
    padding: 18px;
  }

  .artist-card-body h3 {
    font-size: 23px;
  }

  .about-link-panel div {
    padding: 6px 10px 16px;
  }

  .about-link-panel img {
    height: 190px;
  }

  .stack-cards {
    gap: 10px;
  }

  .stack-card {
    min-height: 0;
    padding: 22px;
  }

  .stack-card h3 {
    margin-top: 14px;
    font-size: 24px;
  }

  .stack-card p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.75;
  }

  .stack-card .text-link {
    margin-top: 12px;
    font-size: 14px;
  }

  .stack-card::after {
    right: -18px;
    bottom: -22px;
    width: 92px;
    height: 92px;
    border-width: 16px;
  }

  .bento-card,
  .bento-card--wide,
  .profile-card,
  .image-card,
  .origin-card {
    grid-column: auto;
    min-height: 0;
  }

  .creator-card {
    min-height: 142px;
  }

  .store-card img {
    min-height: 230px;
  }

  .store-card div {
    position: relative;
    z-index: 1;
    width: calc(100% - 28px);
    margin: -104px auto 0;
    padding: 18px;
    border: 1px solid rgba(31, 32, 38, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 38px rgba(31, 32, 38, 0.1);
    backdrop-filter: blur(8px);
  }

  .store-card span,
  .store-card h3,
  .store-card p {
    color: var(--ink);
  }

  .store-card h3 {
    font-size: 28px;
  }

  .store-card p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.75;
  }

  .footer {
    display: grid;
  }
}

@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;
  }
}

/* 2026 pastel redesign: based on preview/miuzic-top-comp-01.html */
:root {
  --ink: #282936;
  --soft-ink: #4e5060;
  --muted: #7d8092;
  --paper: #ffffff;
  --paper-2: #fff8fb;
  --line: rgba(255, 92, 168, 0.18);
  --shadow: 0 24px 70px rgba(255, 92, 168, 0.12);
  --teal: #cff7f2;
  --orange: #ffadc7;
  --yellow: #ffe4a8;
  --green: #c9f6d8;
  --pink: #ff5ca8;
  --lavender: #dccbff;
  --blue: #e9e2ff;
  --white: #ffffff;
  --max: 1370px;
  --serif-display: "Playfair Display", Georgia, serif;
  --latin-display: "Nunito", system-ui, sans-serif;
  --apple-gothic: "Noto Sans JP", system-ui, sans-serif;
  --body-gothic: "Noto Sans JP", system-ui, sans-serif;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 193, 218, 0.34), transparent 23%),
    radial-gradient(circle at 84% 8%, rgba(220, 203, 255, 0.30), transparent 26%),
    radial-gradient(circle at 80% 78%, rgba(207, 247, 242, 0.34), transparent 24%),
    linear-gradient(rgba(40, 41, 54, 0.023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 41, 54, 0.023) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 46%, #f8fffe 100%);
  background-size: auto, auto, auto, 54px 54px, 54px 54px, auto;
  font-family: var(--body-gothic);
}

.site-cursor {
  display: none;
}

.site-header {
  padding: 20px clamp(18px, 4.2vw, 62px);
  border-bottom-color: rgba(40, 41, 54, 0.07);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 92, 168, 0.16);
}

.brand img {
  width: clamp(112px, 9.9vw, 150px);
}

.global-nav {
  gap: clamp(12px, 1.5vw, 24px);
  color: #505264;
  font-family: var(--latin-display);
  font-size: clamp(11px, 0.82vw, 14px);
  font-weight: 900;
}

.global-nav a::before,
.nav-dropdown__trigger::before {
  background: var(--pink);
}

.global-nav a:nth-child(2n)::before {
  background: var(--lavender);
}

.global-nav a:nth-child(3n)::before {
  background: #6ed8ce;
}

.nav-dropdown__menu {
  border-color: rgba(255, 92, 168, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(255, 92, 168, 0.13);
}

.section-panel {
  width: min(calc(100% - 96px), var(--max));
}

.hero {
  min-height: 720px;
  padding: 118px 0 54px;
}

.hero::before {
  left: 42%;
  top: 142px;
  width: 130px;
  height: 130px;
  background: rgba(255, 193, 218, 0.48);
  box-shadow: none;
}

.hero::after {
  right: -20px;
  bottom: 66px;
  width: 170px;
  height: 170px;
  background: rgba(207, 247, 242, 0.72);
}

.orb,
.sound-score {
  opacity: 0.48;
}

.hero__inner {
  min-height: 0;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.78fr);
  gap: clamp(34px, 5.2vw, 70px);
  align-items: center;
}

.eyebrow,
.section-kicker,
.card-label,
.gateway-number,
.gateway-panel em,
.store-card span,
.artist-category,
.news-card span,
.news-article__date,
.work-piece span,
.work-lane span,
.event-rhythm span,
.recruit-row strong,
.article-nav a,
.mini-link {
  color: var(--pink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.kinetic-title {
  max-width: 820px;
  margin-top: 22px;
  color: var(--pink);
  font-family: var(--serif-display);
  font-size: clamp(58px, 7.4vw, 104px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.01em;
  text-transform: none;
}

.kinetic-title > span,
.kinetic-title > span:nth-child(2),
.kinetic-title > span:nth-child(3) {
  display: block;
  width: max-content;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  transform: none;
}

.hero__tagline {
  margin: 26px 0 0;
  color: #ff4f9b;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.hero__lead {
  max-width: 640px;
  margin-top: 22px;
  color: var(--soft-ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.button,
.gateway-actions a,
.mini-link,
.artist-filter {
  min-height: 46px;
  border: 1px solid rgba(255, 92, 168, 0.22);
  border-radius: 999px;
  font-family: var(--latin-display), var(--apple-gothic);
  font-weight: 900;
}

.button--primary,
.gateway-actions a,
.mini-link {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #ff5ca8, #ff8dbd);
  box-shadow: 0 16px 34px rgba(255, 92, 168, 0.24);
}

.button--line,
.artist-filter {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.hero-board {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(255, 92, 168, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 92, 168, 0.12), transparent 25%),
    linear-gradient(140deg, rgba(255, 215, 233, 0.72), rgba(238, 231, 255, 0.72) 50%, rgba(207, 247, 242, 0.52));
  box-shadow: var(--shadow), inset 0 0 0 14px rgba(255, 255, 255, 0.45);
}

.hero-board::before {
  position: absolute;
  z-index: 1;
  left: 8%;
  right: 8%;
  top: 52px;
  height: 80px;
  border-top: 2px solid rgba(255, 92, 168, 0.2);
  border-radius: 50%;
  content: "";
}

.hero-board::after {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 230px;
  height: 230px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 14px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  outline: 2px solid rgba(255, 92, 168, 0.22);
  background: rgba(255, 255, 255, 0.54);
  color: var(--pink);
  content: "m";
  font-family: var(--latin-display);
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
}

.beat-lane {
  inset: 0;
  width: auto;
  height: auto;
  opacity: 1;
  transform: none;
}

.beat-lane::before,
.beat-lane::after {
  display: none;
}

.beat-lane span {
  position: absolute;
  top: 50px;
  width: 10px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
}

.beat-lane span:nth-child(1) { left: 14%; background: var(--pink); }
.beat-lane span:nth-child(2) { left: 29%; background: var(--lavender); }
.beat-lane span:nth-child(3) { left: 47%; background: #6ed8ce; }
.beat-lane span:nth-child(4) { left: 65%; background: var(--yellow); }
.beat-lane span:nth-child(5) { left: 82%; background: #ffc1da; }

.hero-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 92, 168, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 46px rgba(255, 92, 168, 0.13);
  backdrop-filter: blur(10px);
}

.hero-card--main {
  left: 32px;
  right: 32px;
  top: 34px;
  bottom: auto;
  width: auto;
  min-height: 300px;
  padding: 0;
  overflow: hidden;
  transform: rotate(-2.6deg);
  background: rgba(255, 255, 255, 0.62);
}

.hero-card--float,
.hero-card--mini {
  z-index: 3;
}

.hero-card--main img {
  display: block;
  width: 100%;
  height: 238px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  filter: saturate(1.05) brightness(1.03);
}

.hero-card--main p,
.hero-card--main strong {
  position: relative;
  z-index: 1;
  display: block;
  padding-inline: 20px;
}

.hero-card--main p {
  padding-top: 18px;
}

.hero-card--main strong {
  padding-bottom: 20px;
}

.hero-card--main p,
.hero-card--float p,
.hero-card--mini p {
  margin: 0;
  color: var(--pink);
  font-family: var(--latin-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card--main strong,
.hero-card--float strong,
.hero-card--mini strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-family: var(--latin-display), var(--apple-gothic);
  font-size: 15px;
  line-height: 1.35;
}

.hero-card--float {
  left: 42px;
  bottom: 84px;
  width: min(260px, 42%);
  padding: 18px;
}

.hero-card--mini {
  right: 46px;
  top: 132px;
  width: min(210px, 38%);
  min-height: 124px;
  display: grid;
  align-content: end;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.84) 72%, rgba(255, 255, 255, 0.94) 100%),
    url("../images/miuzic-wall.jpg") center / cover;
}

.hero-card--mini::before {
  position: absolute;
  inset: 0;
  background: rgba(255, 215, 233, 0.16);
  content: "";
  pointer-events: none;
}

.hero-card--mini p {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.hero-card--mini strong {
  position: relative;
  z-index: 1;
}

.hero-marquee {
  color: rgba(40, 41, 54, 0.68);
  font-family: var(--latin-display);
  font-size: clamp(34px, 4.8vw, 76px);
}

.hero-marquee span::after {
  background: var(--pink);
}

.about,
.artist,
.link-stack,
.editorial-gateway,
.stores,
.recruit,
.contact,
.news-list,
.works-section,
.artist-directory,
.recruit-detail,
.article-layout {
  padding-top: clamp(48px, 5.2vw, 76px);
  padding-bottom: clamp(48px, 5.2vw, 76px);
}

.section-head h2,
.gateway-copy h2,
.stack-copy h2,
.sub-hero h1,
.artist-hero__copy h1,
.works-hero__copy h1,
.recruit-hero__copy h1,
.news-page .sub-hero h1,
.works-section__head h2,
.recruit-detail__head h2,
.article-block h2,
.contact h2 {
  color: var(--ink);
  font-family: var(--apple-gothic);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.section-head h2,
.gateway-copy h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.section-head p,
.gateway-copy p,
.sub-hero p,
.artist-hero__copy p:last-child,
.works-hero__copy p:last-child,
.recruit-hero__copy p:last-child,
.article-block p,
.news-article__body p,
.recruit-row p,
.work-piece p,
.work-lane p,
.event-rhythm p {
  color: var(--soft-ink);
  font-weight: 500;
}

.about-link-panel,
.gateway-panel,
.store-card,
.recruit-panel,
.contact__inner,
.sub-hero__visual,
.sub-hero__mark,
.article-block,
.article-nav,
.location-card,
.artist-profile-card,
.news-card,
.news-article__body,
.news-article__media img,
.work-piece,
.work-lane,
.event-rhythm article,
.recruit-statement,
.recruit-apply,
.recruit-audition,
.recruit-hero__note {
  border: 1px solid rgba(255, 92, 168, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.about-link-panel {
  grid-template-columns: 0.7fr 1fr;
  padding: 28px;
}

.about-link-panel img,
.sub-hero__visual img,
.artist-card-image img,
.news-card img,
.work-piece img,
.work-lane img,
.event-rhythm img {
  border-radius: 22px;
}

.editorial-gateway {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.gateway-spread {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
}

.gateway-panel {
  min-height: clamp(184px, 14vw, 224px);
  display: grid;
  align-content: center;
  padding: clamp(20px, 2.4vw, 34px);
  color: var(--ink);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 54%, rgba(255, 255, 255, 0.38) 100%);
}

.gateway-panel--news,
.gateway-panel--talent,
.gateway-panel--event,
.gateway-panel--audition {
  grid-column: auto;
  grid-row: auto;
}

.gateway-panel::before {
  position: absolute;
  top: clamp(18px, 2vw, 28px);
  right: auto;
  bottom: auto;
  left: clamp(18px, 2vw, 28px);
  width: clamp(76px, 7.2vw, 104px);
  height: clamp(76px, 7.2vw, 104px);
  border-radius: 50%;
  background: rgba(255, 193, 218, 0.52);
  content: "";
  z-index: 1;
}

.gateway-panel--talent::before { background: rgba(220, 203, 255, 0.45); }
.gateway-panel--event::before { background: rgba(207, 247, 242, 0.58); }
.gateway-panel--audition::before { background: rgba(255, 228, 168, 0.55); }

.gateway-panel strong {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  margin-top: clamp(14px, 2.2vw, 30px);
  color: var(--ink);
  font-size: clamp(20px, 1.65vw, 28px);
  line-height: 1.28;
}

.gateway-panel em {
  position: relative;
  z-index: 2;
  width: max-content;
  margin-top: 14px;
  padding: 9px 13px 9px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--latin-display);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.gateway-panel .gateway-number,
.gateway-panel .card-label,
.gateway-actions {
  position: relative;
  z-index: 2;
}

.gateway-actions {
  width: min(100%, 430px);
}

.gateway-number {
  width: clamp(76px, 7.2vw, 104px);
  color: rgba(255, 92, 168, 0.55);
  font-family: var(--latin-display);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 1000;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-align: center;
}

.gateway-panel .card-label {
  width: max-content;
  margin-top: -6px;
  margin-left: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #ff5ca8;
  box-shadow: 0 10px 26px rgba(255, 92, 168, 0.12);
}

.gateway-panel__image {
  position: absolute;
  inset: 0 0 0 44%;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
  filter: saturate(1.08) brightness(1.08);
  transform: scale(1.02);
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.gateway-panel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 50%, rgba(255, 255, 255, 0.22) 100%),
    radial-gradient(circle at 84% 18%, rgba(255, 193, 218, 0.34), transparent 36%);
  content: "";
  pointer-events: none;
}

.gateway-panel:hover .gateway-panel__image {
  opacity: 0.42;
  transform: scale(1.06);
}

.gateway-panel--talent .gateway-number {
  color: rgba(190, 142, 255, 0.48);
}

.gateway-panel--event .gateway-number {
  color: rgba(89, 218, 207, 0.50);
}

.gateway-panel--audition .gateway-number {
  color: rgba(255, 185, 52, 0.48);
}

.gateway-panel--talent .card-label {
  color: #b16cff;
}

.gateway-panel--event .card-label {
  color: #27bdb4;
}

.gateway-panel--audition .card-label {
  color: #ff9f24;
}

.store-grid {
  gap: 18px;
}

.store-card {
  display: grid;
  grid-template-columns: 1fr;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(240, 253, 251, 0.74));
}

.store-card--cafe {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 238, 247, 0.78));
}

.store-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.82;
}

.store-card div {
  margin: -56px 22px 0;
  padding: 24px;
  border: 1px solid rgba(255, 92, 168, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(40, 41, 54, 0.10);
  backdrop-filter: blur(10px);
}

.store-card h3 {
  color: var(--ink);
  font-size: clamp(30px, 3.5vw, 48px);
}

.recruit-panel {
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(238, 231, 255, 0.70));
}

.job-list span {
  border-color: rgba(255, 92, 168, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.contact__inner {
  padding: clamp(34px, 6vw, 70px);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 193, 218, 0.42), transparent 22%),
    radial-gradient(circle at 90% 80%, rgba(207, 247, 242, 0.55), transparent 22%),
    rgba(255, 255, 255, 0.74);
}

.footer {
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.62);
}

.subpage {
  padding-top: 86px;
}

.sub-hero,
.artist-hero,
.works-hero,
.recruit-hero {
  min-height: auto;
  padding-top: clamp(54px, 7vw, 98px);
  padding-bottom: clamp(44px, 6vw, 82px);
}

.sub-hero h1,
.artist-hero__copy h1,
.works-hero__copy h1,
.recruit-hero__copy h1 {
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 1.04;
}

.sub-hero__mark,
.artist-hero__visual,
.works-hero__collage,
.recruit-hero__note {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 92, 168, 0.14), transparent 18%),
    radial-gradient(circle at 78% 24%, rgba(255, 228, 168, 0.38), transparent 18%),
    radial-gradient(circle at 78% 74%, rgba(207, 247, 242, 0.42), transparent 18%),
    linear-gradient(140deg, rgba(255, 215, 233, 0.62), rgba(238, 231, 255, 0.62) 50%, rgba(207, 247, 242, 0.42));
}

.article-block {
  padding: clamp(24px, 4vw, 48px);
}

.article-photo img {
  border-radius: 24px;
}

.location-card {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: none;
}

.location-card::before {
  background: var(--pink);
  box-shadow: 0 0 0 12px rgba(255, 92, 168, 0.13);
}

.artist-profile-card {
  overflow: hidden;
}

.artist-card-body {
  background: rgba(255, 255, 255, 0.66);
}

.artist-card-body h2,
.artist-card-body h3,
.artist-card-body h4 {
  color: var(--ink);
}

.artist-filter.is-active {
  color: #fff;
  background: linear-gradient(135deg, #ff5ca8, #ff8dbd);
}

.works-page,
.news-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 193, 218, 0.30), transparent 23%),
    radial-gradient(circle at 84% 18%, rgba(220, 203, 255, 0.25), transparent 24%),
    radial-gradient(circle at 76% 76%, rgba(207, 247, 242, 0.30), transparent 28%),
    linear-gradient(rgba(40, 41, 54, 0.023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 41, 54, 0.023) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 46%, #f8fffe 100%);
  background-size: auto, auto, auto, 54px 54px, 54px 54px, auto;
}

.works-hero__image {
  border-color: rgba(255, 92, 168, 0.18);
  box-shadow: var(--shadow);
}

.works-manifest {
  padding-inline: clamp(24px, 4vw, 64px);
  border-color: rgba(255, 92, 168, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.work-piece__number {
  color: var(--pink);
  background: rgba(255, 255, 255, 0.82);
}

.news-card h3,
.news-article__body h1 {
  color: var(--ink);
}

.news-card {
  background: rgba(255, 255, 255, 0.78);
}

.news-card:hover,
.artist-profile-card:hover,
.gateway-panel:hover,
.work-piece:hover,
.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 78px rgba(255, 92, 168, 0.17);
}

.recruit-hero__note {
  color: var(--ink);
}

.recruit-row {
  border-color: rgba(255, 92, 168, 0.16);
}

.recruit-row:hover {
  background: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1080px) {
  .section-panel {
    width: min(100% - 40px, var(--max));
  }

  .global-nav {
    background:
      radial-gradient(circle at 12% 12%, rgba(255, 193, 218, 0.38), transparent 24%),
      radial-gradient(circle at 88% 18%, rgba(220, 203, 255, 0.30), transparent 24%),
      #fff;
    font-size: clamp(17px, 4vw, 24px);
  }

  .hero__inner,
  .editorial-gateway {
    grid-template-columns: 1fr;
  }

  .hero-board {
    min-height: 430px;
  }

  .gateway-spread {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gateway-panel {
    min-height: 184px;
  }
}

@media (max-width: 760px) {
  .section-panel {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding: 18px 20px;
  }

  .brand img {
    width: 126px;
  }

  .menu-toggle {
    border-color: rgba(255, 92, 168, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
  }

  .hero {
    min-height: auto;
    padding: 112px 0 34px;
  }

  .hero::before {
    left: 12px;
    top: 108px;
    width: 48px;
    height: 48px;
    box-shadow: 74px 42px 0 rgba(220, 203, 255, 0.72), 144px 10px 0 rgba(207, 247, 242, 0.82), 216px 64px 0 rgba(255, 92, 168, 0.58);
  }

  .hero::after {
    display: none;
  }

  .hero__inner {
    gap: 28px;
  }

  .kinetic-title {
    margin-top: 58px;
    font-size: clamp(48px, 14.5vw, 72px);
    line-height: 0.96;
  }

  .hero__tagline {
    font-size: clamp(20px, 6vw, 25px);
  }

  .hero__lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .hero__actions,
  .contact__actions,
  .gateway-actions {
    display: grid;
  }

  .button,
  .gateway-actions a {
    width: 100%;
  }

  .hero-board {
    min-height: 360px;
    border-radius: 28px;
  }

  .hero-board::after {
    width: 170px;
    height: 170px;
    font-size: 72px;
  }

  .hero-card--main {
    left: 18px;
    right: 18px;
    top: 22px;
    bottom: auto;
    width: auto;
    min-height: 238px;
    transform: rotate(-1.6deg);
  }

  .hero-card--main img {
    height: 170px;
  }

  .hero-card--main p,
  .hero-card--main strong {
    padding-inline: 16px;
  }

  .hero-card--float {
    left: 22px;
    bottom: 60px;
    width: 190px;
  }

  .hero-card--mini {
    right: 22px;
    top: 116px;
    width: 164px;
    min-height: 112px;
    padding: 14px;
  }

  .hero-marquee {
    margin-top: 10px;
    font-size: 34px;
  }

  .about,
  .artist,
  .link-stack,
  .editorial-gateway,
  .stores,
  .recruit,
  .contact,
  .news-list,
  .works-section,
  .artist-directory,
  .recruit-detail,
  .article-layout {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-head h2,
  .gateway-copy h2,
  .sub-hero h1,
  .artist-hero__copy h1,
  .works-hero__copy h1,
  .recruit-hero__copy h1,
  .news-page .sub-hero h1 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.12;
    white-space: normal;
  }

  .about-link-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .about-link-panel img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .gateway-spread,
  .store-grid,
  .recruit-panel,
  .artist-card-grid,
  .news-card-grid,
  .work-reel,
  .event-rhythm,
  .work-lanes,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .gateway-panel,
  .gateway-panel--talent,
  .gateway-panel--news,
  .gateway-panel--event,
  .gateway-panel--audition {
    min-height: 170px;
    padding: 20px;
  }

  .gateway-panel strong {
    width: min(100%, 72%);
    margin-top: 18px;
    font-size: 19px;
  }

  .gateway-panel__image {
    inset: 0 0 0 42%;
    opacity: 0.28;
  }

  .gateway-number {
    width: 82px;
    font-size: 42px;
  }

  .gateway-panel::before {
    width: 82px;
    height: 82px;
  }

  .gateway-panel .card-label {
    margin-left: 4px;
    font-size: 11px;
  }

  .gateway-actions {
    width: min(100%, 74%);
  }

  .store-card {
    padding: 18px;
  }

  .store-card div {
    margin: -42px 10px 0;
    padding: 20px;
  }

  .store-card h3 {
    font-size: 32px;
  }

  .contact__inner {
    padding: 28px 20px;
  }

  .contact h2 {
    font-size: 24px;
    line-height: 1.62;
  }

  .subpage {
    padding-top: 82px;
  }

  .sub-hero,
  .artist-hero,
  .works-hero,
  .recruit-hero {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .news-article__media img {
    aspect-ratio: auto;
  }

  .news-article__body {
    border-radius: 24px;
  }

  .location-card {
    border-radius: 0;
    padding-left: 30px;
  }
}
