﻿:root {
  --sl-bg: #080712;
  --sl-ink: #18122e;
  --sl-text: #f8f6ff;
  --sl-muted: rgba(248, 246, 255, 0.66);
  --sl-line: rgba(255, 255, 255, 0.14);
  --sl-blue: #e8ff00;
  --sl-pink: #ff2b9a;
  --sl-purple: #7c3aed;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sl-bg);
  color: var(--sl-text);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
}

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

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

.sl-guide-nav,
.sl-guide-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sl-guide-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(232, 255, 0, 0.34);
  object-fit: cover;
  box-shadow: 0 0 18px rgba(74, 229, 255, 0.14);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sl-guide-nav:hover .sl-guide-icon,
.sl-guide-nav:focus-visible .sl-guide-icon,
.sl-guide-action:hover .sl-guide-icon,
.sl-guide-action:focus-visible .sl-guide-icon {
  border-color: var(--sl-blue);
  box-shadow: 0 0 24px rgba(74, 229, 255, 0.28);
  transform: translateY(-2px) rotate(-3deg);
}

.sl-text-roll[data-text] {
  position: relative;
  overflow: hidden;
  perspective: 520px;
}

.sl-text-roll[data-text]::after {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  justify-content: center;
  color: var(--sl-blue);
  content: attr(data-text);
  opacity: 0;
  pointer-events: none;
  transform: translateY(72%) rotateX(-54deg);
  transform-origin: 50% 100%;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.sl-text-roll[data-text]:hover,
.sl-text-roll[data-text]:focus-visible {
  color: rgba(248, 246, 255, 0.22);
}

.sl-text-roll[data-text]:hover::after,
.sl-text-roll[data-text]:focus-visible::after {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.sl-signals-nav,
.sl-signals-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sl-signals-nav > span,
.sl-signals-action > span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--sl-blue);
  color: var(--sl-blue);
  background: rgba(8, 7, 18, .72);
  font-size: .68rem;
  font-weight: 950;
  transition: color 160ms ease, background 160ms ease, transform 220ms ease;
}

.sl-signals-nav:hover > span,
.sl-signals-nav:focus-visible > span,
.sl-signals-action:hover > span,
.sl-signals-action:focus-visible > span {
  color: #080712;
  background: var(--sl-blue);
  transform: translateY(-2px);
}

.sl-mobile-menu {
  display: none;
}

.sl-season-charm,
.sl-season-marker {
  --season-glass: rgba(205, 252, 255, 0.84);
  --season-edge: rgba(232, 255, 0, 0.78);
  --season-shadow: rgba(74, 229, 255, 0.34);
  position: relative;
  isolation: isolate;
}

.sl-season-charm {
  position: absolute;
  top: 1px;
  right: 214px;
  z-index: 2;
  display: block;
  width: 46px;
  height: 76px;
  outline: 0;
  transform-origin: 50% 0;
  animation: sl-charm-drift 5.8s ease-in-out infinite;
}

.sl-season-charm::after,
.sl-season-marker::after {
  position: absolute;
  inset: auto;
  border: 1px solid var(--season-glass);
  border-radius: 999px;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7);
}

.sl-season-charm::after {
  top: 22px;
  left: 5px;
  width: 36px;
  height: 36px;
}

.sl-season-charm:hover,
.sl-season-charm:focus-visible {
  animation-duration: 1.6s;
}

.sl-season-charm:hover::after,
.sl-season-charm:focus-visible::after,
.sl-season-marker:hover::after,
.sl-season-marker:focus-visible::after {
  animation: sl-sound-ring 920ms ease-out 1;
}

.sl-season-charm__hook,
.sl-season-charm__cord,
.sl-season-charm__glass,
.sl-season-charm__clapper,
.sl-season-charm__tag {
  position: absolute;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}

.sl-season-charm__hook {
  top: 0;
  width: 13px;
  height: 9px;
  border: 1px solid rgba(205, 252, 255, 0.74);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 10px var(--season-shadow);
}

.sl-season-charm__cord {
  top: 8px;
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, transparent, var(--season-edge));
  box-shadow: 0 0 10px var(--season-shadow);
}

.sl-season-charm__glass {
  top: 24px;
  width: 34px;
  height: 27px;
  border: 1px solid var(--season-glass);
  border-bottom: 2px solid rgba(232, 255, 0, 0.54);
  border-radius: 18px 18px 10px 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.30), transparent 36%),
    radial-gradient(ellipse at 50% 100%, rgba(232, 255, 0, 0.18), transparent 46%),
    rgba(8, 7, 18, 0.42);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.14), 0 0 16px var(--season-shadow);
}

.sl-season-charm__glass::after {
  position: absolute;
  right: 7px;
  top: 6px;
  width: 7px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 0 8px rgba(205, 252, 255, 0.46);
  content: "";
}

.sl-season-charm__clapper {
  top: 50px;
  width: 2px;
  height: 11px;
  background: rgba(248, 246, 255, 0.72);
}

.sl-season-charm__clapper::after {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sl-pink);
  box-shadow: 0 0 12px rgba(255, 43, 154, 0.72);
  content: "";
  transform: translateX(-50%);
}

.sl-season-charm__tag {
  top: 62px;
  width: 17px;
  height: 28px;
  border: 1px solid rgba(232, 255, 0, 0.42);
  background:
    linear-gradient(180deg, rgba(232, 255, 0, 0.12), transparent),
    rgba(8, 7, 18, 0.78);
  box-shadow: 0 0 12px rgba(232, 255, 0, 0.18);
  transform: translateX(-50%) rotate(5deg);
  transform-origin: 50% 0;
  transition: transform 180ms ease;
}

.sl-season-charm:hover .sl-season-charm__tag,
.sl-season-charm:focus-visible .sl-season-charm__tag {
  transform: translateX(-50%) rotate(-9deg);
}

body[data-season="moon-viewing"] {
  --season-moon: #f3e4b5;
  --season-russet: #b95c3d;
  --season-grass: #a8b072;
  --season-night: #111221;
  --season-shadow: rgba(243, 228, 181, 0.28);
}

.sl-season-charm__moon,
.sl-season-charm__grass,
.sl-season-charm__star {
  position: absolute;
  display: block;
}

.sl-season-charm__moon {
  top: 5px;
  left: 8px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--season-moon, #f3e4b5);
  box-shadow: 0 0 22px var(--season-shadow);
}

.sl-season-charm__moon::after {
  position: absolute;
  top: -4px;
  left: 9px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #171722;
  content: "";
}

.sl-season-charm__grass {
  right: 2px;
  bottom: 8px;
  width: 30px;
  height: 37px;
  border-left: 1px solid var(--season-grass, #a8b072);
  transform: rotate(11deg);
  transform-origin: 50% 100%;
}

.sl-season-charm__grass::before,
.sl-season-charm__grass::after {
  position: absolute;
  width: 19px;
  height: 8px;
  border-top: 1px solid var(--season-grass, #a8b072);
  border-radius: 50%;
  content: "";
}

.sl-season-charm__grass::before {
  top: 9px;
  left: -17px;
  transform: rotate(18deg);
}

.sl-season-charm__grass::after {
  top: 19px;
  left: -2px;
  transform: rotate(-18deg);
}

.sl-season-charm__star {
  top: 10px;
  right: 1px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--sl-blue);
  box-shadow: 0 0 9px var(--sl-blue), -7px 17px 0 rgba(255, 255, 255, 0.62);
}

body[data-season="moon-viewing"] .sl-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 74% 24%, rgba(243, 228, 181, 0.22), transparent 15rem),
    linear-gradient(118deg, rgba(17, 18, 33, 0.24), rgba(185, 92, 61, 0.12));
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.sl-main {
  background: var(--sl-bg);
}

.sl-kicker {
  margin: 0 0 14px;
  color: rgba(232, 255, 0, 0.92);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sl-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  align-items: center;
  min-height: 100svh;
  padding: 112px clamp(50px, 5.7vw, 82.5px) 54px;
  overflow: hidden;
  background: #050506;
  color: var(--sl-text);
}

.sl-hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    radial-gradient(ellipse at 76% 42%, rgba(232, 255, 0, 0.18), transparent 18rem);
  background-size: 72px 72px, 72px 72px, auto;
  content: "";
  opacity: 0.56;
  pointer-events: none;
}

.sl-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -20vh;
  z-index: 2;
  width: min(80vw, 70rem);
  height: 60vh;
  background:
    radial-gradient(ellipse at 52% 46%, rgba(232, 255, 0, 0.22), transparent 62%),
    radial-gradient(ellipse at 40% 58%, rgba(255, 43, 154, 0.24), transparent 68%);
  content: "";
  filter: blur(10px);
  pointer-events: none;
}

.sl-hero__slider,
.sl-hero-slide,
.sl-hero-slide img,
.sl-hero__wash {
  position: absolute;
  inset: 0;
}

.sl-hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.sl-hero-slide.is-active {
  opacity: 1;
}

.sl-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(1.08) contrast(1.08) brightness(0.82);
}

.sl-hero__wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.90) 0%, rgba(5, 5, 6, 0.76) 36%, rgba(5, 5, 6, 0.20) 70%, rgba(5, 5, 6, 0.52) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.20), rgba(5, 5, 6, 0.70));
  pointer-events: none;
}

.sl-imo-teaser {
  --imo-size: clamp(92px, 9.5vw, 156px);
  position: absolute;
  right: clamp(28px, 12vw, 184px);
  bottom: clamp(88px, 15vh, 156px);
  z-index: 3;
  width: var(--imo-size);
  height: var(--imo-size);
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 0 18px rgba(74, 229, 255, 0.24));
  isolation: isolate;
  opacity: 0.94;
  padding: 0;
  transition: opacity 180ms ease, filter 220ms ease;
  will-change: opacity, filter;
}

.sl-imo-teaser::before {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 48% 56%, rgba(232, 255, 0, 0.18), transparent 42%),
    radial-gradient(circle at 54% 42%, rgba(74, 229, 255, 0.18), transparent 58%);
  content: "";
  filter: blur(9px);
  opacity: 0.84;
  pointer-events: none;
  animation: sl-imo-glow 2.8s ease-in-out infinite;
  transform-origin: 50% 50%;
}

.sl-imo-teaser img,
.sl-imo-teaser__rgb,
.sl-imo-teaser__scan {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sl-imo-teaser img {
  display: block;
  object-fit: contain;
  animation: sl-imo-float 2.8s ease-in-out infinite;
  transform-origin: 50% 72%;
  will-change: transform;
}

.sl-imo-teaser__rgb {
  background: var(--imo-image) center / contain no-repeat;
  background-blend-mode: multiply;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  -webkit-mask: var(--imo-image) center / contain no-repeat;
  mask: var(--imo-image) center / contain no-repeat;
}

.sl-imo-teaser__rgb--r {
  background-color: rgba(255, 43, 154, 0.78);
}

.sl-imo-teaser__rgb--c {
  background-color: rgba(74, 229, 255, 0.72);
}

.sl-imo-teaser__rgb--m {
  background-color: rgba(232, 255, 0, 0.42);
}

.sl-imo-teaser__scan {
  background:
    linear-gradient(108deg, transparent 0 38%, rgba(232, 255, 0, 0.00) 39%, rgba(232, 255, 0, 0.38) 48%, rgba(74, 229, 255, 0.34) 52%, transparent 62%),
    var(--imo-image) center / contain no-repeat;
  clip-path: polygon(-36% 0, -16% 0, -36% 100%, -56% 100%);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
}

.sl-imo-teaser.is-signal {
  filter: drop-shadow(0 0 20px rgba(74, 229, 255, 0.36)) drop-shadow(0 0 30px rgba(255, 43, 154, 0.22));
  opacity: 1;
}

.sl-imo-teaser:hover,
.sl-imo-teaser:focus-visible {
  opacity: 1;
}

.sl-imo-teaser:focus-visible {
  outline: 2px solid rgba(232, 255, 0, 0.78);
  outline-offset: 6px;
}

.sl-imo-teaser.is-signal .sl-imo-teaser__rgb {
  opacity: 0.58;
}

.sl-imo-teaser.is-signal .sl-imo-teaser__rgb--r {
  animation: sl-imo-rgb-r 520ms steps(2, end);
}

.sl-imo-teaser.is-signal .sl-imo-teaser__rgb--c {
  animation: sl-imo-rgb-c 520ms steps(2, end);
}

.sl-imo-teaser.is-signal .sl-imo-teaser__rgb--m {
  animation: sl-imo-rgb-m 520ms steps(2, end);
}

.sl-imo-teaser.is-signal .sl-imo-teaser__scan {
  animation: sl-imo-scan 560ms cubic-bezier(0.18, 0.82, 0.22, 1);
}

.sl-hero__copy {
  position: relative;
  z-index: 3;
  width: clamp(340px, 38vw, 640px);
  min-width: 340px;
}

.sl-hero__copy h1 {
  margin: 0 0 8px;
  color: rgba(232, 255, 0, 0.82);
  font-size: clamp(1.1rem, 1.8vw, 1.68rem);
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.sl-hero__statement {
  max-width: 11ch;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(3.95rem, 7.4vw, 9.8rem);
  font-weight: 950;
  line-height: 0.92;
}

.sl-hero__lead {
  max-width: 38rem;
  margin: 0 0 18px;
  color: rgba(248, 246, 255, 0.86);
  font-size: clamp(1.35rem, 2.45vw, 2.65rem);
  font-weight: 850;
  line-height: 1.18;
}

.sl-hero__meta {
  width: fit-content;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid rgba(232, 255, 0, 0.26);
  background: rgba(8, 7, 18, 0.58);
  color: rgba(248, 246, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
}

.sl-hero__release {
  display: grid;
  gap: 4px;
  width: min(100%, 390px);
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(232, 255, 0, 0.32);
  background:
    linear-gradient(90deg, rgba(232, 255, 0, 0.12), rgba(255, 43, 154, 0.08)),
    rgba(8, 7, 18, 0.68);
  box-shadow: 0 0 42px rgba(232, 255, 0, 0.08);
}

.sl-hero__release span {
  color: var(--sl-blue);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.sl-hero__release strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.1;
}

.sl-hero__release small {
  color: var(--sl-muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.sl-hero__sample {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.sl-play-button,
.sl-booth-button,
.sl-card-actions a,
.sl-card-booth,
.sl-store-grid article > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(232, 255, 0, 0.42);
  background: rgba(8, 7, 18, 0.62);
  color: var(--sl-blue);
  font-weight: 950;
  cursor: pointer;
}

.sl-play-button {
  gap: 10px;
  min-width: 190px;
  padding: 10px 18px;
  border-color: transparent;
  background: var(--sl-pink);
  color: #fff;
  text-align: left;
}

.sl-play-button small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.sl-play-button[data-state="playing"],
.sl-card-play[data-state="playing"] {
  background: var(--sl-blue);
  color: #080712;
  box-shadow: 0 0 0 1px rgba(232, 255, 0, 0.32), 0 0 34px rgba(232, 255, 0, 0.42);
}

.sl-play-button[data-state="missing"],
.sl-card-play[data-state="missing"] {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--sl-muted);
}

.sl-booth-button {
  min-width: 112px;
  padding: 0 18px;
}

.sl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.sl-hero__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 142px;
  min-height: 52px;
  border: 1px solid rgba(232, 255, 0, 0.42);
  background: rgba(8, 7, 18, 0.62);
  color: var(--sl-blue);
  font-weight: 950;
}

.sl-hero__actions a:first-child {
  border-color: transparent;
  background: var(--sl-pink);
  color: #fff;
}

.sl-hero__actions .sl-guide-action {
  padding: 0 16px 0 10px;
}

.sl-hero__actions .sl-signals-action {
  padding: 0 16px 0 10px;
}

.sl-hero__actions .sl-signals-action > span {
  width: 34px;
  height: 34px;
}

.sl-hero__actions .sl-guide-icon {
  width: 34px;
  height: 34px;
}

.sl-hero__meter {
  position: absolute;
  right: clamp(22px, 4vw, 56px);
  bottom: 32px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.sl-dot {
  width: 38px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.sl-dot.is-active {
  background: var(--sl-blue);
}

.sl-cinema {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: end;
  padding: clamp(64px, 8vw, 120px) clamp(28px, 6vw, 96px);
  overflow: hidden;
  border-top: 1px solid rgba(74, 229, 255, 0.2);
  border-bottom: 1px solid rgba(255, 43, 154, 0.2);
  background:
    linear-gradient(90deg, rgba(74, 229, 255, 0.05), transparent 34%),
    #09080f;
  color: var(--sl-text);
}

.sl-cinema::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
}

.sl-cinema__head,
.sl-cinema__stage {
  position: relative;
  z-index: 1;
}

.sl-cinema__head h2 {
  max-width: 9ch;
  margin: 12px 0 24px;
  font-size: clamp(3.2rem, 5.8vw, 7.2rem);
  font-weight: 950;
  line-height: 0.94;
}

.sl-cinema__head > p:last-child {
  margin: 0;
  color: var(--sl-muted);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sl-cinema__stage {
  aspect-ratio: 7 / 4;
  border: 1px solid rgba(232, 255, 0, 0.36);
  background: #000;
  box-shadow: 18px 18px 0 rgba(255, 43, 154, 0.08), -18px -18px 0 rgba(74, 229, 255, 0.06);
  transition: border-color 180ms ease, box-shadow 260ms ease;
}

.sl-cinema__stage:hover,
.sl-cinema__stage:focus-within {
  border-color: var(--sl-blue);
  box-shadow: 14px 14px 0 rgba(255, 43, 154, 0.12), -14px -14px 0 rgba(74, 229, 255, 0.1);
}

.sl-cinema__stage video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sl-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  align-items: stretch;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b0917;
}

.sl-proof-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  min-height: 314px;
  padding: 16px clamp(14px, 2vw, 24px) 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 43, 154, 0.10), transparent 42%),
    #0b0917;
  color: var(--sl-text);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.sl-proof-card--sato {
  border-color: rgba(232, 255, 0, 0.24);
  background:
    radial-gradient(ellipse at 22% 34%, rgba(232, 255, 0, 0.18), transparent 13rem),
    linear-gradient(135deg, rgba(255, 198, 76, 0.14), rgba(255, 43, 154, 0.06) 44%, transparent 72%),
    #0b0917;
}

.sl-proof-strip .sl-proof-card.sl-proof-card--raffi {
  border-color: rgba(255, 201, 110, 0.30);
  background:
    radial-gradient(ellipse at 22% 34%, rgba(255, 201, 110, 0.20), transparent 13rem),
    linear-gradient(135deg, rgba(255, 201, 110, 0.12), rgba(255, 43, 154, 0.05) 48%, transparent 72%),
    #0b0917;
}

.sl-proof-strip .sl-proof-card.sl-proof-card--uriela {
  border-color: rgba(158, 180, 255, 0.30);
  background:
    radial-gradient(ellipse at 24% 34%, rgba(158, 180, 255, 0.20), transparent 13rem),
    linear-gradient(135deg, rgba(84, 162, 255, 0.12), rgba(124, 58, 237, 0.08) 48%, transparent 72%),
    #0b0917;
}

.sl-proof-strip .sl-proof-card.sl-proof-card--krauza {
  border-color: rgba(232, 255, 0, 0.26);
  background:
    radial-gradient(ellipse at 22% 34%, rgba(232, 255, 0, 0.16), transparent 13rem),
    linear-gradient(135deg, rgba(232, 255, 0, 0.09), rgba(255, 255, 255, 0.04) 44%, transparent 72%),
    #0b0917;
}

.sl-proof-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(232, 255, 0, 0.11), transparent 44%),
    #0b0917;
}

.sl-proof-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(84, 162, 255, 0.14), transparent 44%),
    #0b0917;
}

.sl-proof-card:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(84, 162, 255, 0.12), rgba(255, 43, 154, 0.08) 48%, transparent 72%),
    #0b0917;
}

.sl-proof-card figure {
  position: relative;
  min-height: 176px;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.sl-proof-card figure::after,
.sl-lineup-card::after,
.sl-store-grid article::after,
.sl-featured-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transform: scale(0.985);
  background:
    linear-gradient(180deg, rgba(232, 255, 0, 0.12), transparent 28%, transparent 72%, rgba(255, 43, 154, 0.12));
  box-shadow: inset 0 0 0 1px rgba(232, 255, 0, 0.42);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.sl-proof-card figure::before,
.sl-featured-visual::before,
.sl-news-card::after,
.sl-stable-update__visual::after,
.sl-lineup-card::after,
.sl-store-grid article::after {
  background:
    linear-gradient(112deg, transparent 0 34%, rgba(255, 255, 255, 0.00) 40%, rgba(255, 255, 255, 0.42) 49%, rgba(180, 245, 255, 0.22) 56%, transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 34%, transparent 68%, rgba(74, 229, 255, 0.10));
}

.sl-news-card::after {
  background:
    linear-gradient(112deg, transparent 0 33%, rgba(255, 255, 255, 0.00) 40%, rgba(255, 255, 255, 0.54) 49%, rgba(255, 43, 154, 0.16) 58%, transparent 68%);
}

.sl-stable-update__visual::after {
  background:
    radial-gradient(ellipse at 70% 28%, rgba(232, 255, 0, 0.16), transparent 34%),
    linear-gradient(104deg, transparent 0 42%, rgba(255, 255, 255, 0.30) 50%, rgba(74, 229, 255, 0.18) 58%, transparent 68%);
}

.sl-lineup-card::after {
  background:
    linear-gradient(180deg, rgba(232, 255, 0, 0.10), transparent 36%, transparent 70%, rgba(255, 43, 154, 0.10)),
    radial-gradient(ellipse at 50% 28%, rgba(74, 229, 255, 0.13), transparent 38%);
}

.sl-store-grid article::after {
  background:
    linear-gradient(90deg, rgba(232, 255, 0, 0.14), transparent 22%, transparent 78%, rgba(74, 229, 255, 0.10));
}

.sl-proof-card figure::before,
.sl-featured-visual::before,
.sl-news-card::after,
.sl-stable-update__visual::after {
  position: absolute;
  z-index: 3;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-8px);
}

.sl-proof-card figure::before,
.sl-featured-visual::before,
.sl-stable-update__visual::after {
  inset: 0;
}

.sl-news-card::after {
  top: 0;
  right: 0;
  left: 0;
  aspect-ratio: 1.78 / 1;
}

.sl-proof-card img {
  width: 100%;
  height: 100%;
  min-height: 176px;
  object-fit: cover;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 760ms ease;
}

.sl-proof-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-right: 0;
}

.sl-proof-card__body span {
  color: var(--sl-blue);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.sl-proof-card__body strong {
  color: #fff;
  font-size: clamp(1.18rem, 1.65vw, 1.72rem);
  line-height: 1;
}

.sl-proof-card__body small {
  max-width: 24rem;
  color: var(--sl-muted);
  line-height: 1.55;
}

.sl-proof-card .sl-card-play {
  position: static;
  justify-self: start;
  min-width: 102px;
  transform: none;
}

.sl-proof-card:hover figure::after,
.sl-proof-card:focus-within figure::after,
.sl-lineup-card:hover::after,
.sl-lineup-card:focus-within::after,
.sl-store-grid article:hover::after,
.sl-store-grid article:focus-within::after,
.sl-featured-visual:hover::after,
.sl-featured-visual:focus-within::after {
  opacity: 1;
  transform: scale(1);
}

.sl-proof-card:hover figure::before,
.sl-proof-card:focus-within figure::before,
.sl-featured-visual:hover::before,
.sl-featured-visual:focus-within::before,
.sl-news-card:hover::after,
.sl-news-card:focus-visible::after,
.sl-stable-update__visual:hover::after,
.sl-stable-update__visual:focus-within::after {
  opacity: 0.62;
  transform: translateX(0);
}

.sl-proof-card:hover,
.sl-proof-card:focus-within,
.sl-proof-card.is-playing {
  border-color: rgba(232, 255, 0, 0.34);
  box-shadow: inset 0 0 0 1px rgba(232, 255, 0, 0.12), 0 18px 46px rgba(0, 0, 0, 0.28);
}

.sl-proof-card.is-playing,
.sl-lineup-card.is-playing,
.sl-store-grid article.is-playing {
  border-color: rgba(232, 255, 0, 0.76);
  background:
    radial-gradient(ellipse at 50% 22%, rgba(232, 255, 0, 0.15), transparent 20rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(232, 255, 0, 0.22), 0 0 42px rgba(232, 255, 0, 0.16);
}

.sl-proof-card.is-playing figure::after,
.sl-lineup-card.is-playing::after,
.sl-store-grid article.is-playing::after {
  opacity: 1;
  transform: scale(1);
}

.sl-proof-card:hover img,
.sl-proof-card:focus-within img,
.sl-lineup-card:hover img,
.sl-lineup-card:focus-within img,
.sl-store-grid article:hover > img,
.sl-store-grid article:focus-within > img,
.sl-featured-visual:hover img,
.sl-featured-visual:focus-within img,
.sl-news-card:hover img,
.sl-news-card:focus-visible img,
.sl-stable-update__visual:hover img,
.sl-stable-update__visual:focus-within img {
  transform: translateY(-6px) scale(1.026);
  filter: none;
}

.sl-proof-card--sato img {
  object-position: 58% 30%;
}

.sl-proof-card--raffi img {
  object-position: 50% 28%;
}

.sl-proof-card--uriela img {
  object-position: 50% 18%;
}

.sl-proof-card--krauza img {
  object-fit: contain;
  object-position: center center;
  background: rgba(255, 255, 255, 0.06);
}

.sl-proof-card:hover img,
.sl-proof-card:focus-within img {
  transform: scale(1.032) rotate(0.35deg);
  filter: none;
}

.sl-news-card:hover img,
.sl-news-card:focus-visible img {
  transform: translateY(-7px) scale(1.035);
  filter: none;
}

.sl-stable-update__visual:hover img,
.sl-stable-update__visual:focus-within img {
  transform: scale(1.038) translateX(-8px);
  filter: none;
}

.sl-lineup-card:hover img,
.sl-lineup-card:focus-within img {
  transform: translateY(-5px) scale(1.025);
  filter: none;
}

.sl-store-grid article:hover > img,
.sl-store-grid article:focus-within > img {
  transform: scale(1.018);
  filter: none;
}

.sl-proof-card:hover .sl-card-play,
.sl-proof-card:focus-within .sl-card-play,
.sl-lineup-card:hover .sl-card-play,
.sl-lineup-card:focus-within .sl-card-play,
.sl-store-grid article:hover .sl-card-play,
.sl-store-grid article:focus-within .sl-card-play {
  border-color: rgba(232, 255, 0, 0.86);
  color: #050506;
  background: var(--sl-blue);
  box-shadow: 0 0 0 1px rgba(232, 255, 0, 0.28), 0 0 30px rgba(232, 255, 0, 0.36);
}

.sl-proof-strip a {
  display: grid;
  height: 65.4px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(248, 246, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 950;
}

.sl-proof-strip .sl-strip-sample {
  display: grid;
  height: 65.4px;
  place-items: center;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b0917;
  color: rgba(248, 246, 255, 0.78);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  cursor: pointer;
}

.sl-proof-strip .sl-strip-sample:hover,
.sl-proof-strip .sl-strip-sample[data-state="playing"] {
  color: var(--sl-blue);
}

.sl-section {
  scroll-margin-top: 92px;
  padding: 54px clamp(50px, 5.7vw, 82.5px);
  background: #0f0b1e;
  color: var(--sl-text);
}

.sl-section__head {
  max-width: 1120px;
  margin: 0 auto 36px;
  text-align: center;
}

.sl-section__head--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1260px;
  text-align: left;
}

.sl-section__head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  font-weight: 950;
  line-height: 1;
}

.sl-section__head p {
  margin: 12px auto 0;
  max-width: 42rem;
  color: var(--sl-muted);
}

.sl-view-all {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 31.2px;
  color: var(--sl-blue);
  font-size: 0.82rem;
  font-weight: 950;
}

.sl-featured {
  background:
    radial-gradient(ellipse at 74% 30%, rgba(232, 255, 0, 0.12), transparent 28rem),
    #120d22;
}

.sl-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 25px;
  max-width: 1260px;
  margin: 0 auto;
}

.sl-featured-panel,
.sl-featured-visual {
  min-height: 435.5px;
  border: 1px solid var(--sl-line);
  background:
    linear-gradient(135deg, rgba(232, 255, 0, 0.10), transparent 44%),
    rgba(255, 255, 255, 0.06);
}

.sl-featured-panel {
  display: grid;
  align-content: end;
  padding: 28px;
}

.sl-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.sl-card-actions a,
.sl-card-actions button {
  min-width: 142px;
}

.sl-featured-panel span,
.sl-featured-panel small {
  color: var(--sl-muted);
  font-size: 0.92rem;
  font-weight: 950;
}

.sl-featured-panel strong {
  margin: 16px 0;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
}

.sl-featured-visual {
  margin: 0;
  overflow: hidden;
}

.sl-featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 760ms ease;
}

.sl-news {
  padding-top: 110px;
  padding-bottom: 74px;
  background: #f8fbff;
  color: var(--sl-ink);
}

.sl-news .sl-section__head h2 {
  color: var(--sl-ink);
}

.sl-news .sl-section__head p {
  color: rgba(24, 18, 46, 0.64);
}

.sl-news .sl-section__head {
  position: relative;
}

.sl-news .sl-section__head--split {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
}

.sl-update-pulse {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-height: 28px;
  margin-top: 8px;
  padding: 0 10px;
  border: 1px solid rgba(24, 18, 46, 0.12);
  background: rgba(24, 18, 46, 0.04);
  color: rgba(24, 18, 46, 0.58);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.sl-update-pulse span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sl-pink);
  box-shadow: 0 0 12px rgba(255, 43, 154, 0.48);
  animation: sl-update-breathe 2.8s ease-in-out infinite;
}

.sl-update-pulse:hover,
.sl-update-pulse:focus-visible {
  border-color: rgba(255, 43, 154, 0.28);
  color: rgba(24, 18, 46, 0.72);
}

.sl-season-marker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  width: fit-content;
  height: 46px;
  padding: 0 2px;
  outline: 0;
}

.sl-season-marker::after {
  top: 7px;
  left: 7px;
  width: 28px;
  height: 28px;
}

.sl-season-marker__chime,
.sl-season-marker__label {
  display: block;
}

.sl-season-marker__chime {
  position: relative;
  width: 34px;
  height: 42px;
  border-top: 1px solid rgba(24, 18, 46, 0.42);
  transition: transform 180ms ease;
}

.sl-season-marker__chime::before {
  position: absolute;
  top: 7px;
  left: 5px;
  width: 21px;
  height: 17px;
  border: 1px solid rgba(24, 18, 46, 0.54);
  border-bottom-color: rgba(255, 43, 154, 0.48);
  border-radius: 12px 12px 6px 6px;
  background:
    radial-gradient(circle at 72% 32%, rgba(255, 255, 255, 0.72), transparent 18%),
    rgba(205, 252, 255, 0.58);
  box-shadow: 0 0 14px rgba(74, 229, 255, 0.20);
  content: "";
}

.sl-season-marker__chime::after {
  position: absolute;
  top: 25px;
  left: 14px;
  width: 8px;
  height: 15px;
  border: 1px solid rgba(24, 18, 46, 0.20);
  background: rgba(24, 18, 46, 0.78);
  box-shadow: 0 0 10px rgba(255, 43, 154, 0.14);
  content: "";
  transform: rotate(-5deg);
  transform-origin: 50% 0;
}

.sl-season-marker__label {
  padding: 6px 9px 5px;
  border: 1px solid rgba(24, 18, 46, 0.14);
  background: rgba(24, 18, 46, 0.05);
  color: rgba(24, 18, 46, 0.58);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  transition: transform 180ms ease;
}

.sl-season-marker:hover .sl-season-marker__chime,
.sl-season-marker:focus-visible .sl-season-marker__chime {
  transform: rotate(-4deg);
}

.sl-season-marker:hover .sl-season-marker__label,
.sl-season-marker:focus-visible .sl-season-marker__label {
  transform: translateX(2px);
}

.sl-season-marker__moon,
.sl-season-marker__grass {
  position: relative;
  display: block;
  flex: 0 0 auto;
}

.sl-season-marker__moon {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--season-moon, #f3e4b5);
  box-shadow: 0 0 16px rgba(185, 92, 61, 0.18);
  overflow: hidden;
}

.sl-season-marker__moon::after {
  position: absolute;
  top: -5px;
  left: 10px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #f6f8fb;
  content: "";
}

.sl-season-marker__grass {
  width: 18px;
  height: 39px;
  margin-left: -11px;
  border-left: 1px solid #75805a;
  transform: rotate(9deg);
  transform-origin: 50% 100%;
}

.sl-season-marker__grass::before,
.sl-season-marker__grass::after {
  position: absolute;
  left: -13px;
  width: 15px;
  height: 7px;
  border-top: 1px solid #75805a;
  border-radius: 50%;
  content: "";
}

.sl-season-marker__grass::before {
  top: 11px;
  transform: rotate(18deg);
}

.sl-season-marker__grass::after {
  top: 23px;
  left: 0;
  transform: rotate(-17deg);
}

.sl-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 33px;
  justify-content: center;
  max-width: 1260px;
  margin: 0 auto;
}

.sl-news-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto;
  min-width: 0;
  min-height: 298.9px;
  color: var(--sl-ink);
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sl-news-card.is-placeholder {
  padding: 12px;
  border: 1px solid rgba(24, 18, 46, 0.10);
  background: #fff;
  color: var(--sl-ink);
  overflow: hidden;
}

.sl-news-card img {
  width: 100%;
  aspect-ratio: 1.78 / 1;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(232, 255, 0, 0.10), transparent 38%),
    linear-gradient(315deg, rgba(255, 43, 154, 0.08), transparent 48%),
    #edf4ff;
  transform-origin: center;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 760ms ease;
}

.sl-news-card:hover,
.sl-news-card:focus-visible {
  transform: translateY(-5px);
}

.sl-news-card:hover img,
.sl-news-card:focus-visible img {
  transform: none;
  filter: saturate(1.04) contrast(1.02);
}

.sl-news-card--nene img {
  object-position: center 18%;
}

.sl-news-card--sumine img {
  object-position: center 22%;
}

.sl-news-card--sato img {
  object-position: 60% 18%;
}

.sl-news-card--raffi img {
  object-position: center 28%;
}

.sl-news-card.is-placeholder img,
.sl-news-card img[src$="placeholder.png"] {
  opacity: 1;
  filter: none;
}

.sl-news-card.is-placeholder::before {
  content: "COMING SOON";
  position: absolute;
  top: 48px;
  left: 26px;
  z-index: 2;
  color: rgba(24, 18, 46, 0.78);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.sl-news-card.is-placeholder::after {
  content: "";
  position: absolute;
  top: 66px;
  right: 28px;
  left: 28px;
  z-index: 2;
  height: 54px;
  border-top: 1px solid rgba(24, 18, 46, 0.12);
  border-bottom: 1px solid rgba(255, 43, 154, 0.18);
  background:
    linear-gradient(90deg, transparent, rgba(24, 18, 46, 0.08), transparent);
  pointer-events: none;
}

.sl-news-card span {
  margin-top: 12px;
  color: rgba(24, 18, 46, 0.52);
  font-size: 0.76rem;
  font-weight: 900;
}

.sl-news-card strong {
  margin-top: 2px;
  color: var(--sl-ink);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.3;
}

.sl-news-card small {
  margin-top: 6px;
  color: rgba(255, 43, 154, 0.82);
  font-size: 0.72rem;
  font-weight: 950;
}

.sl-stable-update {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 1px;
  max-width: 1260px;
  margin: -34px auto 0;
  border: 1px solid rgba(24, 18, 46, 0.12);
  background: #120d22;
  color: var(--sl-text);
  overflow: hidden;
}

.sl-stable-update__visual {
  position: relative;
  min-height: 360px;
  margin: 0;
  background: #0b0917;
  overflow: hidden;
}

.sl-stable-update__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transition: transform 820ms cubic-bezier(0.16, 1, 0.3, 1), filter 820ms ease;
}

.sl-stable-update__body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 72px);
  background:
    radial-gradient(ellipse at 88% 20%, rgba(232, 255, 0, 0.14), transparent 20rem),
    linear-gradient(135deg, rgba(255, 43, 154, 0.16), transparent 46%),
    #120d22;
}

.sl-stable-update__body > span {
  color: var(--sl-pink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sl-stable-update__body h2 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.75rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.sl-stable-update__body p {
  max-width: 680px;
  margin: 0;
  color: rgba(246, 243, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.sl-stable-update__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.sl-stable-update__chips a {
  padding: 10px 13px;
  border: 1px solid rgba(232, 255, 0, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sl-stable-update__chips a:last-child {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(246, 243, 255, 0.64);
}

.sl-release-shelf {
  background:
    radial-gradient(ellipse at 16% 18%, rgba(255, 198, 76, 0.18), transparent 28rem),
    radial-gradient(ellipse at 86% 22%, rgba(124, 58, 237, 0.20), transparent 28rem),
    linear-gradient(180deg, #0f0b1e, #120d22);
}

body[data-season="moon-viewing"] .sl-release-shelf {
  background:
    radial-gradient(circle at 86% 12%, rgba(243, 228, 181, 0.14), transparent 23rem),
    radial-gradient(ellipse at 13% 82%, rgba(185, 92, 61, 0.15), transparent 28rem),
    linear-gradient(180deg, #111221, #171321 68%, #11111a);
}

.sl-series-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--season-moon, var(--sl-blue));
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.sl-toiro-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
  max-width: 1260px;
  margin: 0 auto;
}

.sl-voice-pairs {
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 228, 181, 0.08), transparent 24rem),
    linear-gradient(180deg, #0c0c17, #11101c);
}

.sl-toiro-stage--balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sl-toiro-release {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(243, 228, 181, 0.30);
  background: #0d0e18;
  overflow: hidden;
}

.sl-toiro-release--maki {
  min-height: 540px;
  border-color: rgba(168, 176, 114, 0.30);
}

.sl-toiro-release--compact {
  min-height: 520px;
}

.sl-toiro-release--angels {
  border-color: rgba(243, 228, 181, 0.28);
}

.sl-toiro-release--krauza {
  border-color: rgba(168, 176, 114, 0.30);
}

.sl-toiro-release figure,
.sl-toiro-release figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.sl-toiro-release figure img {
  object-fit: cover;
  object-position: 62% center;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.sl-toiro-release--maki figure img {
  object-position: 67% center;
}

.sl-toiro-release--angels figure img {
  object-position: 52% center;
}

.sl-toiro-release--krauza figure img {
  object-position: 58% center;
}

.sl-toiro-release::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 18, 0.02) 28%, rgba(9, 9, 18, 0.48) 59%, rgba(9, 9, 18, 0.96) 100%),
    linear-gradient(90deg, rgba(17, 18, 33, 0.28), transparent 58%);
  content: "";
  pointer-events: none;
}

.sl-toiro-release__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: clamp(22px, 4vw, 48px);
}

.sl-toiro-release__copy > span {
  color: var(--season-moon, var(--sl-blue));
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.sl-toiro-release__copy h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.92;
}

.sl-toiro-release--maki .sl-toiro-release__copy h3 {
  font-size: clamp(1.8rem, 3.1vw, 3.5rem);
}

.sl-toiro-release__copy p {
  max-width: 38rem;
  margin: 0;
  color: rgba(248, 246, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.sl-toiro-release__copy > small {
  color: rgba(243, 228, 181, 0.74);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.sl-toiro-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.sl-toiro-samples .sl-card-play {
  position: static;
  min-width: 132px;
  border-color: rgba(243, 228, 181, 0.60);
  background: rgba(15, 14, 27, 0.84);
  color: #fff;
  backdrop-filter: blur(10px);
}

.sl-toiro-samples .sl-card-play:hover,
.sl-toiro-samples .sl-card-play:focus-visible,
.sl-toiro-samples .sl-card-play[data-state="playing"] {
  background: var(--season-russet, #b95c3d);
}

.sl-toiro-release__booth {
  display: inline-grid;
  width: fit-content;
  min-height: 44px;
  margin-top: 2px;
  padding: 0 18px;
  place-items: center;
  border: 1px solid var(--season-moon, var(--sl-blue));
  color: var(--season-moon, var(--sl-blue));
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.sl-toiro-release__booth:hover,
.sl-toiro-release__booth:focus-visible {
  background: var(--season-moon, var(--sl-blue));
  color: #171321;
  transform: translateY(-2px);
}

.sl-toiro-release:hover figure img,
.sl-toiro-release:focus-within figure img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.018);
}

.sl-next-signal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.5fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(42px, 7vw, 88px) max(24px, calc((100vw - 1260px) / 2));
  overflow: hidden;
  border-block: 1px solid rgba(243, 228, 181, 0.16);
  background:
    linear-gradient(90deg, rgba(185, 92, 61, 0.12), transparent 42%),
    #0a0b13;
}

.sl-next-signal::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--season-moon, #f3e4b5), transparent);
  content: "";
  transform: translateX(-100%);
  animation: sl-signal-scan 7s ease-in-out infinite;
}

.sl-next-signal__copy {
  display: grid;
  gap: 12px;
}

.sl-next-signal__copy > span {
  color: var(--season-moon, #f3e4b5);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.sl-next-signal__copy h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  line-height: 0.94;
}

.sl-next-signal__copy p {
  margin: 0;
  color: rgba(248, 246, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
}

.sl-nene-nav {
  color: #99e7ff !important;
}

.sl-nene-nav::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #42d0ff;
  box-shadow: 0 0 12px #42d0ff;
  content: "";
  vertical-align: middle;
}

.sl-next-signal__cover {
  position: relative;
  display: block;
  width: min(100%, 360px);
  overflow: hidden;
  border: 1px solid rgba(243, 228, 181, 0.28);
  background: #15131a;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}

.sl-next-signal__cover::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255,255,255,.42), transparent 28%, transparent 72%, rgba(243,228,181,.28)) border-box;
  content: "";
  pointer-events: none;
}

.sl-next-signal__cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1), filter 500ms ease;
}

.sl-next-signal__cover > span {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(243, 228, 181, 0.42);
  background: rgba(10,11,19,.84);
  color: var(--season-moon, #f3e4b5);
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .08em;
  backdrop-filter: blur(10px);
}

.sl-next-signal__cover:hover img,
.sl-next-signal__cover:focus-visible img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.025);
}

.sl-next-signal__cover:focus-visible {
  outline: 2px solid var(--season-moon, #f3e4b5);
  outline-offset: 4px;
}

.sl-next-signal__special {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 22px;
  align-items: center;
  margin-top: 16px;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(89, 205, 255, .72);
  background: linear-gradient(105deg, rgba(27, 99, 206, .34), rgba(123, 61, 187, .22) 58%, rgba(255,255,255,.05));
  color: #fff;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.sl-next-signal__special::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 15%, rgba(137, 233, 255, .16) 48%, transparent 78%);
  content: "";
  transform: translateX(-120%);
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}

.sl-next-signal__special > span,
.sl-next-signal__special > small,
.sl-next-signal__special > strong {
  position: relative;
  z-index: 1;
}

.sl-next-signal__special > span {
  color: #9eeaff;
  font-size: .63rem;
  font-weight: 950;
  letter-spacing: .11em;
}

.sl-next-signal__special > strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-size: clamp(.8rem, 1.3vw, 1rem);
  letter-spacing: .06em;
}

.sl-next-signal__special > strong i {
  margin-left: 8px;
  color: #9eeaff;
  font-size: 1.25em;
  font-style: normal;
}

.sl-next-signal__special > small {
  color: rgba(248,246,255,.72);
  font-size: .73rem;
  font-weight: 800;
}

.sl-next-signal__special:hover,
.sl-next-signal__special:focus-visible {
  border-color: #b0f1ff;
  background: linear-gradient(105deg, rgba(37, 122, 240, .48), rgba(148, 64, 210, .34) 58%, rgba(255,255,255,.08));
  transform: translateY(-2px);
}

.sl-next-signal__special:hover::after,
.sl-next-signal__special:focus-visible::after {
  transform: translateX(120%);
}

.sl-next-signal__special:focus-visible {
  outline: 2px solid #b0f1ff;
  outline-offset: 4px;
}

.sl-next-signal__paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.sl-next-signal__path {
  position: relative;
  min-height: 166px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(243, 228, 181, 0.18);
  background: rgba(255,255,255,.025);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.sl-next-signal__path--live {
  border-color: rgba(243, 228, 181, 0.42);
  background: linear-gradient(135deg, rgba(185,92,61,.13), rgba(255,255,255,.025) 55%);
}

.sl-next-signal__path--rvc {
  border-color: rgba(93, 194, 255, 0.48);
  background: linear-gradient(135deg, rgba(38, 104, 222, .2), rgba(157, 72, 210, .08) 58%, rgba(255,255,255,.025));
}

.sl-next-signal__path:hover {
  border-color: rgba(243, 228, 181, 0.52);
  background-color: rgba(255,255,255,.045);
  transform: translateY(-2px);
}

.sl-next-signal__path > span,
.sl-next-signal__following span {
  color: var(--season-moon, #f3e4b5);
  font-size: .64rem;
  font-weight: 950;
  letter-spacing: .1em;
}

.sl-next-signal__path h3 {
  margin: 8px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1;
}

.sl-next-signal__path p {
  margin: 9px 0 0;
  color: rgba(248,246,255,.64);
  font-size: .76rem;
  font-weight: 700;
}

.sl-next-signal__window {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
}

.sl-next-signal__window div {
  display: grid;
  grid-template-columns: minmax(124px, .72fr) minmax(0, 1.28fr);
  gap: 10px;
  align-items: baseline;
  padding-top: 7px;
  border-top: 1px solid rgba(243, 228, 181, 0.16);
}

.sl-next-signal__window dt,
.sl-next-signal__window dd {
  margin: 0;
  font-size: .65rem;
  line-height: 1.45;
}

.sl-next-signal__window dt {
  color: var(--season-moon, #f3e4b5);
  font-weight: 950;
  letter-spacing: .05em;
}

.sl-next-signal__window dd {
  color: rgba(248,246,255,.72);
  font-weight: 750;
}

.sl-next-signal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.sl-next-signal__actions .sl-card-play,
.sl-next-signal__actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--season-moon, #f3e4b5);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: .72rem;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.sl-next-signal__actions .sl-card-play {
  position: static;
  inset: auto;
  transform: none;
}

.sl-next-signal__actions .sl-card-play:hover,
.sl-next-signal__actions .sl-card-play:focus-visible,
.sl-next-signal__actions a:hover,
.sl-next-signal__actions a:focus-visible {
  background: var(--season-moon, #f3e4b5);
  color: #0a0b13;
}

.sl-next-signal__following {
  margin-top: 4px !important;
  color: rgba(248,246,255,.56) !important;
  letter-spacing: .06em;
}

.sl-next-signal__following span {
  margin-right: 8px;
}

@keyframes sl-signal-scan {
  0%, 20% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.sl-release-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.72fr));
  gap: 18px;
  max-width: 1260px;
  margin: 0 auto;
}

.sl-release-grid--latest {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.78fr));
}

.sl-release-grid--latest .sl-release-feature img,
.sl-release-grid--latest .sl-release-card img {
  object-position: center;
}

.sl-release-card--sakuto::before {
  background:
    linear-gradient(180deg, rgba(8, 7, 18, 0.02), rgba(8, 7, 18, 0.24) 44%, rgba(8, 7, 18, 0.94)),
    radial-gradient(ellipse at 54% 26%, rgba(110, 222, 255, 0.18), transparent 44%);
}

.sl-release-card--nene-tool::before {
  background:
    linear-gradient(180deg, rgba(8, 7, 18, 0.02), rgba(8, 7, 18, 0.24) 44%, rgba(8, 7, 18, 0.94)),
    radial-gradient(ellipse at 48% 26%, rgba(255, 79, 168, 0.22), transparent 44%);
}

.sl-release-feature,
.sl-release-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 430px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: var(--sl-text);
  overflow: hidden;
}

.sl-release-feature {
  min-height: 520px;
  border-color: rgba(232, 255, 0, 0.38);
}

.sl-release-feature img,
.sl-release-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 760ms ease;
}

.sl-release-feature::before,
.sl-release-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 7, 18, 0.08), rgba(8, 7, 18, 0.16) 38%, rgba(8, 7, 18, 0.88)),
    radial-gradient(ellipse at 20% 24%, rgba(255, 198, 76, 0.24), transparent 32%),
    radial-gradient(ellipse at 84% 24%, rgba(124, 58, 237, 0.24), transparent 34%);
}

.sl-release-card::before {
  background:
    linear-gradient(180deg, rgba(8, 7, 18, 0.02), rgba(8, 7, 18, 0.28) 44%, rgba(8, 7, 18, 0.92)),
    radial-gradient(ellipse at 50% 28%, rgba(232, 255, 0, 0.13), transparent 42%);
}

.sl-release-card--raffi::before {
  background:
    linear-gradient(180deg, rgba(8, 7, 18, 0.02), rgba(8, 7, 18, 0.25) 44%, rgba(8, 7, 18, 0.92)),
    radial-gradient(ellipse at 42% 26%, rgba(255, 198, 76, 0.26), transparent 42%);
}

.sl-release-card--uriela::before {
  background:
    linear-gradient(180deg, rgba(8, 7, 18, 0.02), rgba(8, 7, 18, 0.27) 44%, rgba(8, 7, 18, 0.92)),
    radial-gradient(ellipse at 56% 24%, rgba(124, 58, 237, 0.28), transparent 44%);
}

.sl-release-card--krauza::before {
  background:
    linear-gradient(180deg, rgba(8, 7, 18, 0.00), rgba(8, 7, 18, 0.22) 44%, rgba(8, 7, 18, 0.94)),
    radial-gradient(ellipse at 52% 30%, rgba(232, 255, 0, 0.12), transparent 42%);
}

.sl-release-feature span,
.sl-release-feature strong,
.sl-release-feature small,
.sl-release-card span,
.sl-release-card strong,
.sl-release-card small {
  position: relative;
  z-index: 2;
}

.sl-release-feature span,
.sl-release-card span {
  color: var(--sl-blue);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.09em;
}

.sl-release-feature strong,
.sl-release-card strong {
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 4.4rem);
  line-height: 0.94;
}

.sl-release-card strong {
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  line-height: 1;
}

.sl-release-feature small,
.sl-release-card small {
  max-width: 34rem;
  margin-top: 12px;
  color: rgba(246, 243, 255, 0.76);
  line-height: 1.58;
}

.sl-release-feature:hover img,
.sl-release-feature:focus-visible img,
.sl-release-card:hover img,
.sl-release-card:focus-visible img {
  transform: scale(1.028);
}

.sl-lineup {
  background:
    radial-gradient(ellipse at 78% 20%, rgba(232, 255, 0, 0.14), transparent 28rem),
    #120d22;
}

.sl-lineup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.75fr));
  gap: 18px;
  max-width: 1260px;
  margin: 0 auto;
}

.sl-lineup-grid--release {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sl-lineup-card {
  position: relative;
  display: flex;
  min-height: 0;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  padding: 54px 18px 18px;
  border: 1px solid var(--sl-line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--sl-text);
  overflow: hidden;
}

.sl-lineup-card[data-status]::before,
.sl-store-grid article[data-status]::before {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 7px 9px;
  border: 1px solid rgba(232, 255, 0, 0.42);
  background: rgba(8, 7, 18, 0.74);
  color: var(--sl-blue);
  content: attr(data-status);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1;
}

.sl-lineup-card[data-status="COMING SOON"]::before,
.sl-store-grid article[data-status="COMING SOON"]::before,
.sl-lineup-card[data-status="PREPARING NEXT"]::before,
.sl-store-grid article[data-status="PREPARING NEXT"]::before {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(248, 246, 255, 0.72);
}

.sl-lineup-card[data-status="PREPARING NEXT"]::before,
.sl-store-grid article[data-status="PREPARING NEXT"]::before {
  border-color: rgba(232, 255, 0, 0.46);
  color: var(--sl-blue);
  box-shadow: 0 0 22px rgba(232, 255, 0, 0.18);
}

.sl-card-play {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  min-width: 86px;
  min-height: 44px;
  border: 1px solid rgba(255, 43, 154, 0.72);
  background: rgba(255, 43, 154, 0.92);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  cursor: pointer;
}

.sl-card-booth {
  width: fit-content;
  min-height: 40px;
  margin-top: 14px;
  padding: 0 14px;
}

.sl-lineup-card--primary {
  min-height: 581px;
}

.sl-lineup-card--sato {
  border-color: rgba(232, 255, 0, 0.58);
  background:
    radial-gradient(ellipse at 45% 18%, rgba(255, 198, 76, 0.18), transparent 18rem),
    radial-gradient(ellipse at 70% 72%, rgba(255, 43, 154, 0.12), transparent 17rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    #0b0917;
  box-shadow: inset 0 0 0 1px rgba(232, 255, 0, 0.10);
}

.sl-lineup-card--silhouette {
  border-color: rgba(232, 255, 0, 0.34);
  background:
    radial-gradient(ellipse at 50% 32%, rgba(232, 255, 0, 0.12), transparent 14rem),
    linear-gradient(180deg, rgba(255, 43, 154, 0.08), rgba(255, 255, 255, 0.04)),
    #0b0917;
}

.sl-lineup-card--shion {
  border-color: rgba(232, 255, 0, 0.52);
  background:
    radial-gradient(ellipse at 52% 18%, rgba(232, 255, 0, 0.18), transparent 16rem),
    radial-gradient(ellipse at 40% 72%, rgba(255, 43, 154, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    #09090d;
}

.sl-lineup-card--raffi {
  border-color: rgba(255, 198, 76, 0.48);
  background:
    radial-gradient(ellipse at 42% 18%, rgba(255, 198, 76, 0.22), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    #0c0916;
}

.sl-lineup-card--uriela {
  border-color: rgba(154, 135, 255, 0.52);
  background:
    radial-gradient(ellipse at 52% 18%, rgba(124, 58, 237, 0.22), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    #0b0b1c;
}

.sl-lineup-card--krauza {
  border-color: rgba(232, 255, 0, 0.34);
  background:
    radial-gradient(ellipse at 52% 18%, rgba(232, 255, 0, 0.10), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    #09090d;
}

.sl-lineup-card img,
.sl-lineup-placeholder {
  width: 100%;
  height: clamp(250px, 23vw, 330px);
  flex: 0 0 auto;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 760ms ease;
}

.sl-lineup-card--primary img {
  height: 412px;
  object-fit: cover;
}

.sl-lineup-card--sato img {
  object-position: 58% 32%;
}

.sl-lineup-card--sato.sl-sato-audio-card > img {
  height: clamp(260px, 28vw, 360px);
  object-position: 42% center;
}

.sl-lineup-card--raffi img,
.sl-lineup-card--uriela img {
  object-fit: contain;
  object-position: center center;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.72), transparent 68%),
    #f8f6f0;
}

.sl-lineup-card--uriela img {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.80), transparent 68%),
    #f3f6ff;
}

.sl-lineup-card--krauza img {
  object-fit: contain;
  object-position: center center;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 255, 255, 0.13), transparent 66%),
    rgba(255, 255, 255, 0.08);
}

.sl-lineup-placeholder {
  display: grid;
  place-items: center;
  color: rgba(232, 255, 0, 0.72);
  font-size: 2rem;
  font-weight: 950;
}

.sl-lineup-card span,
.sl-store-grid span {
  color: var(--sl-blue);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.sl-lineup-card strong,
.sl-store-grid strong {
  color: #fff;
  font-size: 1.42rem;
  line-height: 1.08;
}

.sl-lineup-card small {
  display: block;
  margin-bottom: 14px;
  color: var(--sl-muted);
  font-size: 0.86rem;
}

.sl-lineup-card .sl-card-booth {
  align-self: flex-start;
  margin-top: auto;
}

.sl-store {
  background:
    linear-gradient(180deg, #120d22, #0b0917);
}

.sl-store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1260px;
  margin: 0 auto;
}

.sl-store--current {
  background:
    linear-gradient(90deg, rgba(11, 9, 23, 0.94), rgba(11, 9, 23, 0.78)),
    url('/public/shizukalab/brand/voice-library/voice-library-summer-signal-v1.webp') center / cover no-repeat;
}

body[data-season="moon-viewing"] .sl-store--current {
  background:
    linear-gradient(90deg, rgba(13, 13, 25, 0.96), rgba(13, 13, 25, 0.73)),
    url('/public/shizukalab/characters/komachi/hero/komachi-moonlit-room-v1.webp') 62% center / cover no-repeat;
}

.sl-store--current .sl-store-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sl-store--current .sl-store-grid article {
  min-height: 100%;
  padding: 14px 14px 16px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(8, 7, 18, 0.82);
  backdrop-filter: blur(14px);
}

.sl-store--current .sl-store-grid article > img {
  aspect-ratio: 1;
  height: auto;
  object-position: center;
}

.sl-store--current .sl-store-grid article > small {
  order: 4;
  min-height: 2.8em;
  color: rgba(246, 243, 255, 0.68);
  font-weight: 760;
  line-height: 1.45;
}

.sl-store--current .sl-store-grid article > a {
  order: 5;
  margin-top: auto;
}

.sl-store-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  padding-bottom: 8px;
  color: var(--sl-text);
  border: 1px solid transparent;
  overflow: hidden;
}

.sl-store-grid article > img {
  order: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 760ms ease;
}

.sl-store-card--nene > img {
  object-position: center 24%;
}

.sl-store-card--sato > img {
  object-position: 58% 20%;
}

.sl-store-card--raffi > img {
  object-position: 44% center;
}

.sl-store-card--uriela > img {
  object-position: 56% center;
}

.sl-store-card--krauza > img {
  object-position: 58% center;
}

.sl-sato-audio-card {
  isolation: isolate;
}

.sl-sato-audio-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  min-height: 330px;
  margin-bottom: 18px;
  padding: 72px 18px 20px;
  border: 1px solid rgba(232, 255, 0, 0.34);
  background:
    linear-gradient(rgba(232, 255, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 255, 0, 0.08) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 38%, rgba(255, 43, 154, 0.18), transparent 60%),
    #080710;
  background-size: 24px 24px, 24px 24px, auto, auto;
}

.sl-sato-audio-stage > p {
  position: absolute;
  top: 20px;
  left: 18px;
  margin: 0;
  color: var(--sl-blue);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
}

.sl-sato-wave {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 150px;
}

.sl-sato-wave i {
  width: 5px;
  height: var(--wave-height, 48px);
  background: linear-gradient(180deg, var(--sl-blue), var(--sl-pink));
  box-shadow: 0 0 14px rgba(255, 43, 154, 0.38);
}

.sl-sato-wave i:nth-child(2),
.sl-sato-wave i:nth-child(8) { --wave-height: 82px; }

.sl-sato-wave i:nth-child(3),
.sl-sato-wave i:nth-child(7) { --wave-height: 116px; }

.sl-sato-wave i:nth-child(4),
.sl-sato-wave i:nth-child(6) { --wave-height: 68px; }

.sl-sato-wave i:nth-child(5) { --wave-height: 138px; }

.sl-sato-audio-stage .sl-sato-sample-choice {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 8px 12px;
  border-color: rgba(255, 43, 154, 0.62);
  background: rgba(10, 8, 22, 0.9);
  text-align: left;
}

.sl-sato-audio-stage .sl-sato-sample-choice:hover,
.sl-sato-audio-stage .sl-sato-sample-choice:focus-visible,
.sl-sato-audio-stage .sl-sato-sample-choice[data-state="playing"] {
  border-color: var(--sl-blue);
  background: rgba(255, 43, 154, 0.24);
}

.sl-sato-sample-choice b {
  color: var(--sl-blue);
  font-size: 0.82rem;
}

.sl-sato-audio-stage .sl-sato-sample-choice span {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.sl-sato-audio-stage--compact {
  grid-template-columns: 1fr;
  min-height: 190px;
  margin-bottom: 0;
  padding-top: 58px;
}

.sl-store-card--sato.sl-sato-audio-card {
  padding: 14px;
  border-color: rgba(232, 255, 0, 0.38);
  background: rgba(255, 255, 255, 0.035);
}

.sl-store-card--sumine > img {
  object-position: center center;
}

.sl-store-card--shion > img {
  object-position: center 20%;
}

.sl-store-grid article > span {
  order: 2;
}

.sl-store-grid article > strong {
  order: 3;
}

.sl-store-grid .sl-card-play {
  position: static;
  order: 4;
  justify-self: start;
  min-width: 112px;
  min-height: 38px;
  transform: none;
}

.sl-store-grid article > a {
  order: 5;
  width: fit-content;
  min-height: 40px;
  padding: 0 14px;
}

.sl-archive {
  background: #0b0917;
}

.sl-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  justify-content: center;
  max-width: 1260px;
  margin: 0 auto;
}

.sl-archive-panel {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 435.5px;
  padding: 28px;
  border: 1px solid var(--sl-line);
  background: #11101b;
  color: var(--sl-text);
  overflow: hidden;
  isolation: isolate;
}

.sl-archive-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 7, 18, 0.04) 18%, rgba(8, 7, 18, 0.46) 58%, rgba(8, 7, 18, 0.96)),
    linear-gradient(90deg, rgba(17, 18, 33, 0.28), transparent 65%);
  content: "";
  pointer-events: none;
}

.sl-archive-panel > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 420ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sl-archive-panel:hover > img,
.sl-archive-panel:focus-visible > img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.018);
}

.sl-archive-panel span {
  position: relative;
  z-index: 1;
  color: var(--sl-blue);
  font-size: 0.92rem;
  font-weight: 950;
}

.sl-archive-panel strong {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
}

.sl-archive-panel small {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: var(--sl-muted);
  font-size: 1rem;
}

.sl-contact-band {
  display: grid;
  align-content: center;
  justify-content: center;
  width: min(1260px, calc(100% - 100px));
  min-height: 212px;
  margin: 26px auto 70px;
  border: 1px solid rgba(232, 255, 0, 0.22);
  background:
    radial-gradient(ellipse at 50% 28%, rgba(232, 255, 0, 0.12), transparent 24rem),
    #120d22;
  color: var(--sl-text);
  text-align: center;
}

.sl-contact-band span {
  color: var(--sl-blue);
  font-size: 0.9rem;
  font-weight: 950;
}

.sl-contact-band strong {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
}

.sl-contact-band small {
  margin-top: 14px;
  color: var(--sl-muted);
  font-size: 0.94rem;
  font-weight: 850;
}

.is-placeholder {
  background:
    linear-gradient(135deg, rgba(232, 255, 0, 0.15), rgba(255, 43, 154, 0.12)),
    #111116;
}

.is-placeholder img,
img[src$="placeholder.png"] {
  opacity: 0.06;
  image-rendering: auto;
}

.sl-hero-slide.is-placeholder img,
.sl-lineup-card--silhouette.is-placeholder img {
  opacity: 0.92;
  background:
    radial-gradient(ellipse at 68% 42%, rgba(232, 255, 0, 0.26), transparent 18rem),
    radial-gradient(ellipse at 72% 60%, rgba(255, 43, 154, 0.18), transparent 22rem),
    linear-gradient(90deg, #050506 0%, #09090d 42%, #111116 100%);
}

.sl-lineup-card--silhouette.is-placeholder img {
  filter: brightness(0.74) contrast(1.16);
}

@keyframes sl-charm-drift {
  0%,
  100% {
    transform: rotate(-2deg);
  }

  50% {
    transform: rotate(2deg);
  }
}

@keyframes sl-sound-ring {
  0% {
    opacity: 0.84;
    transform: scale(0.62);
  }

  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

@keyframes sl-update-breathe {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes sl-imo-rgb-r {
  0%,
  100% {
    transform: translate(0, 0);
    clip-path: inset(0);
  }

  26% {
    transform: translate(5%, -1%);
    clip-path: inset(12% 0 60% 0);
  }

  52% {
    transform: translate(-3%, 1%);
    clip-path: inset(54% 0 18% 0);
  }

  78% {
    transform: translate(2%, 0);
    clip-path: inset(22% 0 44% 0);
  }
}

@keyframes sl-imo-rgb-c {
  0%,
  100% {
    transform: translate(0, 0);
    clip-path: inset(0);
  }

  24% {
    transform: translate(-4%, 1%);
    clip-path: inset(58% 0 16% 0);
  }

  50% {
    transform: translate(3%, -1%);
    clip-path: inset(10% 0 66% 0);
  }

  76% {
    transform: translate(-2%, 0);
    clip-path: inset(28% 0 36% 0);
  }
}

@keyframes sl-imo-rgb-m {
  0%,
  100% {
    transform: translate(0, 0);
    clip-path: inset(0);
  }

  30% {
    transform: translate(2%, 3%);
    clip-path: inset(72% 0 6% 0);
  }

  60% {
    transform: translate(-2%, -2%);
    clip-path: inset(6% 0 74% 0);
  }
}

@keyframes sl-imo-scan {
  0% {
    clip-path: polygon(-36% 0, -16% 0, -36% 100%, -56% 100%);
    opacity: 0;
  }

  18%,
  70% {
    opacity: 0.72;
  }

  100% {
    clip-path: polygon(116% 0, 136% 0, 116% 100%, 96% 100%);
    opacity: 0;
  }
}

@keyframes sl-imo-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }

  25% {
    transform: translate3d(-20px, -12px, 0) rotate(7deg) scale(1.05);
  }

  52% {
    transform: translate3d(18px, -6px, 0) rotate(-5deg) scale(0.99);
  }

  78% {
    transform: translate3d(-8px, 10px, 0) rotate(4deg) scale(1.02);
  }
}

@keyframes sl-imo-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.92;
    transform: scale(1.08);
  }
}

.sl-angel-motion {
  padding: clamp(76px, 9vw, 132px) max(24px, calc((100vw - 1260px) / 2));
  background:
    linear-gradient(90deg, rgba(255, 194, 90, 0.08), transparent 42%, rgba(123, 111, 255, 0.10)),
    #080711;
  color: #f8f7ff;
}

.sl-angel-motion__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 12px 48px;
  align-items: end;
  margin-bottom: 34px;
}

.sl-angel-motion__head span {
  grid-column: 1 / -1;
  color: var(--sl-blue);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.sl-angel-motion__head h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.86;
}

.sl-angel-motion__head p {
  margin: 0 0 4px;
  color: rgba(248, 247, 255, 0.7);
  line-height: 1.6;
}

.sl-angel-motion__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.sl-angel-motion__continue {
  width: fit-content;
  min-height: 48px;
  margin-top: 18px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--sl-acid, #d7ff00);
  color: #fff;
  background: rgba(8, 8, 12, .72);
  font-size: .76rem;
  font-weight: 900;
  text-decoration: none;
}

.sl-angel-motion__continue:hover,
.sl-angel-motion__continue:focus-visible {
  color: #08080c;
  background: var(--sl-acid, #d7ff00);
}

.sl-scrub-story,
.sl-waterlight,
.sl-living-sky {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  background: #0d0b18;
}

.sl-scrub-story {
  grid-column: span 7;
}

.sl-scrub-story__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dfeafd;
  cursor: ew-resize;
  touch-action: pan-y;
}

.sl-scrub-story__stage > img,
.sl-scrub-story__stage > canvas,
.sl-waterlight > img,
.sl-waterlight > canvas,
.sl-living-sky__layers,
.sl-living-sky__layers img,
.sl-living-sky__layers i {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sl-scrub-story__stage > img,
.sl-waterlight > img,
.sl-living-sky__layers img {
  object-fit: cover;
}

.sl-scrub-story__stage > canvas {
  z-index: 1;
  opacity: 0;
  transition: opacity 220ms ease;
}

.sl-scrub-story.is-ready .sl-scrub-story__stage > canvas {
  opacity: 1;
}

.sl-scrub-story__time {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 4.5rem);
  font-weight: 950;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.44);
}

.sl-scrub-story__control {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 14px 18px;
}

.sl-scrub-story__control span,
.sl-scrub-story__control output,
.sl-waterlight__copy span,
.sl-living-sky__copy small {
  color: var(--sl-blue);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.sl-scrub-story input {
  width: 100%;
  accent-color: var(--sl-pink);
}

.sl-waterlight {
  grid-column: span 5;
  min-height: 100%;
  isolation: isolate;
  touch-action: pan-y;
}

.sl-waterlight > img {
  z-index: 0;
}

.sl-waterlight::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 46%, rgba(7, 6, 17, 0.82));
  pointer-events: none;
}

.sl-waterlight > canvas {
  z-index: 2;
  mix-blend-mode: screen;
  pointer-events: none;
}

.sl-waterlight__copy {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  display: grid;
  gap: 6px;
}

.sl-waterlight__copy strong,
.sl-living-sky__copy strong {
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 1;
}

.sl-waterlight > button {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(8, 7, 18, 0.58);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.sl-living-sky {
  --sky-x: 0;
  --sky-y: 0;
  grid-column: 1 / -1;
  min-height: clamp(420px, 52vw, 680px);
  padding: 0;
  color: #fff;
  text-align: left;
  cursor: crosshair;
  perspective: 1100px;
  touch-action: pan-y;
}

.sl-living-sky__layers {
  overflow: hidden;
  transform-style: preserve-3d;
}

.sl-living-sky__back {
  transform: scale(1.045) translate(calc(var(--sky-x) * -8px), calc(var(--sky-y) * -5px));
  filter: saturate(0.9) brightness(0.78);
}

.sl-living-sky__raffi {
  clip-path: polygon(0 0, 57% 0, 56% 100%, 0 100%);
  transform: scale(1.075) translate(calc(var(--sky-x) * 14px), calc(var(--sky-y) * 9px));
  filter: drop-shadow(18px 8px 24px rgba(255, 193, 82, 0.22));
}

.sl-living-sky__uriela {
  clip-path: polygon(48% 0, 100% 0, 100% 100%, 47% 100%);
  transform: scale(1.075) translate(calc(var(--sky-x) * 20px), calc(var(--sky-y) * 12px));
  filter: drop-shadow(-18px 8px 24px rgba(129, 112, 255, 0.24));
}

.sl-living-sky__layers img {
  transition: transform 90ms linear, filter 280ms ease;
  will-change: transform;
}

.sl-living-sky__layers i {
  z-index: 4;
  background:
    radial-gradient(circle at calc(50% + var(--sky-x) * 22%), calc(50% + var(--sky-y) * 18%), rgba(255, 250, 210, 0.34), transparent 18%),
    linear-gradient(90deg, rgba(255, 195, 88, 0.13), transparent 48%, rgba(126, 113, 255, 0.16));
  mix-blend-mode: screen;
}

.sl-living-sky__copy {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 5;
  display: grid;
  gap: 8px;
  pointer-events: none;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.sl-living-sky[aria-pressed="true"] {
  border-color: rgba(232, 255, 0, 0.68);
  box-shadow: inset 0 0 0 1px rgba(232, 255, 0, 0.18);
}

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

@media (prefers-reduced-motion: reduce) {
  .sl-next-signal::after {
    animation: none;
    transform: none;
  }

  .sl-next-signal__cover img,
  .sl-next-signal__path,
  .sl-next-signal__special,
  .sl-next-signal__special::after {
    transition: none;
  }

  .sl-season-charm,
  .sl-season-charm:hover::after,
  .sl-season-charm:focus-visible::after,
  .sl-season-marker:hover::after,
  .sl-season-marker:focus-visible::after,
  .sl-imo-teaser img,
  .sl-imo-teaser.is-signal .sl-imo-teaser__rgb,
  .sl-imo-teaser.is-signal .sl-imo-teaser__scan,
  .sl-update-pulse span {
    animation: none;
  }

  .sl-season-charm__tag,
  .sl-season-charm__grass,
  .sl-season-marker__chime,
  .sl-season-marker__grass,
  .sl-season-marker__label,
  .sl-toiro-release figure img,
  .sl-imo-teaser,
  .sl-imo-teaser img {
    transition: none;
  }

}

@media (max-width: 760px) {
  .sl-next-signal {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 20px;
  }

  .sl-next-signal__cover {
    width: min(100%, 300px);
    margin-inline: auto;
  }

  .sl-next-signal__copy h2 {
    font-size: 2.6rem;
  }

  .sl-next-signal__paths {
    grid-template-columns: 1fr;
  }

  .sl-next-signal__path {
    min-height: 0;
  }

  .sl-next-signal__special {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px;
  }

  .sl-next-signal__special > strong {
    grid-row: auto;
    grid-column: auto;
    margin-top: 4px;
  }

  .sl-next-signal__window div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .sl-toiro-stage {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .sl-toiro-stage--balanced {
    grid-template-columns: 1fr;
  }

  .sl-toiro-release,
  .sl-toiro-release--maki {
    min-height: 520px;
  }

  .sl-toiro-release--maki {
    min-height: 450px;
  }

  .sl-toiro-release--compact {
    width: 100%;
    min-height: 500px;
    margin-inline: auto;
  }

  .sl-toiro-release figure img {
    object-position: 68% center;
  }

  .sl-toiro-release--maki figure img {
    object-position: 72% center;
  }

  .sl-toiro-release--angels figure img {
    object-position: 52% center;
  }

  .sl-toiro-release--krauza figure img {
    object-position: 58% center;
  }

  .sl-toiro-release__copy {
    padding: 24px 20px;
  }

  .sl-toiro-release__copy h3 {
    font-size: 2.35rem;
  }

  .sl-toiro-samples .sl-card-play {
    min-width: 0;
    flex: 1 1 120px;
  }
}

@media (max-width: 1180px) {

  .sl-season-charm {
    top: -10px;
    right: 58px;
    transform: scale(0.72);
    animation-name: none;
  }

  .sl-mobile-menu {
    position: absolute;
    right: 0;
    display: block;
  }

  .sl-mobile-menu summary {
    display: grid;
    width: 48px;
    height: 48px;
    margin-top: -8px;
    place-items: center;
    list-style: none;
    cursor: pointer;
  }

  .sl-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .sl-mobile-menu summary span {
    width: 24px;
    height: 4px;
    background: var(--sl-text);
  }

  .sl-mobile-menu nav {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    display: grid;
    gap: 20px;
    padding: 48px 60px 56px;
    background: rgba(8, 7, 18, 0.96);
    color: var(--sl-text);
  }

  .sl-mobile-menu nav a {
    min-height: 33px;
    font-size: 1.4rem;
    font-weight: 950;
  }

  .sl-mobile-menu .sl-guide-nav {
    justify-content: flex-start;
  }

  .sl-mobile-menu .sl-guide-icon {
    width: 34px;
    height: 34px;
  }

  .sl-imo-teaser {
    right: clamp(28px, 6vw, 72px);
    bottom: clamp(82px, 12vh, 128px);
  }

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

  .sl-release-grid--latest {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sl-release-feature {
    grid-column: span 2;
  }

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

  .sl-proof-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .sl-angel-motion {
    padding-right: 15px;
    padding-left: 15px;
  }

  .sl-angel-motion__head,
  .sl-angel-motion__grid {
    grid-template-columns: 1fr;
  }

  .sl-scrub-story,
  .sl-waterlight,
  .sl-living-sky {
    grid-column: 1;
  }

  .sl-waterlight {
    min-height: 430px;
  }

  .sl-living-sky {
    min-height: 430px;
  }

  .sl-scrub-story__control {
    grid-template-columns: 1fr auto;
  }

  .sl-scrub-story__control span {
    grid-column: 1 / -1;
  }

  .sl-season-charm {
    top: -10px;
    right: 58px;
    transform: scale(0.72);
    animation-name: none;
  }

  .sl-mobile-menu {
    position: absolute;
    right: 0;
    display: block;
  }

  .sl-mobile-menu summary {
    display: grid;
    width: 48px;
    height: 48px;
    margin-top: -8px;
    place-items: center;
    list-style: none;
    cursor: pointer;
  }

  .sl-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .sl-mobile-menu summary span {
    width: 24px;
    height: 4px;
    background: var(--sl-text);
  }

  .sl-mobile-menu nav {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    display: grid;
    gap: 20px;
    padding: 48px 60px 56px;
    background: rgba(8, 7, 18, 0.96);
    color: var(--sl-text);
  }

  .sl-mobile-menu nav a {
    min-height: 33px;
    font-size: 1.4rem;
    font-weight: 950;
  }

  .sl-mobile-menu .sl-guide-nav {
    justify-content: flex-start;
  }

  .sl-mobile-menu .sl-guide-icon {
    width: 34px;
    height: 34px;
  }

  .sl-hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
    padding: 104px 15px 24px;
  }

  .sl-hero__copy {
    z-index: 3;
    width: min(86vw, 390px);
    min-width: 0;
  }

  .sl-hero__statement {
    font-size: clamp(3.2rem, 15vw, 5.7rem);
  }

  .sl-hero__lead {
    font-size: clamp(1.25rem, 6vw, 2rem);
  }

  .sl-imo-teaser {
    --imo-size: clamp(68px, 22vw, 94px);
    right: 18px;
    bottom: 78px;
    opacity: 0.88;
  }

  .sl-hero-slide img {
    object-position: 70% center;
  }

  .sl-cinema {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 15px 72px;
  }

  .sl-cinema__head h2 {
    max-width: 11ch;
    margin-bottom: 16px;
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .sl-cinema__stage {
    box-shadow: 8px 8px 0 rgba(255, 43, 154, 0.1), -8px -8px 0 rgba(74, 229, 255, 0.08);
  }

  .sl-proof-strip {
    grid-auto-columns: unset;
    height: auto;
    overflow-x: hidden;
  }

  .sl-proof-strip a {
    height: 48px;
    font-size: 0.72rem;
  }

  .sl-proof-strip .sl-strip-sample {
    height: 48px;
    font-size: 0.72rem;
  }

  .sl-section {
    padding: 50px 15px;
  }

  .sl-section__head,
  .sl-section__head--split {
    display: block;
    max-width: 360px;
    margin-bottom: 25px;
    text-align: left;
  }

  .sl-section__head h2 {
    font-size: 2.5rem;
  }

  .sl-season-marker {
    justify-self: start;
    height: 42px;
    margin-top: 12px;
    transform: scale(0.88);
    transform-origin: left center;
  }

  .sl-update-pulse {
    justify-self: start;
    margin-top: 14px;
  }

  .sl-proof-strip {
    grid-template-columns: 1fr;
  }

  .sl-proof-card {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
    padding: 18px;
  }

  .sl-proof-card figure,
  .sl-proof-card img {
    min-height: 238px;
  }

  .sl-proof-card__body {
    padding-right: 0;
  }

  .sl-proof-card .sl-card-play {
    top: 30px;
    right: 30px;
    transform: none;
  }

  .sl-view-all {
    justify-content: flex-start;
    width: 360px;
    margin-top: 10px;
  }

  .sl-featured-grid,
  .sl-news-grid,
  .sl-stable-update,
  .sl-release-grid,
  .sl-lineup-grid,
  .sl-store-grid,
  .sl-archive-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .sl-store--current .sl-store-grid,
  .sl-release-grid--latest {
    grid-template-columns: 1fr;
  }

  .sl-store--current .sl-store-grid article > img {
    height: auto;
  }

  .sl-release-grid--latest .sl-release-feature {
    grid-column: auto;
  }

  .sl-release-feature {
    grid-column: auto;
    min-height: 430px;
  }

  .sl-release-card {
    min-height: 360px;
  }

  .sl-featured-panel,
  .sl-featured-visual {
    min-height: 256.7px;
  }

  .sl-news {
    padding-top: 106px;
  }

  .sl-news-grid {
    gap: 30px;
  }

  .sl-news-card {
    grid-template-rows: auto auto auto auto;
    width: 100%;
    min-height: 256.5px;
  }

  .sl-news-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
  }

  .sl-news-card--maki img {
    aspect-ratio: 1672 / 941;
  }

  .sl-news-card--uriela img {
    aspect-ratio: 944 / 1104;
  }

  .sl-stable-update {
    margin-top: -10px;
  }

  .sl-stable-update__visual {
    min-height: 220px;
  }

  .sl-stable-update__body {
    padding: 28px 22px 32px;
  }

  .sl-stable-update__body h2 {
    font-size: 2.65rem;
  }

  .sl-lineup-card,
  .sl-lineup-card--primary {
    min-height: 0;
  }

  .sl-lineup-card img,
  .sl-lineup-placeholder,
  .sl-lineup-card--primary img {
    height: auto;
    max-height: none;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
  }

  .sl-lineup-card--maki img {
    aspect-ratio: 1672 / 941;
  }

  .sl-lineup-card--raffi img,
  .sl-lineup-card--uriela img {
    aspect-ratio: 944 / 1104;
  }

  .sl-lineup-card--sato.sl-sato-audio-card > img {
    height: auto;
    aspect-ratio: 1;
    object-position: center;
  }

  .sl-card-play {
    top: 18px;
    right: 18px;
  }

  .sl-archive-panel {
    min-height: 256.7px;
    padding: 22px;
  }

  .sl-contact-band {
    width: 360px;
    min-height: 176.8px;
    margin: 0 auto 50px;
  }
}

@media (max-width: 520px) {
  .sl-sato-audio-stage {
    grid-template-columns: 1fr;
    min-height: 300px;
    padding-top: 92px;
  }

  .sl-sato-wave {
    grid-column: 1;
    min-height: 110px;
  }

  .sl-sato-audio-stage > p {
    top: 54px;
  }

  .sl-sato-audio-stage--compact {
    min-height: 190px;
    padding-top: 58px;
  }

  .sl-sato-audio-stage--compact > p {
    top: 20px;
  }

  .sl-lineup-card--sato.sl-sato-audio-card > img {
    height: auto;
    object-position: center;
  }
}
