* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --purple: #7C3AED;
  --purple-dark: #5B21B6;
  --purple-deep: #3B0764;
  --pink: #EC4899;
  --accent: #F59E0B;
  --accent-glow: rgba(245, 158, 11, 0.5);
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --glass-bright: rgba(255,255,255,0.1);
  --text: #fff;
  --text-sub: rgba(255,255,255,0.6);
  --bg: #0A0A14;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
.hidden { display: none !important; }

/* ===== PHOTO RAIN CANVAS ===== */
.photo-rain {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

/* ===== SCROLL ANIMATIONS ===== */
.anim {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.anim[data-anim="fade-up"] { transform: translateY(60px); }
.anim[data-anim="fade-left"] { transform: translateX(80px); }
.anim[data-anim="slide-right"] { transform: translateX(-80px); }
.anim[data-anim="slide-left"] { transform: translateX(80px); }
.anim[data-anim="zoom-in"] { transform: scale(0.85); }
.anim[data-anim="rotate-in"] { transform: rotate(-8deg) scale(0.9); }
.anim[data-anim="fade-scale"] { transform: scale(0.9); }

.anim.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.stagger-children > .anim:nth-child(1) { transition-delay: 0s; }
.stagger-children > .anim:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > .anim:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > .anim:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > .anim:nth-child(5) { transition-delay: 0.4s; }

/* ===== LANG SWITCHER ===== */
.lang-switcher {
  position: fixed;
  top: 72px;
  right: 16px;
  z-index: 200;
  display: flex;
  gap: 2px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 3px;
}
.lang-btn {
  width: 36px; height: 30px;
  border: none; border-radius: 8px;
  background: transparent;
  font-size: 11px; font-weight: 700;
  color: var(--text-sub);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.lang-btn.active {
  background: var(--purple);
  color: #fff;
}
.lang-btn:hover { color: #fff; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,20,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  color: #fff;
  letter-spacing: -1px;
}
.nav-logo span {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex; list-style: none; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: #fff; background: var(--glass); }
.nav-cta { text-decoration: none; white-space: nowrap; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span {
  display: block; width: 20px; height: 2px; background: #fff; margin: 4px 0;
  transition: all 0.3s;
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; margin-left: auto; }
  .nav-inner { padding: 0 20px; }
}

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 64px; left: 0; right: 0;
  z-index: 99;
  background: rgba(10,10,20,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.2s;
}
.mobile-nav a:hover { color: #fff; background: var(--glass); }

/* ===== BUTTONS ===== */
.btn-glow {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-weight: 700; font-size: 14px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  box-shadow: 0 4px 24px rgba(124,58,237,0.4);
  font-family: 'Noto Sans JP', sans-serif;
  position: relative; overflow: hidden;
}
.btn-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(124,58,237,0.6);
}
.btn-glow:active { transform: scale(0.97); }
.btn-glow-lg { padding: 20px 48px; font-size: 17px; border-radius: 18px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 80px 0 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}
.orb1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  top: -300px; left: -200px;
  animation: orbDrift1 22s ease-in-out infinite;
}
.orb2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--pink), transparent 70%);
  bottom: -200px; right: -200px;
  animation: orbDrift2 26s ease-in-out infinite;
}
.orb3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #3B82F6, transparent 70%);
  top: 40%; right: 10%;
  opacity: 0.25;
  animation: orbDrift1 30s ease-in-out infinite reverse;
}
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(60px,-40px) scale(1.08); }
  66% { transform: translate(-40px,50px) scale(0.92); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-50px,40px) scale(1.1); }
  66% { transform: translate(40px,-30px) scale(0.9); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-particles { position: absolute; inset: 0; }

/* Hero floating photos */
.hero-float-photos {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hfp {
  position: absolute;
  border-radius: 12px;
  opacity: 0.12;
  animation: hfpFloat 12s ease-in-out infinite;
}
.hfp1 {
  width: 80px; height: 60px;
  background: linear-gradient(135deg, rgba(236,72,153,0.6), rgba(124,58,237,0.4));
  top: 15%; left: 5%;
  animation-delay: 0s;
}
.hfp2 {
  width: 100px; height: 70px;
  background: linear-gradient(135deg, rgba(59,130,246,0.6), rgba(16,185,129,0.4));
  top: 60%; left: 8%;
  animation-delay: 2s;
}
.hfp3 {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(245,158,11,0.6), rgba(239,68,68,0.4));
  top: 25%; right: 3%;
  animation-delay: 4s;
}
.hfp4 {
  width: 90px; height: 65px;
  background: linear-gradient(135deg, rgba(124,58,237,0.6), rgba(59,130,246,0.4));
  top: 70%; right: 6%;
  animation-delay: 1s;
}
.hfp5 {
  width: 70px; height: 50px;
  background: linear-gradient(135deg, rgba(16,185,129,0.6), rgba(236,72,153,0.4));
  top: 45%; left: 50%;
  animation-delay: 3s;
}
@keyframes hfpFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); opacity: 0.08; }
  25% { transform: translateY(-20px) rotate(2deg); opacity: 0.15; }
  50% { transform: translateY(-8px) rotate(-1deg); opacity: 0.12; }
  75% { transform: translateY(-25px) rotate(4deg); opacity: 0.1; }
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px;
  gap: 48px;
  width: 100%;
}
.hero-content { flex: 1; max-width: 520px; }
.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(60px, 9vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  margin-bottom: 20px;
  animation: titleSlam 0.8s var(--ease-bounce) both;
}
@keyframes titleSlam {
  0% { opacity: 0; transform: scale(1.3) rotate(-3deg); filter: blur(8px); }
  100% { opacity: 1; transform: scale(1) rotate(0); filter: blur(0); }
}
.logo-emo { color: #fff; }
.logo-live {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  margin-bottom: 16px;
  animation: fadeSlideUp 0.8s 0.3s both;
}
.hero-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-sub);
  margin-bottom: 36px;
  animation: fadeSlideUp 0.8s 0.5s both;
}
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.8s 0.7s both;
}
.btn-hero-primary {
  display: inline-flex; align-items: center;
  padding: 16px 36px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-weight: 700; font-size: 16px;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(124,58,237,0.5);
  transition: all 0.35s var(--ease-out-expo);
  position: relative; overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 60%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translate(-30%, -30%); }
  50% { transform: translate(30%, 30%); }
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(124,58,237,0.7);
}
.btn-hero-secondary {
  display: inline-flex; align-items: center;
  padding: 16px 24px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-sub);
  font-weight: 700; font-size: 16px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s;
}
.btn-hero-secondary:hover { color: #fff; background: var(--glass-bright); }

.hero-stats {
  display: flex; align-items: center; gap: 24px;
  animation: fadeSlideUp 0.8s 0.9s both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 36px; font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 11px; color: var(--text-sub); font-weight: 500; }
.stat-div { width: 1px; height: 40px; background: var(--glass-border); }

/* --- Hero Event Scene --- */
.hero-scene {
  flex: 1;
  display: flex; justify-content: center; align-items: center;
  position: relative;
  perspective: 1000px;
}
.scene-venue { position: relative; }
.scene-screen {
  width: 380px; height: 240px;
  background: linear-gradient(135deg, #0f0f2e, #1a1a3e);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 100px rgba(124,58,237,0.3), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden; position: relative;
  animation: screenFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes screenFloat {
  0%, 100% { transform: translateY(0) rotateX(2deg); }
  50% { transform: translateY(-10px) rotateX(-1deg); }
}
.screen-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px; padding: 10px 10px 36px;
  height: 100%;
}
.screen-photo {
  border-radius: 8px;
  animation: photoAppear 4s ease-in-out infinite;
}
.sp1 { background: linear-gradient(135deg, rgba(236,72,153,0.5), rgba(124,58,237,0.3)); animation-delay: 0s; }
.sp2 { background: linear-gradient(135deg, rgba(245,158,11,0.5), rgba(239,68,68,0.3)); animation-delay: 0.5s; }
.sp3 { background: linear-gradient(135deg, rgba(16,185,129,0.5), rgba(59,130,246,0.3)); animation-delay: 1s; }
.sp4 { background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(236,72,153,0.3)); animation-delay: 1.5s; }
.sp5 { background: linear-gradient(135deg, rgba(59,130,246,0.5), rgba(16,185,129,0.3)); animation-delay: 2s; }
.sp6 { background: linear-gradient(135deg, rgba(239,68,68,0.5), rgba(245,158,11,0.3)); animation-delay: 2.5s; }
@keyframes photoAppear {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.screen-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 28px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  display: flex; align-items: center; padding: 0 12px;
  font-family: 'DM Sans'; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; color: rgba(255,255,255,0.9);
}

/* Falling photos */
.falling-photos { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fall-photo {
  position: absolute; width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  animation: fallDown 3s linear infinite;
}
.f1 { left: 10%; animation-delay: 0s; background: rgba(236,72,153,0.3); }
.f2 { left: 30%; animation-delay: 0.7s; background: rgba(124,58,237,0.3); }
.f3 { left: 55%; animation-delay: 1.2s; background: rgba(245,158,11,0.3); }
.f4 { left: 75%; animation-delay: 1.8s; background: rgba(59,130,246,0.3); }
.f5 { left: 90%; animation-delay: 2.3s; background: rgba(16,185,129,0.3); }
@keyframes fallDown {
  0% { top: -40px; opacity: 0; transform: rotate(-10deg); }
  20% { opacity: 1; }
  100% { top: 100%; opacity: 0; transform: rotate(15deg); }
}

/* People / crowd */
.scene-crowd {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.person {
  width: 36px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 50% 50% 30% 30%;
  position: relative;
  display: flex; align-items: flex-start; justify-content: center;
  animation: personBounce 2s ease-in-out infinite;
}
.p-1 { animation-delay: 0s; }
.p-2 { animation-delay: 0.3s; }
.p-3 { animation-delay: 0.6s; }
.p-4 { animation-delay: 0.9s; }
.p-5 { animation-delay: 1.2s; }
@keyframes personBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.phone-up {
  font-size: 14px;
  position: absolute; top: -18px;
  animation: phoneWave 2.5s ease-in-out infinite;
}
.p-1 .phone-up { animation-delay: 0.2s; }
.p-2 .phone-up { animation-delay: 0.8s; }
.p-3 .phone-up { animation-delay: 0.1s; }
.p-4 .phone-up { animation-delay: 0.5s; }
.p-5 .phone-up { animation-delay: 1.1s; }
@keyframes phoneWave {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-6px) rotate(5deg); }
}

.scene-sparkles { position: absolute; inset: 0; pointer-events: none; }
.sparkle {
  position: absolute;
  font-size: 18px;
  animation: sparkleFloat 4s ease-in-out infinite;
}
.s1 { top: 10%; left: 5%; animation-delay: 0s; }
.s2 { top: 20%; right: 0; animation-delay: 0.5s; }
.s3 { bottom: 30%; left: 0; animation-delay: 1.2s; }
.s4 { top: 5%; right: 30%; animation-delay: 1.8s; }
.s5 { bottom: 10%; right: 10%; animation-delay: 2.4s; }
@keyframes sparkleFloat {
  0%, 100% { opacity: 0.4; transform: translateY(0) scale(0.8); }
  50% { opacity: 1; transform: translateY(-12px) scale(1.2); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  z-index: 2;
  font-size: 11px; letter-spacing: 2px;
  color: var(--text-sub);
  font-family: 'DM Sans';
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; text-align: center; padding-top: 80px; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-scene { margin-top: 20px; }
}
@media (max-width: 500px) {
  .hero-inner { padding: 60px 20px 20px; }
  .scene-screen { width: 300px; height: 190px; }
}

/* ===== EVENT BANNER (between hero and features) ===== */
.event-banner {
  position: relative;
  padding: 80px 32px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(124,58,237,0.08) 50%, var(--bg) 100%);
  text-align: center;
}
.event-banner-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.eb-scene { position: absolute; inset: 0; }
.eb-photo {
  position: absolute;
  font-size: 36px;
  opacity: 0.15;
  animation: ebFloat 10s ease-in-out infinite;
}
.eb-p1 { top: 10%; left: 8%; animation-delay: 0s; }
.eb-p2 { top: 15%; right: 12%; animation-delay: 1.5s; }
.eb-p3 { bottom: 20%; left: 15%; animation-delay: 3s; }
.eb-p4 { bottom: 15%; right: 8%; animation-delay: 4.5s; }
.eb-p5 { top: 50%; left: 45%; animation-delay: 2s; }
.eb-p6 { top: 35%; left: 25%; animation-delay: 5s; }
@keyframes ebFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.1; }
  50% { transform: translateY(-25px) rotate(8deg) scale(1.15); opacity: 0.25; }
}
.event-banner-content { position: relative; z-index: 1; }
.eb-text {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 2;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
}

/* ===== SECTIONS ===== */
.section { padding: 120px 32px; position: relative; }
.section-dark {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-family: 'DM Sans'; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; color: var(--purple);
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-desc { font-size: 15px; color: var(--text-sub); max-width: 600px; margin: 0 auto; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px 24px;
  transition: all 0.4s var(--ease-out-expo);
}
.feature-card:hover {
  background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(124,58,237,0.15);
}
.feat-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(236,72,153,0.15));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feat-icon { font-size: 28px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 13px; line-height: 1.9; color: var(--text-sub); }

/* ===== STEPS TIMELINE ===== */
.steps-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 36px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--pink), var(--accent));
  opacity: 0.3;
}
.step-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}
.step-item:last-child { margin-bottom: 0; }
.step-num {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans'; font-size: 24px; font-weight: 900;
  color: #fff;
  box-shadow: 0 8px 30px rgba(124,58,237,0.4);
  position: relative; z-index: 1;
}
.step-body {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px;
  flex: 1;
  transition: all 0.3s;
}
.step-body:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
}
.step-icon-wrap { font-size: 32px; margin-bottom: 12px; }
.step-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-body p { font-size: 13px; line-height: 1.9; color: var(--text-sub); }

@media (max-width: 600px) {
  .timeline-line { left: 24px; }
  .step-num { width: 48px; height: 48px; font-size: 16px; }
  .step-item { gap: 16px; }
  .step-body { padding: 20px; }
}

/* ===== EVENT VISUAL SECTION ===== */
.section-event-visual {
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--purple-deep) 50%, var(--bg) 100%);
}
.event-visual-bg { position: absolute; inset: 0; }
.ev-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.ev-orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  top: -200px; left: -100px;
  opacity: 0.3;
}
.ev-orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--pink), transparent 70%);
  bottom: -150px; right: -100px;
  opacity: 0.25;
}
.event-scene-full {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.esf-screen {
  border-radius: 20px;
  background: linear-gradient(135deg, #0f0f2e, #1a1a3e);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 120px rgba(124,58,237,0.25), 0 0 60px rgba(236,72,153,0.15);
}
.esf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
  padding: 12px 12px 44px;
  aspect-ratio: 16/10;
}
.esf-photo {
  border-radius: 10px;
  animation: esfPulse 5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.4s);
}
.esf-photo:nth-child(odd) { background: linear-gradient(135deg, rgba(236,72,153,0.4), rgba(124,58,237,0.2)); }
.esf-photo:nth-child(even) { background: linear-gradient(135deg, rgba(59,130,246,0.4), rgba(16,185,129,0.2)); }
@keyframes esfPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
.esf-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 36px;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--accent));
  display: flex; align-items: center; padding: 0 16px;
  font-family: 'DM Sans'; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; color: rgba(255,255,255,0.9);
}
.esf-glow {
  position: absolute; bottom: -30px; left: 10%; right: 10%; height: 60px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  filter: blur(40px); opacity: 0.4;
  border-radius: 50%;
}
.esf-arrows {
  display: flex; justify-content: center; gap: 80px;
  margin-top: 24px;
  position: relative;
}
.arrow-up {
  font-size: 28px;
  position: relative;
  animation: arrowRise 2.5s ease-in-out infinite;
}
.a1 { animation-delay: 0s; }
.a2 { animation-delay: 0.8s; }
.a3 { animation-delay: 1.6s; }
@keyframes arrowRise {
  0% { opacity: 0.3; transform: translateY(20px) scale(0.8); }
  50% { opacity: 1; transform: translateY(-10px) scale(1.1); }
  100% { opacity: 0.3; transform: translateY(20px) scale(0.8); }
}
.arrow-trail {
  position: absolute;
  bottom: 100%; left: 50%; transform: translateX(-50%);
  width: 2px; height: 40px;
  background: linear-gradient(to top, var(--purple), transparent);
  opacity: 0.4;
}
.esf-crowd-bar {
  margin-top: 32px;
  padding: 14px 24px;
  border-radius: 100px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 13px; font-weight: 500;
  color: var(--text-sub);
  display: inline-block;
}

/* ===== PARALLAX GALLERY ===== */
.parallax-gallery {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, var(--bg), rgba(124,58,237,0.04), var(--bg));
}
.pg-track {
  display: flex;
  gap: 32px;
  padding: 0 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.pg-card {
  width: 260px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  transition: all 0.4s var(--ease-out-expo);
  flex-shrink: 0;
}
.pg-card:hover {
  transform: translateY(-8px) rotate(0deg) !important;
  box-shadow: 0 20px 60px rgba(124,58,237,0.3);
  border-color: rgba(124,58,237,0.4);
}
.pg-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.pg-wedding {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0, #e1bee7);
  background-size: 200% 200%;
  animation: pgGrad 6s ease-in-out infinite;
}
.pg-wedding::before {
  content: '💒 👰 🤵 💐';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  letter-spacing: 8px;
  opacity: 0.7;
}
.pg-party {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2, #ffccbc);
  background-size: 200% 200%;
  animation: pgGrad 6s ease-in-out infinite 1s;
}
.pg-party::before {
  content: '🎂 🎈 🎁 🥳';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  letter-spacing: 8px;
  opacity: 0.7;
}
.pg-corporate {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb, #b3e5fc);
  background-size: 200% 200%;
  animation: pgGrad 6s ease-in-out infinite 2s;
}
.pg-corporate::before {
  content: '🏢 🏆 🎤 👏';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  letter-spacing: 8px;
  opacity: 0.7;
}
.pg-festival {
  background: linear-gradient(135deg, #e8eaf6, #c5cae9, #d1c4e9);
  background-size: 200% 200%;
  animation: pgGrad 6s ease-in-out infinite 3s;
}
.pg-festival::before {
  content: '🎵 🎪 🎆 ✨';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  letter-spacing: 8px;
  opacity: 0.7;
}
@keyframes pgGrad {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.pg-caption {
  display: block;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 700px) {
  .pg-track { gap: 16px; }
  .pg-card { width: 200px; }
  .pg-img { height: 140px; }
  .pg-img::before { font-size: 32px; letter-spacing: 4px; }
}

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  white-space: nowrap;
}
.compare-table th {
  background: rgba(124,58,237,0.1);
  font-weight: 700;
  font-size: 14px;
  position: sticky; top: 0;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  white-space: normal;
  min-width: 160px;
}
.compare-table th small {
  display: block;
  font-weight: 400; font-size: 11px; color: var(--text-sub);
}
.cmp-emolive {
  background: rgba(124,58,237,0.05);
}
th.cmp-emolive {
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(236,72,153,0.15));
  color: #fff;
}
.cmp-sub { font-weight: 400; font-size: 11px; color: var(--text-sub); }
.cmp-yes { color: #34D399; font-weight: 700; font-size: 18px; }
.cmp-no { color: rgba(255,255,255,0.25); font-size: 16px; }
.cmp-partial { color: var(--accent); font-weight: 700; }
.cmp-best { color: var(--accent); font-weight: 700; }
.cmp-soon { color: #60A5FA; font-weight: 600; font-size: 11px; }
.cmp-price-row td { font-weight: 600; }
.compare-table tbody tr:hover {
  background: rgba(124,58,237,0.05);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-note {
  text-align: center;
  margin-top: 20px;
}
.compare-note p { font-size: 12px; color: var(--text-sub); }

/* Advantage cards */
.cmp-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 700px) { .cmp-advantages { grid-template-columns: 1fr; } }
.cmp-adv-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s var(--ease-out-expo);
}
.cmp-adv-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
}
.cmp-adv-icon { font-size: 36px; display: block; margin-bottom: 16px; }
.cmp-adv-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.cmp-adv-card p { font-size: 13px; line-height: 1.8; color: var(--text-sub); }

/* ===== USE CASES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 600px) { .cases-grid { grid-template-columns: 1fr; } }

.case-card {
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease-out-expo);
  overflow: hidden;
  position: relative;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.case-wedding { background: linear-gradient(135deg, rgba(236,72,153,0.12), rgba(124,58,237,0.08)); }
.case-party   { background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(239,68,68,0.08)); }
.case-corporate { background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(16,185,129,0.08)); }
.case-birthday { background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(59,130,246,0.08)); }

.case-visual {
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.case-scene { display: flex; gap: 12px; }
.cs-icon {
  font-size: 36px;
  display: inline-block;
  animation: caseFloat 3s ease-in-out infinite;
}
.cs1 { animation-delay: 0s; }
.cs2 { animation-delay: 0.3s; }
.cs3 { animation-delay: 0.6s; }
.cs4 { animation-delay: 0.9s; }
@keyframes caseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.case-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.case-card p { font-size: 13px; line-height: 1.9; color: var(--text-sub); }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-dark) 0%, #831843 100%);
  text-align: center;
}
.cta-bg-scene { position: absolute; inset: 0; pointer-events: none; }
.cta-photo-float {
  position: absolute;
  font-size: 32px;
  animation: ctaPhotoFloat 8s ease-in-out infinite;
  opacity: 0.3;
}
.cp1 { top: 10%; left: 10%; animation-delay: 0s; }
.cp2 { top: 30%; right: 15%; animation-delay: 1.5s; }
.cp3 { bottom: 20%; left: 20%; animation-delay: 3s; }
.cp4 { bottom: 30%; right: 10%; animation-delay: 4.5s; }
.cp5 { top: 50%; left: 50%; animation-delay: 2s; }
@keyframes ctaPhotoFloat {
  0%, 100% { transform: translateY(0) rotate(0); opacity: 0.2; }
  50% { transform: translateY(-30px) rotate(10deg); opacity: 0.5; }
}
.cta-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.3;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-banner .btn-glow-lg {
  background: linear-gradient(135deg, var(--accent), #EF4444);
  box-shadow: 0 8px 40px rgba(245,158,11,0.5);
}
.cta-banner .btn-glow-lg:hover {
  box-shadow: 0 16px 60px rgba(245,158,11,0.7);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 48px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
@media (max-width: 600px) { .contact-form { padding: 24px 20px; border-radius: 20px; } }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 20px;
}
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-full { margin-bottom: 20px; }
label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); }
.required { color: #F87171; }
input, select, textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all 0.3s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
  background: rgba(255,255,255,0.08);
}
select { cursor: pointer; }
select option { background: #1a1a2e; color: #fff; }
textarea { resize: vertical; min-height: 100px; }
.form-submit { text-align: center; margin-top: 8px; }
.btn-submit { width: 100%; max-width: 320px; }
.form-success {
  text-align: center;
  margin-top: 20px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(52,211,153,0.15);
  border: 1px solid rgba(52,211,153,0.3);
  color: #34D399;
  font-weight: 600;
}
.form-error {
  text-align: center;
  margin-top: 20px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(248,113,113,0.15);
  border: 1px solid rgba(248,113,113,0.3);
  color: #F87171;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 32px 32px;
  border-top: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.3);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-brand p {
  font-size: 13px; color: var(--text-sub); margin-top: 8px;
}
.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px; font-weight: 900;
}
.footer-logo span {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
}
.footer-bottom p { font-size: 12px; color: var(--text-sub); }
.footer-company a {
  color: var(--purple);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-company a:hover { color: var(--pink); }

@media (max-width: 600px) {
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== PROGRESS BAR (scroll indicator) ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--accent));
  z-index: 999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ===== CURSOR TRAIL (desktop) ===== */
.cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.3s ease-out, top 0.3s ease-out;
}
@media (max-width: 768px) { .cursor-glow { display: none; } }
