/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0a0a0a;
  color: #d9d9d9;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

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

/* ===== SCROLL SNAP CONTAINER ===== */
.site-wrapper {
  scroll-snap-type: y proximity;
}

/* ===== SECTION COMMON ===== */
.section {
  scroll-snap-align: start;
  min-height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 100px 60px;
  overflow: hidden;
}

.section-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-label-area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 48px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #a0a0a0;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.section-heading {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1;
  color: #f0f0f4;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.6);
}

/* ===== FIXED SECTION HEADER ===== */
.section-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #888;
  text-transform: uppercase;
  pointer-events: none;
  mix-blend-mode: difference;
}

.header-left {
  color: #aaa;
  white-space: nowrap;
}

.header-right {
  color: #ccc;
  transition: opacity 0.4s;
  padding-right: 220px; /* Safe space to prevent overlapping with header-controls (JP/EN + MENU) */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50vw;
  text-align: right;
}

/* ===== HEADER CONTROLS (JP/EN & MENU) ===== */
.header-controls {
  position: fixed;
  top: 16px;
  right: 40px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ===== LANGUAGE SWITCH ===== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(20, 20, 24, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 4px 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.lang-btn {
  background: none;
  border: none;
  color: #777;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 6px;
  transition: color 0.3s, transform 0.2s;
  position: relative;
}

.lang-btn:hover {
  color: #bbb;
  transform: scale(1.05);
}

.lang-btn.is-active {
  color: #fff;
}

.lang-btn.is-active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 6px;
  right: 6px;
  height: 1px;
  background: #ffb478;
}

.lang-divider {
  color: #444;
  font-size: 10px;
}

/* ===== NAV TOGGLE BUTTON ===== */
.nav-toggle {
  background: rgba(20, 20, 24, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #d9d9d9;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.nav-toggle:hover {
  background: rgba(30, 30, 36, 0.9);
  border-color: rgba(255, 180, 120, 0.4);
  color: #ffb478;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 180, 120, 0.2);
}

.nav-toggle-icon {
  width: 16px;
  height: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

/* Menu Open State on Toggle */
.nav-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(4.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* ===== NAVIGATION DRAWER MENU ===== */
.nav-menu {
  position: fixed;
  inset: 0;
  z-index: 140;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.nav-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-menu[aria-hidden="false"] .nav-menu-backdrop {
  opacity: 1;
}

.nav-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 90vw);
  background: #0f0f12;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 100px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu[aria-hidden="false"] .nav-menu-panel {
  transform: translateX(0);
}

.nav-menu-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.nav-menu-brand {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #fff;
}

.nav-menu-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.1em;
}

.nav-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-menu-item {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.nav-menu[aria-hidden="false"] .nav-menu-item {
  opacity: 1;
  transform: translateX(0);
}

.nav-menu[aria-hidden="false"] .nav-menu-item:nth-child(1) { transition-delay: 0.10s; }
.nav-menu[aria-hidden="false"] .nav-menu-item:nth-child(2) { transition-delay: 0.14s; }
.nav-menu[aria-hidden="false"] .nav-menu-item:nth-child(3) { transition-delay: 0.18s; }
.nav-menu[aria-hidden="false"] .nav-menu-item:nth-child(4) { transition-delay: 0.22s; }
.nav-menu[aria-hidden="false"] .nav-menu-item:nth-child(5) { transition-delay: 0.26s; }
.nav-menu[aria-hidden="false"] .nav-menu-item:nth-child(6) { transition-delay: 0.30s; }
.nav-menu[aria-hidden="false"] .nav-menu-item:nth-child(7) { transition-delay: 0.34s; }

.nav-menu-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #aaa;
  transition: all 0.3s ease;
}

.nav-num {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.nav-label {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.02em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transform: translateX(6px);
}

.nav-menu-link:hover .nav-num {
  color: #ffb478;
}

.nav-menu-link:hover .nav-label {
  color: #ffb478;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ===== ENTRANCE KEYFRAMES ===== */
@keyframes heroTitleUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes heroCatchUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes heroFooterUp {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes eclipseRaysRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.06); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

@keyframes eclipseRingPulse {
  0% { transform: translate(-50%, -50%) scale(1); filter: brightness(1); }
  50% { transform: translate(-50%, -50%) scale(1.04); filter: brightness(1.2); }
  100% { transform: translate(-50%, -50%) scale(1); filter: brightness(1); }
}

@keyframes eclipseGlowPulse {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.98); }
  100% { opacity: 0.95; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes eclipseCoronaPulse {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); opacity: 0.65; }
  50% { transform: translate(-50%, -50%) rotate(120deg) scale(1.08); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) rotate(240deg) scale(1); opacity: 0.65; }
}

@keyframes diamondOrbit {
  0% { transform: translate(-50%, -50%) rotate(35deg) scale(0.96); opacity: 0.85; }
  50% { transform: translate(-50%, -50%) rotate(60deg) scale(1.08); opacity: 1; }
  100% { transform: translate(-50%, -50%) rotate(35deg) scale(0.96); opacity: 0.85; }
}

@keyframes diamondGlow {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.35); opacity: 1; }
}

@keyframes prominencePulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { opacity: 0.85; transform: translate(-50%, -50%) rotate(15deg) scale(1.05); }
}

@keyframes eclipseFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes scrollIndicatorIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes scrollIndicatorBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(4px); opacity: 1; }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  justify-content: space-between;
  padding-top: 120px;
  padding-bottom: 48px;
  background: #0a0a0a;
  position: relative;
  overflow: visible; /* 光の余韻がセクション枠で切れず自然に溢れ出るように許可 */
}

/* ===== ECLIPSE BACKGROUND (OVERFLOWING RADIANT ECLIPSE) ===== */
.eclipse-bg {
  position: absolute;
  inset: -100px 0 -150px 0; /* 上下へ領域を広げて光のブラー裾野を溢れ出させる */
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  opacity: 0;
  animation: eclipseFadeIn 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero.is-ready .eclipse-bg {
  opacity: 1;
}

/* 1. Solar Corona Rays (広大な太陽光芒線) */
.eclipse-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(450px, 80vw, 1050px);
  height: clamp(450px, 80vw, 1050px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(255, 200, 140, 0.16) 0deg,
    transparent 25deg,
    rgba(255, 180, 120, 0.22) 50deg,
    transparent 80deg,
    rgba(255, 220, 160, 0.12) 120deg,
    transparent 160deg,
    rgba(255, 160, 90, 0.18) 200deg,
    transparent 240deg,
    rgba(255, 240, 200, 0.22) 290deg,
    transparent 330deg,
    rgba(255, 200, 140, 0.16) 360deg
  );
  filter: blur(40px);
  opacity: 0.95;
  animation: eclipseRaysRotate 50s linear infinite;
}

/* 2. Outer Solar Corona (強烈に広がる大気コロナ) */
.eclipse-corona {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(360px, 64vw, 850px);
  height: clamp(360px, 64vw, 850px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 200, 140, 0.32) 0%,
    rgba(255, 140, 70, 0.16) 35%,
    rgba(255, 100, 40, 0.05) 60%,
    transparent 80%
  );
  filter: blur(24px);
  animation: eclipseCoronaPulse 14s ease-in-out infinite alternate;
}

/* 3. Plasma Glow (鮮やかな黄金プラズマ光彩) */
.eclipse-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(260px, 46vw, 640px);
  height: clamp(260px, 46vw, 640px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 248, 230, 0.65) 0%,
    rgba(255, 190, 120, 0.35) 40%,
    rgba(255, 130, 50, 0.1) 65%,
    transparent 80%
  );
  filter: blur(14px);
  animation: eclipseGlowPulse 9s ease-in-out infinite alternate;
}

/* 4. Total Eclipse Ring (内側の線感を完全に消した超ソフトな光輪オーラ) */
.eclipse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(190px, 34vw, 440px);
  height: clamp(190px, 34vw, 440px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 0 30px 10px rgba(255, 245, 220, 0.85),
    0 0 65px 20px rgba(255, 190, 110, 0.6),
    0 0 110px 35px rgba(255, 140, 60, 0.35),
    0 0 160px 65px rgba(255, 100, 30, 0.18);
  filter: blur(16px);
  animation: eclipseRingPulse 8s ease-in-out infinite alternate;
}

/* 5. Solar Prominence (太陽のほのかな紅炎) */
.eclipse-prominence {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(210px, 36.5vw, 470px);
  height: clamp(210px, 36.5vw, 470px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 75% 25%,
    rgba(255, 80, 40, 0.3) 0%,
    rgba(255, 50, 20, 0.12) 20%,
    transparent 45%
  );
  filter: blur(14px);
  animation: prominencePulse 7s ease-in-out infinite alternate;
}

/* 6. Diamond Ring Flare (直線を無くし、ぼやけた幻想的レンズグローへ) */
.eclipse-diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(190px, 34vw, 440px);
  height: clamp(190px, 34vw, 440px);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
  animation: diamondOrbit 20s ease-in-out infinite alternate;
}

.diamond-core {
  position: absolute;
  top: -16px;
  right: 13%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, rgba(255, 235, 190, 0.85) 40%, transparent 75%);
  box-shadow:
    0 0 30px 14px rgba(255, 255, 255, 0.85),
    0 0 60px 24px rgba(255, 190, 110, 0.65),
    0 0 100px 45px rgba(255, 130, 40, 0.3);
  filter: blur(12px);
  animation: diamondGlow 3.5s ease-in-out infinite alternate;
}

.diamond-flare-h,
.diamond-flare-v {
  display: none; /* 直線的なシャープ線を完全排除 */
}

/* 7. Black Moon Disk (エッジを完全フェザー化して線の印象を解消) */
.eclipse-moon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(186px, 33.3vw, 432px);
  height: clamp(186px, 33.3vw, 432px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #0a0a0a;
  box-shadow:
    0 0 32px 14px #0a0a0a,
    inset 0 0 30px 10px rgba(0, 0, 0, 0.98);
  filter: blur(4px);
}

.hero-title {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0 24px;
  line-height: 0.85;
  user-select: none;
  pointer-events: none;
  width: 100%;
  box-sizing: border-box;
}

.hero-title-line {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 16vw, 200px);
  color: #d9d9d9;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.hero-title-sol {
  text-align: left;
}

.hero-title-oom {
  text-align: right;
  margin-top: -0.06em;
}

.hero-title-divider {
  display: none;
}

/* Entrance initial states */
.hero-title-sol,
.hero-title-oom {
  opacity: 0;
  transform: translateY(30px);
}

.hero-catch {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.9;
  color: #aaa;
  opacity: 0;
  transform: translateY(20px);
}

.hero-footer-item {
  opacity: 0;
  transform: translateY(15px);
}

/* Triggered states */
.hero.is-ready .hero-title-sol {
  animation: heroTitleUp 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero.is-ready .hero-title-oom {
  animation: heroTitleUp 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.hero.is-ready .hero-catch {
  animation: heroCatchUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero.is-ready .hero-footer-item:nth-child(1) {
  animation: heroFooterUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
}

.hero.is-ready .hero-footer-item:nth-child(2) {
  animation: heroFooterUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.15s forwards;
}

.hero.is-ready .hero-footer-item:nth-child(3) {
  animation: heroFooterUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

.hero-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: auto;
  padding-top: 40px;
  font-size: 12px;
}

.hero-footer-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-footer-label {
  font-size: 10px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-footer-link,
.hero-footer-text {
  font-size: 13px;
  color: #bbb;
}

/* Hero Footer Link Hover */
.hero-footer-link {
  position: relative;
}

.hero-footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #888;
  transition: width 0.3s ease;
}

.hero-footer-link:hover::after {
  width: 100%;
}

.hero-footer-link:hover {
  opacity: 1;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0;
  animation: scrollIndicatorIn 0.8s ease 1.6s forwards;
  transition: opacity 0.6s ease;
}

.scroll-indicator-line {
  width: 1px;
  height: 20px;
  background: #555;
}

.scroll-indicator-chevron {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  transform: rotate(45deg);
  animation: scrollIndicatorBounce 2.4s ease-in-out 2.2s infinite;
}

.scroll-indicator.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ================================================================
   ABOUT (SEAMLESS FADE FROM HERO)
   ================================================================ */
.about {
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.7) 100px, #0a0a0a 200px);
  position: relative;
  z-index: 2;
}

.about-body {
  max-width: 780px;
  margin-bottom: 48px;
}

.about-body p {
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.9;
  color: #bbb;
  margin-bottom: 24px;
}

/* ===== ABOUT SLIDESHOW (BORDERLESS FULL-BLEED) ===== */
.about-slider-container {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: clamp(340px, 50vh, 580px);
  border-radius: 0;
  overflow: hidden;
  background: #000;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  margin-top: 48px;
}


.about-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  overflow: hidden;
}

.about-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.about-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s ease-out;
}

.about-slide.is-active .about-slide-img {
  transform: scale(1.08);
}

.about-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px 28px;
}

.about-slide-caption {
  color: #f3f4f6;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
}

.about-slide.is-active .about-slide-caption {
  transform: translateY(0);
  opacity: 1;
}

/* Controls & Dots */
.about-slider-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-slider-btn {
  background: none;
  border: none;
  color: #ccc;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s, transform 0.2s;
}

.about-slider-btn:hover {
  color: #fff;
  transform: scale(1.2);
}

.about-slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.about-slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.about-slider-dot.is-active {
  background: #ffb478;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(255, 180, 120, 0.8);
}

.about-slider-counter {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Progress bar */
.about-slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.about-slider-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffffff 0%, #ffb478 50%, #ff8c42 100%);
  box-shadow: 0 0 10px rgba(255, 180, 120, 0.6);
  transition: width 0.1s linear;
}


/* ================================================================
   MEMBER
   ================================================================ */
.member-head {
  background: #0a0a0a;
  min-height: auto;
  padding-top: 100px;
  padding-bottom: 24px;
}

.member-head .section-heading {
  margin-bottom: 0;
}

.member-card-section {
  scroll-snap-align: start;
  min-height: auto;
  padding-top: 24px;
  padding-bottom: 40px;
  background: #0a0a0a;
}

/* ================================================================
   MEMBER (CLICKABLE GRID CARDS & MODAL)
   ================================================================ */
.member {
  background: #0a0a0a;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.member-card-item {
  background: rgba(18, 18, 22, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.member-card-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 180, 120, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 180, 120, 0.12);
}

.member-card-portrait {
  width: 100%;
  aspect-ratio: 4 / 4;
  overflow: hidden;
  background: #141414;
}

.member-card-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.member-card-item:hover .member-card-portrait img {
  transform: scale(1.05);
}

.member-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.member-card-role {
  font-size: 11px;
  font-weight: 700;
  color: #ffb478;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.member-card-name-ja {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}

.member-card-name-en {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.member-card-action {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 700;
  color: #a0a0a0;
  transition: color 0.3s;
}

.member-card-item:hover .member-card-action {
  color: #ffb478;
}

/* ===== MEMBER DETAIL MODAL ===== */
.modal-member-detail {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
}

.modal-member-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-member-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.modal-member-name-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-member-role {
  font-size: 12px;
  font-weight: 700;
  color: #ffb478;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-member-name-ja {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.modal-member-name-en {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
}

.modal-member-sns {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.modal-sns-link {
  font-size: 12px;
  color: #ffb478;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 180, 120, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.25s;
}

.modal-sns-link:hover {
  background: rgba(255, 180, 120, 0.15);
  border-color: rgba(255, 180, 120, 0.6);
}

.modal-member-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.modal-member-sec {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-sec-title {
  font-size: 12px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 6px;
}

.modal-member-bio {
  font-size: 14px;
  line-height: 1.9;
  color: #ccc;
}

.modal-member-works-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-member-works-list li {
  font-size: 13px;
  line-height: 1.6;
  color: #999;
  padding-left: 12px;
  position: relative;
}

.member-works-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #555;
}

.member-demo-placeholder {
  font-size: 12px;
  color: #555;
  font-style: italic;
}

/* ================================================================
   DEMO TRACKS
   ================================================================ */
.demo-tracks {
  background: #0a0a0a;
}

.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.demo-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.demo-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1a1a1a;
}

.demo-track-num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #333;
  line-height: 1;
  flex-shrink: 0;
}

.demo-track-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-track-title {
  font-size: 16px;
  font-weight: 700;
  color: #ccc;
}

.demo-player-placeholder {
  font-size: 12px;
  color: #555;
  font-style: italic;
}

.demo-image {
  position: sticky;
  top: 100px;
}

.demo-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 40%, #1a1a1a 100%);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.demo-img-placeholder::before {
  content: "🎬";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  opacity: 0.15;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  background: #0a0a0a;
}

.contact-body {
  max-width: 680px;
  background: rgba(14, 14, 18, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-message {
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.8;
  color: #bbb;
  margin-bottom: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1a1a1a;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 80px;
  flex-shrink: 0;
}

.contact-value {
  font-size: 15px;
  color: #ccc;
}

.contact-value.coming-soon {
  color: #555;
  font-style: italic;
}

.contact-sns {
  display: flex;
  gap: 16px;
}

.contact-sns-link {
  font-size: 14px;
  color: #bbb;
  font-weight: 700;
}

/* ================================================================
   CLOSING
   ================================================================ */
.closing {
  min-height: auto;
  padding: 80px 60px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
}

.closing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.closing-message {
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 700;
  color: #999;
}

.closing-sub {
  font-size: clamp(13px, 1.1vw, 15px);
  color: #666;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  scroll-snap-align: end;
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding: 40px 60px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-sns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-sns-link {
  font-size: 13px;
  color: #888;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.06em;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .section {
    padding: 60px 32px;
  }

  .member-card-section {
    padding: 60px 32px;
  }

  .member-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0;
  }

  .member-portrait-wrap {
    max-width: 200px;
  }

  .demo-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .demo-image {
    position: relative;
    top: 0;
    order: -1;
  }

  .hero-title {
    margin: 0;
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .eclipse-ring,
  .eclipse-glow,
  .eclipse-corona {
    left: 50%;
  }

  .scroll-indicator {
    bottom: 16px;
  }

  .section {
    padding: 48px 20px;
  }

  .section-header {
    padding: 14px 20px;
    font-size: 10px;
  }

  .header-controls {
    top: 12px;
    right: 16px;
    gap: 10px;
  }

  .header-right {
    padding-right: 165px;
    max-width: 45vw;
  }

  .section-label-area {
    font-size: 10px;
    margin-bottom: 24px;
  }

  .hero-title {
    margin: 0;
    padding: 0 12px;
  }

  .hero-title-line {
    font-size: clamp(48px, 14vw, 80px);
  }

  .hero-catch {
    margin-top: 28px;
    max-width: 100%;
  }

  .hero-footer {
    gap: 20px;
    padding-top: 24px;
  }

  .about-images {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .member-card-section {
    padding: 48px 20px;
  }

  .member-card {
    padding: 24px 0;
  }

  .footer {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .header-right {
    display: none;
  }

  .hero-title-line {
    font-size: clamp(36px, 12vw, 56px);
  }

  .hero-footer {
    flex-direction: column;
    gap: 12px;
  }

  .contact-row {
    flex-direction: column;
    gap: 4px;
  }

  .contact-label {
    min-width: auto;
  }
}

/* ================================================================
   WORKS
   ================================================================ */
.works {
  background: #0a0a0a;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.works-card {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0e0e10;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              background-color 0.3s ease;
  will-change: transform, box-shadow;
}

.works-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.22);
  background: #141418;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.8),
              0 0 30px rgba(255, 255, 255, 0.06);
}

.works-card:active,
.works-card.is-clicked {
  transform: translateY(-4px) scale(0.98);
  transition-duration: 0.12s;
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.9);
}

.works-card:focus-visible {
  outline: 2px solid #ffb478;
  outline-offset: 4px;
}

.works-card-thumb {
  aspect-ratio: 16 / 9;
  background: #08080a;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-card-thumb-bg {
  position: absolute;
  inset: -12px;
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.35);
  opacity: 0.85;
  transform: scale(1.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.works-card:hover .works-card-thumb-bg {
  transform: scale(1.25);
  opacity: 1;
  filter: blur(16px) brightness(0.45);
}

.works-card-thumb img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.works-card:hover .works-card-thumb img {
  transform: scale(1.06);
}

/* Shimmer / light glow overlay on hover */
.works-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.works-card:hover .works-card-thumb::after {
  opacity: 1;
}

.works-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #444;
  transition: color 0.3s ease, transform 0.4s ease;
}

.works-card:hover .works-card-placeholder {
  color: #888;
  transform: scale(1.15);
}

.works-card-meta {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.works-card-category {
  font-size: 10px;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.works-card:hover .works-card-category {
  color: #ffb478;
}

.works-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #ccc;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.works-card:hover .works-card-title {
  color: #fff;
}

.works-card-year {
  font-size: 12px;
  color: #555;
}

/* ================================================================
   RELEASE (SPOTIFY EMBED SECTION)
   ================================================================ */
.releases {
  background: #0a0a0a;
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.release-card {
  background: rgba(18, 18, 22, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.release-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 180, 120, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.release-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.release-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.release-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.release-artist {
  font-size: 13px;
  color: #a0a0a0;
}

.release-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.release-badge-type {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 180, 120, 0.15);
  color: #ffb478;
  border: 1px solid rgba(255, 180, 120, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.release-date {
  font-size: 12px;
  color: #666;
  font-family: "Inter", sans-serif;
}

.spotify-embed-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.spotify-embed-wrap iframe {
  width: 100%;
  height: 152px;
  border: 0;
  display: block;
  border-radius: 12px;
}

/* ================================================================
   NEWS
   ================================================================ */
.news {
  background: #0a0a0a;
}

.news-list {
  display: flex;
  flex-direction: column;
  max-width: 800px;
}

.news-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #1a1a1a;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
}

.news-item:hover {
  opacity: 0.9;
  transform: translateX(6px);
}

.news-date {
  font-size: 13px;
  color: #666;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-title {
  font-size: 15px;
  font-weight: 700;
  color: #ccc;
  transition: color 0.3s;
}

.news-item:hover .news-title {
  color: #fff;
}

.news-summary {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* ================================================================
   MODAL (Floating Pop-out Animation)
   ================================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal[hidden] {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.modal:not([hidden]) .modal-backdrop {
  opacity: 1;
}

.modal.is-closing .modal-backdrop {
  opacity: 0;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  background: #111114;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9),
              0 0 50px rgba(255, 255, 255, 0.04);
  transform: scale(0.85) translateY(35px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal:not([hidden]) .modal-dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal.is-closing .modal-dialog {
  transform: scale(0.92) translateY(20px);
  opacity: 0;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 20px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.25s, background-color 0.25s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}

.modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg) scale(1.1);
}

.modal-body {
  color: #bbb;
  font-size: 14px;
  line-height: 1.8;
}

.modal-body-title {
  font-size: 22px;
  font-weight: 900;
  color: #d9d9d9;
  margin-bottom: 8px;
}

.modal-body-meta {
  font-size: 12px;
  color: #666;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.modal-body-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 20px;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}

.modal-body-video iframe,
.modal-body-video video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

.modal-body-image {
  width: 100%;
  min-height: 200px;
  max-height: 60vh;
  background: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.modal-body-image-bg {
  position: absolute;
  inset: -16px;
  background-size: cover;
  background-position: center;
  filter: blur(24px) brightness(0.3);
  opacity: 0.75;
}

.modal-body-image img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 52vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.modal-body-description {
  margin-bottom: 16px;
}

.modal-body-news {
  white-space: pre-line;
}

.modal-body-credit {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}

.modal-body-link {
  display: inline-block;
  font-size: 13px;
  color: #999;
  font-weight: 700;
  text-decoration: underline;
}

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

/* ===== WORKS / NEWS RESPONSIVE ===== */
@media (max-width: 768px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .modal-dialog {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-title-sol,
  .hero-title-oom,
  .hero-catch,
  .hero-footer-item,
  .eclipse-ring,
  .eclipse-glow,
  .eclipse-corona,
  .scroll-indicator,
  .scroll-indicator-chevron {
    animation: none !important;
    transition: none !important;
  }

  .hero-title-sol,
  .hero-title-oom {
    opacity: 1;
    transform: none;
  }

  .hero-catch {
    opacity: 1;
    transform: none;
  }

  .hero-footer-item {
    opacity: 1;
    transform: none;
  }

  .scroll-indicator {
    opacity: 0;
    display: none;
  }

  .eclipse-bg {
    opacity: 1;
  }

  .eclipse-ring {
    opacity: 1;
  }

  .eclipse-glow {
    opacity: 0.8;
  }

  .hero-footer-link::after {
    display: none;
  }

  .lang-btn {
    transform: none !important;
  }
}

/* ===== PRINT PDF BUTTON STYLES ===== */
.print-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 180, 120, 0.12);
  color: #ffb478;
  border: 1px solid rgba(255, 180, 120, 0.4);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.print-pdf-btn:hover {
  background: rgba(255, 180, 120, 0.25);
  border-color: rgba(255, 180, 120, 0.8);
  box-shadow: 0 0 24px rgba(255, 180, 120, 0.25);
  transform: translateY(-2px);
}

.print-portfolio-sheet {
  display: none !important;
}

/* ===== PRINT MEDIA STYLES (@media print) ===== */
@media print {
  body {
    background: #ffffff !important;
    color: #0f172a !important;
    font-family: "Noto Sans JP", sans-serif !important;
    font-size: 10.5pt !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .header,
  .hero,
  .about,
  .works,
  .member,
  .demo-tracks,
  .releases,
  .news,
  .contact,
  .footer,
  .modal,
  .floating-contact-btn,
  .nav-drawer {
    display: none !important;
  }

  .print-portfolio-sheet {
    display: block !important;
    padding: 12mm 15mm;
    background: #ffffff !important;
    color: #0f172a !important;
  }

  .print-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 3px solid #c86a37;
    padding-bottom: 14px;
    margin-bottom: 24px;
  }

  .print-logo {
    font-size: 32pt;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #0f172a;
  }

  .print-sub {
    font-size: 10.5pt;
    color: #c86a37;
    font-weight: 700;
    margin-top: 6px;
  }

  .print-meta-box {
    text-align: right;
  }

  .print-badge-official {
    display: inline-block;
    font-size: 8.5pt;
    font-weight: 900;
    background: #c86a37;
    color: #ffffff !important;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }

  .print-date {
    font-size: 9pt;
    color: #64748b;
  }

  .print-section {
    margin-bottom: 24px;
    page-break-inside: avoid;
  }

  .print-sec-title {
    font-size: 13pt;
    font-weight: 900;
    border-bottom: 1.5px solid #e2e8f0;
    padding-bottom: 6px;
    margin-bottom: 14px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .print-sec-title span {
    font-size: 10pt;
    color: #ffffff;
    background: #1e293b;
    padding: 1px 8px;
    border-radius: 4px;
  }

  .print-text {
    font-size: 9.5pt;
    color: #334155;
    margin-bottom: 8px;
    line-height: 1.7;
  }

  .print-member-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .print-member-card {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 14px;
    background: #f8fafc !important;
  }

  .print-member-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
  }

  .print-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c86a37;
    flex-shrink: 0;
  }

  .print-member-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .print-role-badge {
    font-size: 8pt;
    font-weight: 900;
    color: #c86a37;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .print-member-name {
    font-size: 12pt;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
  }

  .print-member-name .print-en {
    font-size: 9pt;
    font-weight: 400;
    color: #64748b;
    margin-left: 4px;
  }

  .print-works-label {
    font-size: 8.5pt;
    font-weight: 700;
    color: #1e293b;
    margin-top: 10px;
    margin-bottom: 4px;
  }

  .print-list {
    margin: 0;
    padding-left: 14px;
    font-size: 8.5pt;
    color: #475569;
  }

  .print-list li {
    margin-bottom: 3px;
  }

  .print-works-catalog {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .print-work-card {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 8px 12px;
    background: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .print-work-thumb {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
  }

  .print-work-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
  }

  .print-work-title {
    font-size: 9.5pt;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .print-work-meta {
    display: flex;
    gap: 8px;
    font-size: 8pt;
  }

  .print-work-cat {
    color: #c86a37;
    font-weight: 700;
  }

  .print-work-year {
    color: #64748b;
  }

  .print-footer {
    margin-top: 28px;
    border-top: 2px solid #0f172a;
    padding-top: 14px;
  }

  .print-contact-card {
    background: #f1f5f9 !important;
    border-radius: 6px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .print-contact-title {
    font-size: 9.5pt;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: 0.04em;
  }

  .print-contact-details {
    display: flex;
    gap: 16px;
    font-size: 8.5pt;
    color: #334155;
  }
}

/* ================================================================
   FLOATING CONTACT BUTTON (APPEARS ON SCROLL)
   ================================================================ */
.floating-contact-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 30px;
  background: rgba(15, 15, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 180, 120, 0.35);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 180, 120, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s,
              box-shadow 0.3s;
}

.floating-contact-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-contact-btn:hover {
  border-color: rgba(255, 180, 120, 0.7);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 180, 120, 0.25);
  transform: translateY(-3px) scale(1.04);
}

.floating-contact-icon {
  font-size: 14px;
  color: #ffb478;
}

@media (max-width: 640px) {
  .floating-contact-btn {
    bottom: 24px;
    right: 20px;
    padding: 10px 18px;
    font-size: 11px;
  }
}

/* ===== PRIVATE LOCK OVERLAY STYLES ===== */
.private-lock-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #050507;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.private-lock-card {
  width: 100%;
  max-width: 420px;
  background: rgba(18, 18, 22, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 180, 120, 0.25);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 180, 120, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.private-lock-brand {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 6px;
}

.private-lock-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 180, 120, 0.15);
  color: #ffb478;
  border: 1px solid rgba(255, 180, 120, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.private-lock-desc {
  font-size: 13px;
  color: #a0a0a0;
  line-height: 1.7;
  margin-bottom: 24px;
}

.private-lock-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.private-lock-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.1em;
  outline: none;
  transition: border-color 0.3s;
}

.private-lock-input:focus {
  border-color: #ffb478;
}

.private-lock-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #c86a37 0%, #a25227 100%);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
}

.private-lock-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.private-lock-error {
  font-size: 12px;
  color: #f87171;
  margin-top: 14px;
}
