/* =====================================================
   Primary Colors — VTuber Agency  |  style.css
   ===================================================== */

/* ─── CSS Variables ─── */
:root {
  --pink:       #FFB7C5;
  --sky:        #B3DEFF;
  --lemon:      #FFF3A3;
  --mint:       #B8F0D8;
  --lavender:   #DDD0FF;
  --peach:      #FFD6BA;
  --cream:      #FFFBF5;
  --white:      #FFFFFF;
  --text:       #4A3F5C;
  --text-light: #8B7FA8;
  --border:     rgba(180,160,210,0.2);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  overflow-x: hidden;
}

/* ─── Keyframes ─── */
@keyframes driftShape {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  25%      { transform: translate(20px,-30px) rotate(5deg); }
  50%      { transform: translate(-15px,20px) rotate(-3deg); }
  75%      { transform: translate(25px,10px) rotate(4deg); }
}
@keyframes sparkleAnim {
  0%   { transform: scale(0) rotate(0deg);   opacity: 1; }
  50%  { transform: scale(1) rotate(180deg); opacity: 1; }
  100% { transform: scale(0) rotate(360deg); opacity: 0; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatDeco {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(10deg); }
}

/* ─── Background Floating Shapes ─── */
.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  animation: driftShape 18s ease-in-out infinite;
}
.shape:nth-child(1) { width:320px; height:320px; background:var(--pink);     top:-80px;    left:-80px;  animation-duration:20s; }
.shape:nth-child(2) { width:260px; height:260px; background:var(--sky);      top:30%;      right:-60px; animation-duration:25s; animation-delay:-8s; }
.shape:nth-child(3) { width:200px; height:200px; background:var(--lemon);    bottom:20%;   left:10%;    animation-duration:22s; animation-delay:-4s; }
.shape:nth-child(4) { width:180px; height:180px; background:var(--mint);     bottom:-60px; right:20%;   animation-duration:28s; animation-delay:-12s; }
.shape:nth-child(5) { width:140px; height:140px; background:var(--lavender); top:60%;      left:40%;    animation-duration:30s; animation-delay:-6s; }

/* ─── Sparkle ─── */
.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  animation: sparkleAnim 0.8s ease forwards;
}

/* ─── Custom Cursor ─── */
.cursor {
  position: fixed;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--pink);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  mix-blend-mode: multiply;
  transition: transform 0.1s, background 0.3s, opacity 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--lavender);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%,-50%);
  transition: transform 0.35s ease, width 0.3s, height 0.3s, opacity 0.2s;
}

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(255,251,245,0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(180,160,210,0.12);
}
.nav-logo {
  font-family: 'Kaisei Decol', serif;
  font-size: 22px; font-weight: 700;
  text-decoration: none;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-dots { display: flex; gap: 4px; }
.nav-logo-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.nav-logo-dots span:nth-child(1) { background: var(--pink); }
.nav-logo-dots span:nth-child(2) { background: var(--sky); }
.nav-logo-dots span:nth-child(3) { background: var(--lemon); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; letter-spacing: 1px;
  color: var(--text-light); text-decoration: none;
  position: relative; padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; border-radius: 2px;
  background: var(--pink);
  transition: left 0.3s, right 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { left: 0; right: 0; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { left: 0; right: 0; }

/* ─── Hero ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 60px 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(180,160,210,0.15) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border-radius: 100px;
  padding: 8px 20px; margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(180,160,210,0.2);
  font-size: 12px; letter-spacing: 2px;
  color: var(--text-light);
  opacity: 0; animation: popIn 0.6s ease forwards 0.2s;
}
.hero-badge::before { content: '✦'; color: var(--pink); }

.hero-title {
  font-family: 'Kaisei Decol', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 24px; color: var(--text);
  opacity: 0; animation: fadeUp 0.7s ease forwards 0.4s;
}
.hero-title .highlight { position: relative; display: inline-block; }
.hero-title .highlight::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0;
  height: 12px; background: var(--lemon);
  z-index: -1; border-radius: 4px; opacity: 0.7;
}
.hero-sub {
  font-size: 15px; line-height: 2;
  color: var(--text-light); margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.7s ease forwards 0.6s;
}
.hero-btns {
  display: flex; gap: 16px;
  opacity: 0; animation: fadeUp 0.7s ease forwards 0.8s;
}

/* ─── Buttons ─── */
.btn-main {
  padding: 14px 36px; border-radius: 100px;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  color: white; font-size: 14px; font-weight: 700;
  text-decoration: none; letter-spacing: 1px;
  box-shadow: 0 8px 28px rgba(255,183,197,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,183,197,0.55);
}
.btn-sub {
  padding: 14px 36px; border-radius: 100px;
  background: white; color: var(--text);
  font-size: 14px; font-weight: 500; text-decoration: none;
  border: 2px solid var(--border);
  box-shadow: 0 4px 16px rgba(180,160,210,0.1);
  transition: transform 0.2s, border-color 0.2s;
}
.btn-sub:hover { transform: translateY(-3px); border-color: var(--pink); }

/* ─── Hero Visual Card ─── */
.hero-visual { opacity: 0; animation: fadeIn 1s ease forwards 0.5s; }

.hero-card {
  background: white; border-radius: 32px;
  padding: 48px; text-align: center;
  box-shadow: 0 20px 80px rgba(180,160,210,0.2);
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--pink), var(--sky), var(--lemon));
}
.hero-card-avatar {
  width: 160px; height: 160px;
  border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 50%, var(--sky) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
  box-shadow: 0 12px 40px rgba(255,183,197,0.3);
  animation: float 4s ease-in-out infinite;
}
.hero-card-title {
  font-family: 'Kaisei Decol', serif;
  font-size: 24px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.hero-card-sub { font-size: 13px; color: var(--text-light); letter-spacing: 2px; }
.hero-card-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-top: 20px;
}
.hero-card-tag { padding: 4px 14px; border-radius: 100px; font-size: 11px; letter-spacing: 1px; }
.tag-pink   { background: rgba(255,183,197,0.3); color: #c0607a; }
.tag-sky    { background: rgba(179,222,255,0.3); color: #4a8fcc; }
.tag-lemon  { background: rgba(255,243,163,0.5); color: #9a8a30; }
.tag-mint   { background: rgba(184,240,216,0.4); color: #3a9a6e; }

.deco {
  position: absolute;
  animation: floatDeco 6s ease-in-out infinite;
  font-size: 28px; pointer-events: none;
}
.deco-1 { top:-20px;   right:-20px; animation-delay:-2s; }
.deco-2 { bottom:20px; left:-24px;  animation-delay:-4s; font-size:22px; }
.deco-3 { top:40%;     right:-30px; animation-delay:-1s; font-size:20px; }

/* ─── Section Common ─── */
.section-wrap {
  position: relative; z-index: 1;
  padding: 100px 60px;
}
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 16px;
}
.section-label::before { content: '♡'; color: var(--pink); }

.section-title {
  font-family: 'Kaisei Decol', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; line-height: 1.2;
  color: var(--text); margin-bottom: 16px;
}
.section-desc {
  font-size: 15px; line-height: 1.9;
  color: var(--text-light); max-width: 560px; margin-bottom: 60px;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Concept Stripe ─── */
.concept-stripe { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.concept-block { padding: 60px 48px; text-align: center; }
.concept-block:nth-child(1) { background: rgba(255,183,197,0.25); }
.concept-block:nth-child(2) { background: rgba(179,222,255,0.25); }
.concept-block:nth-child(3) { background: rgba(255,243,163,0.40); }
.concept-block-emoji  { font-size: 48px; margin-bottom: 16px; display: block; }
.concept-block-title  { font-family: 'Kaisei Decol', serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.concept-block-text   { font-size: 14px; line-height: 1.8; color: var(--text-light); }

/* ─── About ─── */
.about-section { background: white; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-card {
  padding: 28px; border-radius: 24px; transition: transform 0.3s;
}
.about-card:hover { transform: translateY(-4px); }
.about-card:nth-child(1) { background: rgba(255,183,197,0.2); }
.about-card:nth-child(2) { background: rgba(179,222,255,0.2); }
.about-card:nth-child(3) { background: rgba(255,243,163,0.4); }
.about-card:nth-child(4) { background: rgba(221,208,255,0.3); }
.about-card-icon  { font-size: 32px; margin-bottom: 12px; }
.about-card-title { font-family: 'Kaisei Decol', serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.about-card-text  { font-size: 13px; line-height: 1.7; color: var(--text-light); }
.about-text p { font-size: 15px; line-height: 2; color: var(--text-light); margin-bottom: 20px; }
.about-text p strong { color: var(--text); }

/* ─── Talents ─── */
.talents-section { background: var(--cream); }
.talents-coming {
  background: white; border-radius: 32px;
  padding: 80px 48px; text-align: center;
  border: 3px dashed rgba(255,183,197,0.4);
  position: relative; overflow: hidden;
}
.talents-coming-bg {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 20px,
    rgba(255,183,197,0.05) 20px, rgba(255,183,197,0.05) 21px
  );
}
.talents-coming-emoji { font-size: 64px; display: block; margin-bottom: 24px; animation: float 3s ease-in-out infinite; }
.talents-coming h3 { font-family: 'Kaisei Decol', serif; font-size: 36px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.talents-coming p  { font-size: 15px; color: var(--text-light); line-height: 1.9; max-width: 400px; margin: 0 auto 32px; }

.talent-placeholder-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.talent-placeholder-card {
  background: white; border-radius: 28px;
  padding: 40px 24px; text-align: center;
  box-shadow: 0 8px 40px rgba(180,160,210,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.talent-placeholder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 60px rgba(180,160,210,0.18);
}
.talent-ph-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.talent-placeholder-card:nth-child(1) .talent-ph-avatar { background: rgba(255,183,197,0.3); }
.talent-placeholder-card:nth-child(2) .talent-ph-avatar { background: rgba(34,211,238,0.2); }
.talent-placeholder-card:nth-child(3) .talent-ph-avatar { background: rgba(184,240,216,0.4); }
.talent-ph-name { font-family: 'Kaisei Decol', serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.talent-ph-role { font-size: 12px; letter-spacing: 2px; color: var(--text-light); margin-bottom: 16px; }
.talent-ph-bar  { height: 6px; border-radius: 6px; background: rgba(180,160,210,0.15); margin: 4px 0; }

/* ─── News ─── */
.news-section { background: white; }
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex; align-items: center; gap: 32px;
  padding: 24px 32px; border-radius: 20px;
  text-decoration: none; color: var(--text);
  transition: background 0.2s, transform 0.2s;
}
.news-item:hover { background: rgba(255,183,197,0.08); transform: translateX(8px); }
.news-date  { font-size: 13px; color: var(--text-light); min-width: 100px; letter-spacing: 1px; }
.news-badge { padding: 4px 14px; border-radius: 100px; font-size: 11px; letter-spacing: 1px; min-width: 80px; text-align: center; }
.news-title { font-size: 15px; line-height: 1.6; flex: 1; }
.news-arrow { color: var(--text-light); font-size: 18px; transition: transform 0.2s, color 0.2s; }
.news-item:hover .news-arrow { transform: translateX(4px); color: var(--pink); }

.badge-info    { background: rgba(179,222,255,0.4); color: #4a8fcc; }
.badge-event   { background: rgba(255,183,197,0.4); color: #c06080; }
.badge-talent  { background: rgba(221,208,255,0.4); color: #7060b0; }
.badge-recruit { background: rgba(184,240,216,0.4); color: #3a9a6e; }

/* ─── Audition ─── */
.audition-section {
  background: linear-gradient(135deg,
    rgba(255,183,197,0.3) 0%,
    rgba(221,208,255,0.4) 50%,
    rgba(179,222,255,0.3) 100%
  );
  position: relative; overflow: hidden;
}
.audition-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(180,160,210,0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.audition-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.audition-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.audition-feature {
  background: white; border-radius: 20px;
  padding: 24px; text-align: center;
  box-shadow: 0 8px 32px rgba(180,160,210,0.15);
}
.audition-feature:nth-child(odd) { margin-top: 24px; }
.audition-feature-icon  { font-size: 32px; margin-bottom: 10px; display: block; }
.audition-feature-title { font-family: 'Kaisei Decol', serif; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.audition-feature-text  { font-size: 12px; color: var(--text-light); line-height: 1.7; }
.audition-requirements {
  background: white; border-radius: 24px;
  padding: 32px; margin: 28px 0;
  box-shadow: 0 8px 32px rgba(180,160,210,0.12);
}
.audition-requirements h4 { font-family: 'Kaisei Decol', serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.req-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.req-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-light); line-height: 1.6; }
.req-list li::before { content: '✦'; color: var(--pink); margin-top: 2px; flex-shrink: 0; }

/* ─── Contact ─── */
.contact-section { background: white; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group   { display: flex; flex-direction: column; gap: 8px; }
.form-label   { font-size: 12px; letter-spacing: 2px; color: var(--text-light); }
.form-input,
.form-select,
.form-textarea {
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 14px;
  color: var(--text);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px; padding: 14px 20px;
  outline: none; width: 100%;
  transition: border-color 0.3s, background 0.3s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--pink); background: white; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select   { appearance: none; cursor: pointer; }
.btn-send {
  padding: 16px 48px; border-radius: 100px;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  color: white; font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; letter-spacing: 1px;
  box-shadow: 0 8px 28px rgba(255,183,197,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  align-self: flex-start;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.btn-send:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,183,197,0.55); }

.contact-info { padding-top: 16px; }
.contact-info p { font-size: 15px; line-height: 2; color: var(--text-light); margin-bottom: 40px; }
.social-cards { display: flex; flex-direction: column; gap: 14px; }
.social-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--cream); border-radius: 18px;
  padding: 18px 24px; text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 2px solid transparent;
}
.social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(180,160,210,0.15);
  border-color: var(--pink);
}
.social-icon     { font-size: 24px; }
.social-info-text{ display: flex; flex-direction: column; }
.social-platform { font-size: 11px; letter-spacing: 2px; color: var(--text-light); text-transform: uppercase; }
.social-handle   { font-size: 14px; font-weight: 500; color: var(--text); }

/* ─── Footer ─── */
.footer { background: var(--text); padding: 60px; color: rgba(255,251,245,0.7); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; }
.footer-logo-text { font-family: 'Kaisei Decol', serif; font-size: 20px; color: white; font-weight: 700; }
.footer-dots { display: flex; gap: 5px; align-items: center; }
.footer-dots span { width: 8px; height: 8px; border-radius: 50%; }
.footer-dots span:nth-child(1) { background: var(--pink); }
.footer-dots span:nth-child(2) { background: var(--sky); }
.footer-dots span:nth-child(3) { background: var(--lemon); }
.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a { font-size: 13px; color: rgba(255,251,245,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--pink); }
.footer-copy { font-size: 12px; opacity: 0.35; }

/* ─── Rainbow Bar ─── */
.rainbow-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--lavender) 25%, var(--sky) 50%, var(--mint) 75%, var(--lemon) 100%);
}

/* ─── Members Page ─── */
.members-section { background: var(--cream); }

.group-label { display: flex; align-items: center; gap: 16px; margin: 0 0 28px; }
.group-label-text {
  font-family: 'Kaisei Decol', serif;
  font-size: 18px; font-weight: 700;
  color: var(--text); white-space: nowrap; letter-spacing: 1px;
}
.group-label-line { flex: 1; height: 2px; border-radius: 2px; opacity: 0.4; }

.members-grid-6 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.member-card {
  background: white; border-radius: 24px;
  padding: 32px 20px; text-align: center;
  box-shadow: 0 8px 32px rgba(180,160,210,0.1);
  border: 2px solid transparent;
  transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275),
              box-shadow 0.35s, border-color 0.35s;
}
.member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px -6px var(--mc, rgba(180,160,210,0.4));
  border-color: var(--mc, var(--pink));
}
.member-avatar {
  width: 130px; height: 130px; border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid white;
  box-shadow: 0 6px 20px rgba(180,160,210,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  transition: transform 0.3s;
}
.member-card:hover .member-avatar { transform: scale(1.07); }
.member-color-role {
  font-size: 10px; letter-spacing: 3px;
  color: var(--mc, var(--text-light));
  font-family: 'Kaisei Decol', serif; font-weight: 700;
  margin-bottom: 6px; text-transform: uppercase;
}
.member-card h3 {
  font-family: 'Kaisei Decol', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.member-card p { font-size: 13px; line-height: 1.7; color: var(--text-light); }
.member-color-dot {
  display: inline-block; width: 32px; height: 6px;
  border-radius: 4px; margin-top: 14px;
  background: var(--mc, var(--pink)); opacity: 0.75;
}
.members-note {
  background: white; border-radius: 28px;
  padding: 48px; text-align: center;
  box-shadow: 0 8px 40px rgba(180,160,210,0.1);
  margin-top: 48px; max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.members-note-emoji { font-size: 40px; margin-bottom: 16px; }
.members-note h3 {
  font-family: 'Kaisei Decol', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 12px;
}
.members-note p { font-size: 14px; line-height: 2; color: var(--text-light); margin-bottom: 28px; }

/* ─── News Filter ─── */
.news-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 7px 22px; border-radius: 100px;
  font-size: 12px; letter-spacing: 1px;
  background: white; color: var(--text-light);
  border: 2px solid var(--border);
  cursor: pointer; transition: all 0.2s;
  font-family: 'Kaisei Decol', serif;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--pink); color: var(--text);
  box-shadow: 0 4px 14px rgba(255,183,197,0.25);
}

/* ─── Page Hero (sub-pages) ─── */
.page-hero {
  padding: 140px 60px 60px; text-align: center;
  background: var(--cream); position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(180,160,210,0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px; pointer-events: none;
}
.page-hero h1 {
  font-family: 'Kaisei Decol', serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700; color: var(--text);
  margin-bottom: 12px; position: relative; z-index: 1;
}
.page-hero p { font-size: 1.1rem; color: var(--text-light); position: relative; z-index: 1; }

/* ─── Company Table ─── */
.company-section { background: var(--cream); }
.company-table {
  background: white; border-radius: 28px;
  overflow: hidden; box-shadow: 0 8px 40px rgba(180,160,210,0.1);
}
.company-row {
  display: grid; grid-template-columns: 200px 1fr;
  border-bottom: 1px solid rgba(180,160,210,0.12);
}
.company-row:last-child { border-bottom: none; }
.company-th {
  padding: 24px 32px;
  background: rgba(255,183,197,0.08);
  font-size: 13px; font-weight: 700; color: var(--text);
  letter-spacing: 1px;
  border-right: 1px solid rgba(180,160,210,0.12);
}
.company-td { padding: 24px 32px; font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .section-wrap { padding: 80px 24px; }
  .hero { padding: 120px 24px 80px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-btns { justify-content: center; }
  .concept-stripe { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .talent-placeholder-grid { grid-template-columns: 1fr; }
  .audition-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .company-row { grid-template-columns: 1fr; }
  .company-th { border-right: none; border-bottom: 1px solid rgba(180,160,210,0.12); }
  .footer { padding: 48px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .members-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 120px 24px 48px; }
}
@media (max-width: 500px) {
  .members-grid-6 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .member-card { padding: 24px 12px; }
  .member-avatar { width: 90px; height: 90px; font-size: 36px; }
}
