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

:root {
  --bg: #06061a;
  --bg-alt: #0c0c2a;
  --text: #e8e4f0;
  --text-muted: #9a95b0;
  --accent: #b48cff;
  --accent2: #7c5cbf;
  --card-bg: #0f0f2e;
  --radius: 12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(100, 60, 180, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(60, 100, 200, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(140, 80, 220, 0.05) 0%, transparent 50%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

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

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #d4b8ff; }

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(6,6,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180,140,255,0.08);
  transition: background var(--transition);
}

.nav-logo {
  font-size: 1.4rem; font-weight: 900; letter-spacing: 4px; color: #fff;
  text-shadow: 0 0 10px rgba(180,140,255,0.6), 0 0 30px rgba(180,140,255,0.3);
}

.nav-links {
  list-style: none; display: flex; gap: 28px; align-items: center;
}

.nav-links a {
  color: var(--text-muted); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px rgba(180,140,255,0.5), 0 0 20px rgba(180,140,255,0.2);
}

.nav-cta {
  background: var(--accent); color: var(--bg) !important;
  padding: 8px 20px; border-radius: 30px; font-weight: 700;
}
.nav-cta:hover { background: #d4b8ff; color: var(--bg) !important; }

/* Language Toggle */
.lang-toggle {
  background: transparent; border: 1.5px solid var(--accent);
  color: var(--accent); padding: 5px 14px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px;
  cursor: pointer; transition: all var(--transition);
  font-family: 'Montserrat', sans-serif;
}
.lang-toggle:hover { background: var(--accent); color: var(--bg); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  margin: 5px 0; transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}

.star-canvas-full {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, #0a0818 0%, #0d0b2a 30%, #12103a 60%, #080618 100%);
}
.hero-photo {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  opacity: 0.85;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.25) 40%, rgba(26,10,46,0.5) 70%, rgba(60,30,100,0.35) 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-sub {
  font-size: 0.9rem; letter-spacing: 6px; color: var(--accent);
  text-transform: uppercase; margin-bottom: 16px; font-weight: 600;
}

.hero-title {
  font-size: clamp(4rem, 12vw, 10rem); font-weight: 900;
  letter-spacing: 12px; line-height: 1;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.1rem; color: var(--text-muted);
  letter-spacing: 4px; text-transform: uppercase;
  margin-top: 12px;
}

.hero-btn {
  display: inline-block; margin-top: 40px;
  padding: 14px 40px; border: 1px solid var(--accent);
  color: var(--accent); border-radius: 30px;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  transition: all var(--transition);
}
.hero-btn:hover {
  background: var(--accent); color: var(--bg);
}

/* ===== Sections ===== */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-dark {
  background: rgba(12,12,42,0.85);
  background-image: radial-gradient(ellipse at 60% 50%, rgba(100,60,180,0.06) 0%, transparent 60%);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  letter-spacing: 4px; text-transform: uppercase;
  text-align: center; margin-bottom: 60px;
  position: relative; color: #fff;
  text-shadow: 0 0 10px rgba(180,140,255,0.5), 0 0 40px rgba(180,140,255,0.2), 0 0 80px rgba(120,80,200,0.1);
}
.section-title::after {
  content: ''; display: block;
  width: 60px; height: 3px;
  background: var(--accent); margin: 16px auto 0;
  box-shadow: 0 0 8px rgba(180,140,255,0.5), 0 0 20px rgba(180,140,255,0.3);
}

/* ===== Profile ===== */
.profile-grid {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 60px; align-items: start;
}

.profile-img img {
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(180,140,255,0.2), 0 0 60px rgba(120,80,200,0.1);
  border: 1px solid rgba(180,140,255,0.15);
}

.profile-text h3 {
  font-size: 1.6rem; margin-bottom: 20px; color: #fff;
  text-shadow: 0 0 8px rgba(180,140,255,0.3);
}

.accent { color: var(--accent); font-weight: 400; font-size: 1rem;
  text-shadow: 0 0 10px rgba(180,140,255,0.4);
}

.profile-details {
  list-style: none; margin-bottom: 20px;
}
.profile-details li {
  padding: 6px 0; border-bottom: 1px solid rgba(180,140,255,0.08);
  font-size: 0.95rem; color: var(--text-muted);
}
.profile-details strong { color: var(--text); }

.profile-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }

.profile-stats {
  display: flex; gap: 32px; margin-top: 32px;
}

.stat { text-align: center; }
.stat-num {
  display: block; font-size: 1.8rem; font-weight: 900; color: var(--accent);
  text-shadow: 0 0 12px rgba(180,140,255,0.5), 0 0 30px rgba(180,140,255,0.2);
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* SNS Links */
.sns-links {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px;
}
.sns-links a {
  display: inline-block; padding: 6px 16px;
  border: 1px solid rgba(180,140,255,0.3);
  border-radius: 20px; font-size: 0.8rem;
  color: var(--accent); font-weight: 600;
  transition: all var(--transition);
}
.sns-links a:hover {
  background: var(--accent); color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(180,140,255,0.4), 0 0 30px rgba(180,140,255,0.15);
}

/* ===== Timeline ===== */
.timeline {
  position: relative; max-width: 700px; margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: ''; position: absolute; left: 12px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative; margin-bottom: 32px; padding-left: 20px;
}
.timeline-item::before {
  content: ''; position: absolute; left: -34px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px rgba(180,140,255,0.4);
}

.timeline-year {
  font-weight: 900; font-size: 1.1rem; color: var(--accent);
  display: block; margin-bottom: 4px;
  text-shadow: 0 0 8px rgba(180,140,255,0.4);
}

.timeline-item p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.6;
}

/* ===== Highlights ===== */
.highlight-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  margin-bottom: 80px; padding: 40px;
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid rgba(180,140,255,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(120,80,200,0.15), 0 0 60px rgba(100,60,180,0.08);
  border-color: rgba(180,140,255,0.2);
}
.highlight-card.reverse { direction: rtl; }
.highlight-card.reverse > * { direction: ltr; }

.highlight-gallery {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.highlight-gallery img {
  border-radius: 8px; width: 100%; height: 200px;
  object-fit: cover; cursor: pointer;
  transition: transform var(--transition);
}
.highlight-gallery img:hover { transform: scale(1.03); }
.highlight-gallery img:first-child {
  grid-column: 1 / -1; height: 240px;
}

.highlight-tag {
  display: inline-block; padding: 4px 14px;
  background: var(--accent2); color: #fff;
  border-radius: 20px; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: 0 0 10px rgba(180,140,255,0.3);
}

.highlight-info h3 {
  font-size: 1.3rem; margin-bottom: 12px; line-height: 1.4; color: #fff;
  text-shadow: 0 0 6px rgba(180,140,255,0.3);
}

.highlight-info p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.8;
}

.highlight-link {
  display: inline-block; margin-top: 12px; padding: 6px 18px;
  border: 1px solid var(--accent); border-radius: 20px;
  font-size: 0.8rem; font-weight: 600;
}
.highlight-link:hover {
  background: var(--accent); color: var(--bg);
  box-shadow: 0 0 12px rgba(180,140,255,0.4);
}

/* 2-column gallery (no spanning first image) */
.gallery-2col img:first-child {
  grid-column: auto; height: 280px;
}
.gallery-2col img { height: 280px; }

/* Event schedule inside highlight */
.event-schedule { margin-top: 12px; }
.event-schedule p { margin-bottom: 6px; }
.event-schedule ul { list-style: none; }
.event-schedule li {
  padding: 4px 0; font-size: 0.85rem; color: var(--text-muted);
}

/* ===== Events Grid ===== */
.events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 3/4; cursor: pointer;
}
.event-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover img { transform: scale(1.08); }

.event-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.event-overlay h4 { font-size: 1.1rem; margin-bottom: 6px; }
.event-overlay p { font-size: 0.8rem; color: var(--text-muted); }

/* ===== Discography ===== */
.disco-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

.disco-card {
  text-align: center;
  transition: transform var(--transition);
}
.disco-card:hover { transform: translateY(-6px); }

.disco-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(120,80,200,0.08);
  border: 1px solid rgba(180,140,255,0.1);
  margin-bottom: 12px;
}

.disco-card { color: var(--text); }
.disco-card h4 { font-size: 0.9rem; margin-bottom: 4px; }
.disco-card p { font-size: 0.75rem; color: var(--text-muted); }

/* ===== YouTube ===== */
.youtube-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.yt-card {
  display: block; color: var(--text);
  transition: transform var(--transition);
}
.yt-card:hover { transform: translateY(-4px); color: var(--text); }

.yt-thumb {
  position: relative; border-radius: var(--radius);
  overflow: hidden; margin-bottom: 12px;
  aspect-ratio: 16/9;
}
.yt-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.yt-card:hover .yt-thumb img { transform: scale(1.05); }

.yt-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 42px;
  background: rgba(255,0,0,0.85);
  border-radius: 10px;
  transition: background 0.3s ease;
}
.yt-play::after {
  content: '';
  position: absolute; top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
}
.yt-card:hover .yt-play { background: rgba(255,0,0,1); }

.yt-card h4 { font-size: 0.85rem; line-height: 1.4; color: var(--text-muted); }

/* ===== Goods ===== */
.goods-section { text-align: center; }

.goods-hero-img {
  width: 100%; max-width: 800px; margin: 0 auto 32px;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(120,80,200,0.1);
  border: 1px solid rgba(180,140,255,0.1);
}

.goods-cta p {
  color: var(--text-muted); font-size: 0.95rem;
  letter-spacing: 2px; margin-bottom: 16px;
}

/* ===== Collection (legacy) ===== */
.collection-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 40px;
}

.collection-item img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.collection-item img:hover { transform: scale(1.04); }

.collection-cta { text-align: center; }
.collection-cta p {
  color: var(--text-muted); font-size: 0.9rem;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px;
}

.btn {
  display: inline-block; padding: 14px 48px;
  background: var(--accent); color: var(--bg);
  border-radius: 30px; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 2px;
  transition: all var(--transition);
}
.btn:hover { background: #d4b8ff; color: var(--bg); transform: translateY(-2px); }

/* ===== New Release ===== */
.new-release {
  display: flex; align-items: center; gap: 32px;
  background: linear-gradient(135deg, #1a0a2e, #161616);
  border: 2px solid var(--accent);
  border-radius: var(--radius); padding: 24px;
  margin-bottom: 48px; color: var(--text);
  transition: all var(--transition);
  max-width: 700px; margin-left: auto; margin-right: auto;
  margin-bottom: 48px;
}
.new-release:hover { transform: scale(1.02); box-shadow: 0 0 40px rgba(180,140,255,0.3); color: var(--text); }
.new-release img {
  width: 200px; height: 200px; object-fit: cover;
  border-radius: 8px; flex-shrink: 0;
}
.new-release-badge {
  display: inline-block; padding: 4px 16px;
  background: #ff3b5c; color: #fff; font-weight: 900;
  border-radius: 4px; font-size: 0.8rem; letter-spacing: 2px;
  margin-bottom: 8px; animation: badgePulse 1.5s ease infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,59,92,0.5); }
  50% { box-shadow: 0 0 16px 4px rgba(255,59,92,0.3); }
}
.new-release h3 { font-size: 2rem; font-weight: 900; margin-bottom: 4px; }
.new-release p { color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 600px) {
  .new-release { flex-direction: column; text-align: center; gap: 16px; }
  .new-release img { width: 160px; height: 160px; }
  .new-release h3 { font-size: 1.5rem; }
}

/* ===== Schedule ===== */
/* ===== Calendar ===== */
.cal-wrapper {
  max-width: 700px; margin: 0 auto;
  background: rgba(15,15,46,0.9); border-radius: var(--radius);
  border: 1px solid rgba(180,140,255,0.1);
  padding: 32px;
  box-shadow: 0 0 40px rgba(100,60,180,0.08);
}
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.cal-month-title {
  font-size: 1.3rem; font-weight: 700; letter-spacing: 2px;
}
.cal-nav-btn {
  background: none; border: 1px solid rgba(255,255,255,0.15);
  color: var(--text); width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; font-size: 0.8rem;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.cal-nav-btn:hover {
  border-color: var(--accent); color: var(--accent);
}

.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center; margin-bottom: 8px;
}
.cal-weekdays span {
  font-size: 0.75rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: 1px; padding: 8px 0;
}

.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.cal-cell {
  min-height: 80px; display: flex; flex-direction: column;
  align-items: center; padding: 6px 2px;
  border-radius: 8px; position: relative;
  transition: all var(--transition);
}
.cal-empty { pointer-events: none; }

.cal-day-num {
  font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
}
.cal-today .cal-day-num {
  color: var(--text); font-weight: 900;
}
.cal-today {
  background: rgba(255,255,255,0.05);
}

.cal-has-event {
  cursor: pointer; background: rgba(180,140,255,0.1);
  border: 1px solid rgba(180,140,255,0.25);
}
.cal-has-event .cal-day-num {
  color: var(--accent); font-weight: 900;
}
.cal-has-event:hover {
  background: rgba(180,140,255,0.25);
  transform: scale(1.1);
}
.cal-featured {
  background: rgba(180,140,255,0.2);
  border-color: var(--accent);
}
.cal-event-label {
  font-size: 0.55rem; font-weight: 700; color: #fff;
  line-height: 1.3; text-align: center;
  margin-top: 4px; word-break: break-all;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 3; -webkit-box-orient: vertical;
}

/* Calendar Modal */
.cal-modal {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px;
}
.cal-modal.active {
  display: flex;
}
.cal-modal-content {
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid rgba(180,140,255,0.2);
  padding: 40px; max-width: 480px; width: 100%;
  position: relative; text-align: center;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cal-modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.5rem; cursor: pointer; transition: color var(--transition);
}
.cal-modal-close:hover { color: var(--text); }

.cal-modal-date {
  font-size: 0.85rem; font-weight: 700; color: var(--accent);
  letter-spacing: 2px; margin-bottom: 12px;
}
.cal-modal-content h3 {
  font-size: 1.3rem; margin-bottom: 8px;
}
.cal-modal-content p {
  color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px;
}
.cal-modal-links {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.cal-modal-links .btn {
  font-size: 0.75rem; padding: 8px 20px;
}

@media (max-width: 600px) {
  .cal-wrapper { padding: 12px; }
  .cal-cell { min-height: 60px; }
  .cal-day-num { font-size: 0.7rem; }
  .cal-event-label { font-size: 0.45rem; -webkit-line-clamp: 2; }
  .cal-modal-content { padding: 28px 20px; }
}

/* ===== Music Player ===== */
.music-player {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: flex; align-items: center; gap: 12px;
  background: rgba(22,22,22,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(180,140,255,0.2);
  border-radius: 40px; padding: 6px 18px 6px 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.player-btn {
  width: 48px; height: 48px;
  background: none; border: none; cursor: pointer;
  padding: 0; position: relative;
}

.record {
  width: 48px; height: 48px; border-radius: 50%;
  background: #1a1a1a;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.record.spinning {
  animation: spin 2s linear infinite;
  box-shadow: 0 0 12px rgba(180,140,255,0.3);
}
@keyframes spin { to { transform: rotate(360deg); } }

.record-label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px; border-radius: 50%;
  overflow: hidden; z-index: 2;
}
.record-label img { width: 100%; height: 100%; object-fit: cover; }

.record-groove {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.06);
}
.record-groove { width: 32px; height: 32px; }
.record-groove.r2 { width: 38px; height: 38px; }
.record-groove.r3 { width: 44px; height: 44px; }

.player-title {
  font-size: 0.7rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: 1px; white-space: nowrap;
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 1.2rem;
  animation: bounce 2s ease infinite;
  text-decoration: none;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Footer ===== */
.footer {
  text-align: center; padding: 60px 0 40px;
  border-top: 1px solid rgba(180,140,255,0.1);
  background: linear-gradient(to top, rgba(6,6,26,1), rgba(12,12,42,0.8));
}

.footer-sns {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 16px; margin-bottom: 20px;
}
.footer-sns a {
  color: var(--accent); font-size: 0.85rem; font-weight: 600;
  padding: 6px 14px; border: 1px solid rgba(180,140,255,0.3);
  border-radius: 20px; transition: all var(--transition);
}
.footer-sns a:hover {
  background: var(--accent); color: var(--bg);
  box-shadow: 0 0 12px rgba(180,140,255,0.4), 0 0 30px rgba(180,140,255,0.15);
}

.footer-logo {
  font-size: 1.8rem; font-weight: 900; letter-spacing: 6px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(180,140,255,0.5), 0 0 30px rgba(180,140,255,0.2);
}

.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 24px; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: 90vw; max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(180,140,255,0.2);
}

.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 2.5rem; color: #fff; background: none;
  border: none; cursor: pointer; z-index: 1000;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--accent); }

/* ===== Media Grid ===== */
.media-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.media-category h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--accent);
  margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(180,140,255,0.2);
}

.media-category ul { list-style: none; }
.media-category li {
  padding: 8px 0; font-size: 0.85rem; color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.6;
}

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

/* ===== Scroll Animations ===== */
[data-aos] {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos].visible {
  opacity: 1; transform: translateY(0);
}

/* Staggered children */
[data-aos-children].visible > * {
  opacity: 0; transform: translateY(30px);
  animation: aosChild 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
[data-aos-children].visible > *:nth-child(1) { animation-delay: 0.05s; }
[data-aos-children].visible > *:nth-child(2) { animation-delay: 0.1s; }
[data-aos-children].visible > *:nth-child(3) { animation-delay: 0.15s; }
[data-aos-children].visible > *:nth-child(4) { animation-delay: 0.2s; }
[data-aos-children].visible > *:nth-child(5) { animation-delay: 0.25s; }
[data-aos-children].visible > *:nth-child(6) { animation-delay: 0.3s; }
[data-aos-children].visible > *:nth-child(7) { animation-delay: 0.35s; }
[data-aos-children].visible > *:nth-child(8) { animation-delay: 0.4s; }
[data-aos-children].visible > *:nth-child(9) { animation-delay: 0.45s; }
[data-aos-children].visible > *:nth-child(10) { animation-delay: 0.5s; }
[data-aos-children].visible > *:nth-child(11) { animation-delay: 0.55s; }
[data-aos-children].visible > *:nth-child(12) { animation-delay: 0.6s; }

@keyframes aosChild {
  to { opacity: 1; transform: translateY(0); }
}

/* Slide from left */
[data-aos="left"] { transform: translateX(-60px); }
[data-aos="left"].visible { transform: translateX(0); }

/* Slide from right */
[data-aos="right"] { transform: translateX(60px); }
[data-aos="right"].visible { transform: translateX(0); }

/* Scale up */
[data-aos="scale"] { transform: scale(0.9); }
[data-aos="scale"].visible { transform: scale(1); }

/* Section titles - special */
.section-title[data-aos] { transform: translateY(30px) scale(0.95); }
.section-title[data-aos].visible { transform: translateY(0) scale(1); }

/* ===== Nav Active ===== */
.nav-active { color: var(--accent) !important; }

/* ===== Therapy Page Override (bright/clean) ===== */
.therapy-page {
  --bg: #ffffff;
  --bg-alt: #f7f5fa;
  --card-bg: #ffffff;
  --text: #2a2a3a;
  --text-muted: #6b6b80;
  --accent: #7c5cbf;
  --accent2: #a29bfe;
  background: var(--bg);
}
.therapy-page .nav {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.therapy-page .nav-logo { color: var(--text); }
.therapy-page .nav-links a { color: var(--text-muted); }
.therapy-page .nav-links a:hover { color: var(--accent); }
.therapy-page .nav-active { color: var(--accent) !important; }
.therapy-page .lang-toggle {
  border-color: var(--accent); color: var(--accent);
}
.therapy-page .lang-toggle:hover {
  background: var(--accent); color: #fff;
}
.therapy-page .nav-toggle span { background: var(--text); }
.therapy-page .section {
  background: transparent;
}
.therapy-page .section-dark {
  background: var(--bg-alt);
}
.therapy-page .footer {
  background: #1a1a2e; color: #ccc;
}
.therapy-page .therapy-advantage {
  background: var(--bg-alt);
  border-color: rgba(124,92,191,0.15);
}
.therapy-page .advantage-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.therapy-page .advantage-card-plus span {
  color: var(--accent);
}
.therapy-page .usecase-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.therapy-page .usecase-card:hover {
  box-shadow: 0 8px 30px rgba(124,92,191,0.12);
  border-color: rgba(124,92,191,0.2);
}
.therapy-page .research-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.therapy-page .therapy-table {
  background: #fff;
}
.therapy-page .therapy-table thead {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.therapy-page .therapy-table thead th {
  color: #fff;
}
.therapy-page .therapy-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.therapy-page .therapy-table tbody tr:hover {
  background: var(--bg-alt);
}
.therapy-page .therapy-table td {
  color: var(--text);
}
.therapy-page .therapy-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none; color: #fff;
}
.therapy-page .therapy-cta h3,
.therapy-page .therapy-cta p {
  color: #fff;
}
.therapy-page .therapy-cta .btn {
  background: #fff; color: var(--accent);
}
.therapy-page .therapy-cta .btn:hover {
  background: rgba(255,255,255,0.9); color: var(--accent);
}
.therapy-page .therapy-origin p {
  color: var(--text-muted);
}
.therapy-page .therapy-disclaimer p {
  color: var(--text-muted);
}

/* ===== Ambient Waves ===== */
.ambient-waves {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero-waves {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
}

/* ===== Therapy Hero ===== */
.therapy-hero {
  position: relative; min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.therapy-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #7c5cbf 0%, #a29bfe 40%, #74b9ff 100%);
}
.therapy-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.1); z-index: 1;
}
.therapy-hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  opacity: 0.25; mix-blend-mode: luminosity; z-index: 1;
}
.therapy-hero-content {
  position: relative; z-index: 3; padding: 0 24px;
}
/* Ensure all page content is above ambient canvas */
main, footer { position: relative; z-index: 1; }
.therapy-hero-label {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.therapy-hero-content h1 {
  font-size: 3rem; font-weight: 900; letter-spacing: 4px;
  margin-bottom: 20px; line-height: 1.3;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.therapy-hero-sub {
  font-size: 1rem; color: var(--text-muted); max-width: 600px;
  margin: 0 auto 40px; line-height: 1.8;
}
.therapy-hero-scroll {
  display: inline-block; font-size: 1.5rem; color: var(--accent);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ===== Sound Therapy ===== */
.therapy-intro {
  max-width: 800px; margin: 0 auto 60px; text-align: center;
}
.therapy-headline {
  font-size: 2.2rem; font-weight: 900; color: var(--text);
  margin-bottom: 28px; line-height: 1.5; text-align: center;
  background: linear-gradient(135deg, var(--accent) 30%, var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Artist Photos in Intro */
.therapy-artist-photos {
  display: flex; gap: 16px; justify-content: center; margin-bottom: 32px;
}
.therapy-artist-photo {
  width: 280px; height: 200px; object-fit: cover; border-radius: 16px;
  box-shadow: 0 8px 30px rgba(108,92,231,0.2);
  border: 2px solid rgba(180,140,255,0.2);
}

/* Performance Gallery */
.therapy-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 40px;
}
.therapy-gallery-img {
  width: 100%; height: 200px; object-fit: cover; border-radius: 12px;
  transition: transform 0.3s ease;
}
.therapy-gallery-img:hover {
  transform: scale(1.03);
}

.therapy-origin {
  max-width: 720px; margin: 0 auto;
}
.therapy-origin p {
  color: var(--text-muted); font-size: 0.95rem; line-height: 2;
}
.therapy-lead {
  font-size: 1.5rem; font-weight: 700; color: var(--text);
  margin-bottom: 20px; line-height: 1.6;
}
.therapy-intro-text p {
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.9;
}

/* Intro icons */
.intro-icons {
  text-align: center; margin-bottom: 20px;
}
.intro-icon-svg {
  width: 200px; height: 80px; display: inline-block;
}

/* Body illustration */
.body-illust {
  text-align: center; margin-bottom: 48px;
}
.body-svg {
  width: 100%; max-width: 700px; height: auto; display: inline-block;
}

/* Organ spots */
.organ-shape {
  stroke-width: 1.2; transition: all 0.4s ease;
}
.organ-glow {
  fill: rgba(180,140,255,0); stroke: none;
  transition: all 0.4s ease; pointer-events: none;
}
.organ-detail {
  transition: all 0.4s ease;
}
.organ-spot { cursor: pointer; }
.organ-spot:hover .organ-shape {
  filter: url(#glowStrong);
  stroke-width: 2;
}
.organ-spot:hover .organ-glow {
  fill: rgba(180,140,255,0.15);
  filter: url(#glowStrong);
}
.organ-spot:hover .organ-detail {
  stroke: rgba(255,255,255,0.35) !important;
}

/* Labels */
.label-organ {
  fill: rgba(180,140,255,0.6); font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700;
  transition: fill 0.3s ease;
}
.label-freq {
  fill: rgba(180,140,255,0.4); font-size: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  transition: fill 0.3s ease;
}
.organ-label line {
  transition: stroke 0.3s ease;
}

/* Highlight matching labels on organ hover */
/* JS-driven active states */
.label-active .label-organ { fill: #d4b8ff !important; }
.label-active .label-freq { fill: rgba(180,140,255,0.9) !important; }
.label-active line { stroke: rgba(180,140,255,0.8) !important; stroke-width: 1.5 !important; }

.spot-active .organ-shape {
  filter: url(#glowStrong) !important; stroke-width: 2 !important;
}
.spot-active .organ-glow {
  fill: rgba(180,140,255,0.15) !important; filter: url(#glowStrong) !important;
}
.spot-active .organ-detail {
  stroke: rgba(255,255,255,0.35) !important;
}

/* Research icons */
.research-icon {
  font-size: 2rem; margin-bottom: 12px;
}

.therapy-sub-title {
  font-size: 1.5rem; font-weight: 900; text-align: center;
  margin-bottom: 16px; letter-spacing: 2px;
}

/* Advantage Section */
.therapy-advantage {
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid rgba(180,140,255,0.15);
  padding: 48px 40px; margin-bottom: 60px; text-align: center;
}
.advantage-badge {
  display: inline-block; padding: 6px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border-radius: 30px; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 2px; margin-bottom: 20px;
}
.therapy-advantage h3 {
  font-size: 1.6rem; margin-bottom: 32px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.advantage-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 24px; align-items: center; margin-bottom: 32px;
}
.advantage-card {
  background: rgba(255,255,255,0.03); border-radius: var(--radius);
  padding: 32px 24px; border: 1px solid rgba(255,255,255,0.06);
}
.advantage-card-plus {
  background: none; border: none; padding: 0;
  font-size: 2rem; color: var(--accent); font-weight: 900;
}
.advantage-icon {
  font-size: 2.5rem; margin-bottom: 12px;
}
.advantage-card h4 {
  font-size: 1.1rem; margin-bottom: 12px; color: var(--accent);
}
.advantage-card p {
  color: var(--text-muted); font-size: 0.85rem; line-height: 1.8;
}
.advantage-result {
  background: rgba(180,140,255,0.08); border-radius: var(--radius);
  padding: 24px 32px; border-left: 4px solid var(--accent);
  text-align: left;
}
.advantage-result p {
  color: var(--text); font-size: 0.95rem; line-height: 1.8; font-weight: 500;
}

/* Frequency Table */
.therapy-table-wrap {
  margin-bottom: 60px;
}
.therapy-table-source {
  text-align: center; color: var(--text-muted); font-size: 0.8rem;
  margin-bottom: 24px; font-style: italic;
}
.therapy-table-scroll {
  overflow-x: auto;
}
.therapy-table {
  width: 100%; border-collapse: collapse;
  background: var(--card-bg); border-radius: var(--radius);
  overflow: hidden;
}
.therapy-table thead {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
}
.therapy-table th {
  padding: 14px 16px; color: #fff; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  text-align: left; white-space: nowrap;
}
.therapy-table td {
  padding: 12px 16px; font-size: 0.9rem; color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.therapy-table tr:hover td {
  background: rgba(180,140,255,0.05); color: var(--text);
}
.therapy-table td:first-child {
  color: var(--text); font-weight: 600;
}
.therapy-table td:nth-child(2) {
  color: var(--accent); font-weight: 700; font-family: 'Montserrat', monospace;
}

/* Use Cases */
.therapy-usecases {
  margin-bottom: 60px;
}
.usecase-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 32px;
}
.usecase-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 32px 24px; border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(180,140,255,0.1);
  border-color: rgba(180,140,255,0.2);
}
.usecase-icon {
  font-size: 2.5rem; margin-bottom: 16px;
}
.usecase-card h4 {
  font-size: 1.1rem; margin-bottom: 12px; color: var(--accent);
}
.usecase-card p {
  color: var(--text-muted); font-size: 0.85rem; line-height: 1.8;
}

/* Research */
.therapy-research {
  margin-bottom: 60px;
}
.research-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 32px;
}
.research-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid rgba(255,255,255,0.05);
  border-top: 3px solid var(--accent);
}
.research-card h4 {
  font-size: 1rem; margin-bottom: 12px; color: var(--text);
}
.research-card p {
  color: var(--text-muted); font-size: 0.85rem; line-height: 1.8;
}

/* CTA */
.therapy-cta {
  text-align: center; padding: 48px 32px;
  background: linear-gradient(135deg, rgba(180,140,255,0.1), rgba(124,92,191,0.1));
  border-radius: var(--radius); border: 1px solid rgba(180,140,255,0.2);
  margin-bottom: 32px;
}
.therapy-cta h3 {
  font-size: 1.5rem; margin-bottom: 12px;
}
.therapy-cta p {
  color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem;
}
.therapy-cta-links {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 10;
}
.therapy-cta-links a {
  position: relative; z-index: 10; cursor: pointer;
}
.btn {
  display: inline-block; padding: 12px 32px;
  background: var(--accent); color: var(--bg); border-radius: 30px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; transition: all var(--transition);
}
.btn:hover { background: #d4b8ff; color: var(--bg); }
.btn-outline {
  background: transparent; border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--bg); }

/* Disclaimer */
.therapy-disclaimer {
  text-align: center; padding: 20px; opacity: 0.6;
}
.therapy-disclaimer p {
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.95); padding: 24px;
    gap: 16px; text-align: center;
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .profile-grid { grid-template-columns: 1fr; text-align: center; }
  .profile-img { max-width: 250px; margin: 0 auto; }
  .profile-stats { justify-content: center; }

  .highlight-card, .highlight-card.reverse { grid-template-columns: 1fr; direction: ltr; }

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

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

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

  .sns-links { justify-content: center; }

  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-card-plus { padding: 8px 0; }
  .usecase-grid { grid-template-columns: 1fr 1fr; }
  .research-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav { padding: 12px 20px; }
  .section { padding: 60px 0; }

  .highlight-card { padding: 20px; margin-bottom: 40px; }
  .highlight-gallery img { height: 150px; }
  .highlight-gallery img:first-child { height: 180px; }
  .gallery-2col img, .gallery-2col img:first-child { height: 180px; }

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

  .disco-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }

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

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

  .profile-stats { flex-direction: column; gap: 16px; }

  .therapy-advantage { padding: 32px 20px; }
  .therapy-advantage h3 { font-size: 1.2rem; }
  .usecase-grid { grid-template-columns: 1fr; }
  .advantage-result { padding: 16px 20px; }
  .therapy-cta { padding: 32px 20px; }

  .therapy-artist-photos { flex-direction: column; align-items: center; }
  .therapy-artist-photo { width: 100%; max-width: 320px; height: 180px; }
  .therapy-gallery { grid-template-columns: 1fr; }
  .therapy-gallery-img { height: 180px; }
  .therapy-hero { min-height: 60vh; }
  .therapy-hero-content h1 { font-size: 1.8rem; letter-spacing: 2px; }
  .therapy-hero-sub { font-size: 0.85rem; }
  .therapy-headline { font-size: 1.4rem; }
}
