


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

:root {
  
  --violet:       #7C3AED;
  --violet-mid:   #A855F7;
  --violet-light: #C084FC;
  --violet-glow:  rgba(124, 58, 237, 0.2);
  --violet-glow-strong: rgba(168, 85, 247, 0.38);

  
  --cyan:       #06B6D4;
  --cyan-mid:   #22D3EE;
  --cyan-light: #67E8F9;
  --cyan-glow:  rgba(6, 182, 212, 0.15);
  --cyan-glow-strong: rgba(34, 211, 238, 0.3);

  
  --bg-dark:        #0F0F14;
  --bg-card:        rgba(26, 26, 34, 0.8);
  --bg-card-solid:  #1A1A22;
  --bg-hover:       #242433;
  --bg-section-alt: #0C0C11;

  
  --text-primary:   #E5E7EB;
  --text-secondary: #9CA3AF;
  --text-muted:     #4B5563;

  
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-card:   rgba(168, 85, 247, 0.12);
  --border-hover:  rgba(168, 85, 247, 0.35);

  
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  
  --transition-fast:   0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}


body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; user-select: none; -webkit-user-drag: none; pointer-events: auto; }


.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--violet-light), var(--cyan-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: #fff;
  box-shadow: 0 4px 24px var(--violet-glow), 0 0 0 1px rgba(168, 85, 247, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 8px 40px var(--violet-glow-strong), 0 4px 24px var(--cyan-glow-strong);
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(124, 58, 237, 0.08);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 0.95rem;
}

.btn-full { width: 100%; justify-content: center; }


.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  padding: 20px 0;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(15, 15, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  padding: 12px 0;
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 36px; width: auto; }
.footer-logo-img { height: auto; width: 160px; max-width: 100%; }
.hero-logo {
  display: block;
  height: auto;
  width: 340px;
  max-width: 80%;
  margin: 0 auto 36px;
  filter: drop-shadow(0 0 18px rgba(124, 58, 237, 0.35))
          drop-shadow(0 12px 24px rgba(0, 0, 0, 0.75))
          drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.nav-links { display: flex; list-style: none; gap: 2px; }

.nav-link {
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover { color: var(--text-primary); }

.nav-link.active {
  color: var(--violet-light);
  background: rgba(124, 58, 237, 0.1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px var(--violet-glow);
  transition: all var(--transition-smooth);
}

.nav-cta:hover {
  box-shadow: 0 8px 28px var(--violet-glow-strong);
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 20px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 4px 2px;
  transition: color var(--transition-fast);
}

.lang-btn:hover { color: var(--text-primary); }
.lang-btn.active { color: var(--violet-light); }

.lang-sep {
  font-size: 0.65rem;
  color: var(--text-muted);
  opacity: 0.4;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all var(--transition-fast);
}


.page-header {
  position: relative;
  padding: 180px 0 90px;
  text-align: center;
  overflow: hidden;
}

.page-header-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }


.page-header-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(3px) brightness(0.85);
  transform: scale(1.04); 
}


.page-header--top .page-header-video {
  object-position: center top;
}
.page-header-video-overlay {
  position: absolute;
  inset: 0;
  
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,0.45) 0%,
    rgba(10,10,15,0.25) 45%,
    rgba(10,10,15,0.72) 78%,
    rgba(10,10,15,1)    100%
  );
}

.page-header-bg .hero-orb--violet {
  width: 500px; height: 500px;
  top: -150px; right: 10%; opacity: 0.12;
}

.page-header-bg .hero-orb--cyan {
  width: 350px; height: 350px;
  bottom: -100px; left: 5%; opacity: 0.1;
}

.page-header .container { position: relative; z-index: 1; }
.page-header .section-tag { margin-bottom: 20px; }

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-header-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 32px 120px;
}


.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 35%, var(--bg-dark) 75%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 20, 0.55) 0%,
    rgba(15, 15, 20, 0.4) 50%,
    rgba(15, 15, 20, 0.75) 100%
  );
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: float 20s ease-in-out infinite;
}

.hero-orb--violet {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--violet), transparent 70%);
  opacity: 0.18;
  top: -10%; right: -5%;
}

.hero-orb--cyan {
  width: 550px; height: 550px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  opacity: 0.14;
  bottom: 0; left: -5%;
  animation-delay: -10s;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -15px) scale(1.03); }
  66%       { transform: translate(-15px, 10px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--violet-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--violet-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--violet-mid);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--violet-mid); }
  50%       { opacity: 0.5; box-shadow: 0 0 2px var(--violet-mid); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}


.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 48px;
  background: rgba(26, 26, 34, 0.65);
  border: 1px solid rgba(168, 85, 247, 0.14);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  gap: 0;
}

.stat { text-align: center; padding: 0 44px; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--violet-mid), var(--cyan-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.stat-divider {
  width: 1px; height: 48px;
  background: rgba(168, 85, 247, 0.14);
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(168, 85, 247, 0.25);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 3px; height: 6px;
  background: var(--violet-light);
  border-radius: 3px;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.2; }
}


.section { padding: 120px 0; position: relative; }
.section--dark { background: var(--bg-section-alt); }

.section-header { text-align: center; margin-bottom: 72px; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--violet-light);
  margin-bottom: 18px;
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-full);
}

.section-tag::before { content: none; }
.section-tag::after  { content: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.1;
}

.section-title::after { content: none; }

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}


.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text { display: flex; flex-direction: column; gap: 20px; }

.about-lead { font-size: 1.15rem; line-height: 1.8; font-weight: 500; }
.about-text p { color: var(--text-secondary); line-height: 1.85; }

.about-card {
  padding: 44px;
  text-align: center;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  transition: all var(--transition-smooth);
}

.about-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 40px var(--violet-glow), 0 0 60px var(--cyan-glow);
  transform: translateY(-4px);
}

.about-card-icon {
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-md);
  margin: 0 auto 24px;
  color: var(--violet-light);
}

.about-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; }
.about-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }


.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border-card);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(168, 85, 247, 0.08);
}

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

.about-img-wrap:hover .about-img {
  transform: scale(1.04);
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(15, 15, 20, 0.7), transparent);
  pointer-events: none;
}


.missions-visual {
  margin-bottom: 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 260px;
  border: 1px solid var(--border-card);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.missions-visual:hover .missions-img {
  transform: scale(1.02);
}

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

.mission-card {
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  transition: all var(--transition-smooth);
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-mid), var(--cyan-mid), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.mission-card:hover {
  border-color: rgba(168, 85, 247, 0.28);
  box-shadow: 0 8px 40px var(--violet-glow), 0 0 80px rgba(124, 58, 237, 0.05);
  transform: translateY(-4px);
}

.mission-card:hover::before { opacity: 1; }

.mission-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius-md);
  color: var(--violet-light);
  margin-bottom: 28px;
}

.mission-card:nth-child(2) .mission-icon {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(34, 211, 238, 0.15);
  color: var(--cyan-mid);
}

.mission-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
.mission-card p  { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.75; margin-bottom: 24px; }

.mission-tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet-light);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.06);
}

.mission-card:nth-child(2) .mission-tag {
  color: var(--cyan-mid);
  border-color: rgba(34, 211, 238, 0.2);
  background: rgba(6, 182, 212, 0.06);
}


.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 52px;
}

.tab {
  padding: 10px 28px;
  background: rgba(26, 26, 34, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.tab:hover { color: var(--text-primary); border-color: rgba(168, 85, 247, 0.2); }

.tab.active {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.1));
  color: var(--violet-light);
  border-color: rgba(168, 85, 247, 0.35);
  font-weight: 600;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}


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

.project-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  transition: all var(--transition-smooth);
}

.project-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 8px 40px var(--violet-glow);
  transform: translateY(-4px);
}

.project-card.hidden { display: none; }

.project-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}


.yt-facade { cursor: pointer; }

.yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.yt-facade:hover .yt-thumb {
  transform: scale(1.04);
  filter: brightness(0.75);
}

.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}

.yt-play:hover { opacity: 1; transform: scale(1.1); }

.project-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #111118, #1a1a28);
  color: var(--text-muted);
  transition: all var(--transition-smooth);
}

.project-card:hover .project-placeholder { color: var(--violet-light); }

.project-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.project-overlay { position: absolute; top: 14px; right: 14px; }

.project-badge {
  padding: 5px 14px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(124, 58, 237, 0.2);
  color: var(--violet-light);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.badge--fandub {
  background: rgba(6, 182, 212, 0.2);
  color: var(--cyan-mid);
  border-color: rgba(34, 211, 238, 0.3);
}

.badge--jeux {
  background: rgba(100, 100, 220, 0.15);
  color: #a0a0ff;
  border-color: rgba(100, 100, 220, 0.25);
}

.project-info { padding: 22px 26px; }
.project-info h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.project-info p  { font-size: 0.82rem; color: var(--text-muted); }
.project-credit { display: inline-block; margin-top: 8px; font-size: 0.72rem; color: var(--violet-light); letter-spacing: 0.02em; }
a.project-card { text-decoration: none; color: inherit; display: block; cursor: pointer; }


.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.member-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  transition: all var(--transition-smooth);
}

.member-card:hover {
  border-color: rgba(168, 85, 247, 0.28);
  box-shadow: 0 6px 30px var(--violet-glow);
  transform: translateY(-3px);
}

.member-photo-wrap {
  width: 100px; height: 100px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid rgba(168, 85, 247, 0.3);
  margin-bottom: 8px;
  flex-shrink: 0;
}

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

.member-card h3 { font-size: 1.1rem; font-weight: 700; }
.member-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--violet-light);
  line-height: 1.4;
}
.member-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }

.member-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 12px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.15);
  color: var(--violet-light);
  border: 1px solid rgba(168, 85, 247, 0.25);
}
.member-tag--founder {
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan-mid);
  border-color: rgba(6, 182, 212, 0.25);
}
.member-tag--active {
  background: rgba(168, 85, 247, 0.08);
  color: var(--text-secondary);
  border-color: rgba(255,255,255,0.08);
}

.team-grid--centered {
  grid-template-columns: repeat(3, 1fr);
}


.studio-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.studio-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.7) brightness(0.65);
}

.studio-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,15,20,0.55) 0%,
    rgba(15,15,20,0.1) 40%,
    rgba(15,15,20,0.1) 60%,
    rgba(15,15,20,0.7) 100%
  );
}

.studio-banner-label {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-lead { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 36px; }

.contact-channels { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.contact-item:hover {
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 4px 20px var(--violet-glow);
}

.contact-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius-sm);
  color: var(--violet-light);
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}

.contact-item a { color: var(--text-primary); font-weight: 500; transition: color var(--transition-fast); }
.contact-item a:hover { color: var(--violet-light); }


.contact-form {
  padding: 44px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234B5563' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-group select option { background: #1A1A22; color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 110px; }


.footer {
  background: #0A0A0F;
  border-top: 1px solid rgba(168, 85, 247, 0.08);
  padding: 72px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}

.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 14px; max-width: 280px; line-height: 1.7; }

.footer-links-group h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--text-secondary);
}

.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.footer-links-group a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition-fast); }
.footer-links-group a:hover { color: var(--violet-light); }

.footer-socials { display: flex; gap: 10px; }

.social-link {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-link:hover {
  color: var(--violet-light);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 0 16px var(--violet-glow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(168, 85, 247, 0.06);
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { font-size: 0.78rem; color: var(--text-muted); transition: color var(--transition-fast); }
.footer-legal a:hover { color: var(--text-primary); }


[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-right"] { transform: translateX(-24px); }
[data-animate="fade-left"]  { transform: translateX(24px); }
[data-animate].visible { opacity: 1; transform: translate(0, 0); }


@media (max-width: 1024px) {
  .missions-grid, .projects-grid, .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-container { padding: 0 16px; gap: 12px; }
  .nav-logo-img { height: 28px; }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    background: #0F0F14;
    padding: 100px 28px 36px;
    gap: 6px;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow-y: auto;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .lang-switcher { margin-left: auto; }
  .nav-toggle { display: flex; z-index: 1000; }

  .nav-links .nav-link { font-size: 1.1rem; padding: 16px 18px; }

  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { padding: 120px 24px 80px; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-stats { padding: 20px 24px; flex-wrap: wrap; }
  .stat { padding: 12px 20px; }
  .stat-divider { display: none; }

  .section { padding: 80px 0; }
  .page-header { padding: 140px 0 64px; }

  .missions-grid, .projects-grid, .roles-grid { grid-template-columns: 1fr; }
  .team-grid, .team-grid--centered { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 18px; text-align: center; }
  .studio-banner { height: 280px; }
  .tabs { flex-wrap: wrap; }
  .contact-form { padding: 32px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .studio-banner { height: 220px; }
}


#page-overlay {
  position: fixed;
  inset: 0;
  background: #0a0a0f;
  z-index: 99998;
  pointer-events: none;
  transform: translateX(110%);
}

#page-overlay-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  
  transform: translateZ(0);
  will-change: transform;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}



.project-card { transition: transform 0.22s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.22s ease; }
.project-card.zooming { transform: scale(1.06) !important; transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important; }
