@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;600;800&family=Orbitron:wght@400;700&display=swap');

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}





        /* =========================================
           CSS: 스타일 정의
           ========================================= */
        :root {
            --mz-bg: #f0f2f5;
            --mz-text-main: #111;
            --mz-text-sub: #555;
            --mz-accent-cyan: #00f3ff;
            --mz-accent-magenta: #bc13fe;
            --mz-accent-blue: #2962ff;
            --mz-glass-border: rgba(255, 255, 255, 0.6);
            --mz-glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
        }

        

        /* 기본 레이아웃 초기화 */
        .mulzon-wrapper * { box-sizing: border-box; }
        .mulzon-wrapper {
            font-family: 'Noto Sans KR', sans-serif;
            background-color: var(--mz-bg);
            color: var(--mz-text-main);
            overflow-x: hidden;
            position: relative;
            width: 100%;
            line-height: 1.6;
        }

        .mulzon-bg-grid {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: 
                linear-gradient(rgba(41, 98, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(41, 98, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        .mz-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* 헤더 가독성 존 */
        .mz-header-zone {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 140px;
            background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.8) 40%, transparent 100%);
            z-index: 10;
            pointer-events: none;
        }

        /* 텍스트 스타일 */
        .mz-title-lg {
            font-size: clamp(2.5rem, 5vw, 4.5rem); /* 반응형 폰트 */
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -0.02em;
        }
        
        .mz-text-gradient {
            background: linear-gradient(135deg, var(--mz-accent-blue) 0%, var(--mz-accent-cyan) 50%, var(--mz-accent-magenta) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: gradientMove 5s ease infinite;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .mz-title-md {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }

        .mz-badge {
            font-family: 'Orbitron', sans-serif; /* 미래지향적 폰트 */
            background: rgba(41, 98, 255, 0.1);
            color: var(--mz-accent-blue);
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 0.9rem;
            letter-spacing: 2px;
            border: 1px solid rgba(41, 98, 255, 0.3);
            margin-bottom: 20px;
            display: inline-block;
        }

        /* Hero Section */
        .mz-hero {
            padding-top: 180px;
            padding-bottom: 120px;
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* ----------------------------------------------------
           [UPGRADED] 2. Core Value (Holographic Cards)
           ---------------------------------------------------- */
        .mz-values-section {
            padding: 0px 0;
            perspective: 1000px;
        }
        
        .mz-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .mz-value-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.8);
            box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
            transition: transform 0.1s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
        }

        /* 카드 내부 빛 반사 효과 */
        .mz-value-card::after {
            content: "";
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%);
            opacity: 0;
            transform: scale(0.5);
            transition: opacity 0.5s, transform 0.5s;
            pointer-events: none;
        }
        .mz-value-card:hover::after {
            opacity: 0.3;
            transform: scale(1);
        }

        .mz-icon-box {
            width: 70px; height: 70px;
            border-radius: 16px;
            background: linear-gradient(135deg, #f0f9ff, #e6f0ff);
            display: flex; align-items: center; justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
            box-shadow: 5px 5px 15px rgba(174, 174, 192, 0.2), -5px -5px 15px #ffffff;
            transform: translateZ(30px);
        }

        /* ----------------------------------------------------
           [REBUILT] 3. Company Overview (Dashboard Style)
           ---------------------------------------------------- */
        .mz-overview-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, transparent, white);
            position: relative;
        }

        /* 대시보드 컨테이너: 그리드 문제 해결을 위해 min-height 추가 */
        .mz-dashboard-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto auto; /* 행 높이 자동 */
            gap: 24px;
            width: 100%;
            min-height: 400px; /* 로딩 전에도 공간 확보 */
        }

        /* 개별 대시보드 카드 */
        .mz-dash-item {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 1);
            border-radius: 16px;
            padding: 30px;
            position: relative;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 10px 20px rgba(0,0,0,0.04);
            transition: all 0.4s ease;
            
            /* 가시성 보장 (GSAP 로드 실패 시에도 보임) */
            opacity: 1; 
            transform: translateY(0);
        }

        /* Hover 시 네온 테두리 효과 */
        .mz-dash-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 2px;
            background: linear-gradient(45deg, transparent, var(--mz-accent-cyan), var(--mz-accent-magenta), transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .mz-dash-item:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            z-index: 5;
        }
        .mz-dash-item:hover::before { opacity: 1; }

        /* 대시보드 내용 스타일 */
        .mz-dash-label {
            font-size: 0.75rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .mz-dash-label::before {
            content:''; width: 6px; height: 6px; background: var(--mz-accent-blue); border-radius: 50%;
        }

        .mz-dash-value {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--mz-text-main);
            line-height: 1.3;
        }

        /* 강조 텍스트 */
        .mz-dash-value.highlight {
            background: linear-gradient(90deg, var(--mz-accent-blue), var(--mz-accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
        }

        /* 그리드 배치 (반응형) */
        .span-2 { grid-column: span 2; }
        .span-4 { grid-column: span 4; }

        @media (max-width: 1024px) {
            .mz-dashboard-grid { grid-template-columns: repeat(2, 1fr); }
            .span-2 { grid-column: span 1; }
            .span-4 { grid-column: span 2; }
        }
        @media (max-width: 600px) {
            .mz-dashboard-grid { grid-template-columns: 1fr; }
            .span-2, .span-4 { grid-column: span 1; }
            .mz-title-lg { font-size: 2.2rem; }
        }

        /* Footer */
        .mz-footer {
            background: #0b0b14;
            color: #fff;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .mz-footer::before {
            content:''; position: absolute; top:0; left:0; width:100%; height:2px;
            background: linear-gradient(90deg, var(--mz-accent-cyan), var(--mz-accent-magenta));
        }
        .mz-contact-grid {
            display: flex; justify-content: space-around; flex-wrap: wrap; gap: 40px;
        }
        .mz-contact-item { text-align: center; }
        .mz-contact-label { color: var(--mz-accent-cyan); font-size: 0.8rem; margin-bottom: 8px; letter-spacing: 1px;}
        .mz-contact-text { font-size: 1.2rem; font-weight: 700; font-family: 'Orbitron', sans-serif;}



        
















        /* --- SCOPED CSS --- */
        .wirz-container {
            --c-bg: #f5f7fa;
            --c-text: #2c3e50;
            --c-accent-1: #00f2ff; /* Neon Cyan */
            --c-accent-2: #0051ff; /* Deep Electric Blue */
            --c-dark-bg: #0b0e14;
            --font-main: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            
            font-family: var(--font-main);
            background-color: var(--c-bg);
            color: var(--c-text);

            /* 🔹 세로 스크롤은 절대 안 쓰고, 레이아웃(body)만 스크롤 사용 */
            overflow-x: hidden;
            overflow-y: visible;
            height: auto;
            max-height: none;

            width: 100%;
            position: relative;
            line-height: 1.6;
        }

        .wirz-container * {
            box-sizing: border-box;
        }

        /* 1. Header Spacer */
        .wirz-header-spacer {
            width: 100%;
            height: 100px;
            background: linear-gradient(90deg, #020024 0%, #090979 35%, #00d4ff 100%);
            background-image: 
                linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,242,255,0.05) 10px, rgba(0,242,255,0.05) 20px);
            position: relative;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .wirz-header-spacer::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 2px;
            background: var(--c-accent-1);
            box-shadow: 0 0 10px var(--c-accent-1);
        }

        /* 2. Hero Section - 여백 축소 */
        .wirz-section {
            position: relative;
            padding: 40px 20px;
            width: 100%;
        overflow: visible; /* 혹시 다른 CSS에서 덮어쓴 게 있어도 내부 스크롤 안 생기게 */
        }

        .section-intro {
            background: radial-gradient(circle at 50% 50%, #ffffff 0%, #eef2f3 100%);
            text-align: center;
            min-height: 40vh; /* 높이 축소 */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            padding-bottom: 0;
        }

        .bg-grid {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: 
                linear-gradient(rgba(0, 81, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 81, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
        }

        .title-box { position: relative; z-index: 2; }

        .main-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--c-text) 30%, var(--c-accent-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            letter-spacing: -2px;
            text-transform: uppercase;
        }

        .sub-title {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 20px;
            font-weight: 500;
        }

        /* 3. Organization Chart Section - 여백 및 구조 최적화 */
        .section-org {
            background: linear-gradient(180deg, #eef2f3 0%, #ffffff 100%);
            /* 3D perspective 제거하여 렌더링 안정성 확보 (필요시 JS로 약하게 적용) */
            padding-top: 20px;
            padding-bottom: 60px;
        }

        .org-header {
            text-align: center;
            margin-bottom: 40px; /* 여백 축소 */
        }
        
        .org-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--c-dark-bg);
            display: inline-block;
            position: relative;
            margin: 0;
        }

        .org-chart-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            /* overflow hidden 제거하여 짤림 방지 */
        }

        /* Tree Structure Layout */
        .tree-level {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px; /* 레벨 간 간격 축소 */
            position: relative;
            z-index: 1;
        }

        /* Lines */
        .connector-vertical {
            position: absolute;
            top: 100%;
            left: 50%;
            width: 2px;
            height: 50px; /* 라인 길이 축소 */
            background: linear-gradient(to bottom, var(--c-accent-2), var(--c-accent-1));
            transform-origin: top;
            z-index: -1;
        }
        
        .connector-horizontal {
            position: absolute;
            top: -25px; /* 위치 조정 */
            height: 2px;
            background: var(--c-accent-1);
            z-index: -1;
            opacity: 0.6;
        }

        /* Org Card Default Style (안전하게 보이도록 기본값 설정) */
        .org-card {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 81, 255, 0.15);
            border-radius: 12px;
            padding: 20px 15px;
            width: 260px;
            text-align: center;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 81, 255, 0.08);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            z-index: 10;
        }

        .org-card:hover {
            transform: translateY(-5px);
            border-color: var(--c-accent-1);
            box-shadow: 0 10px 25px rgba(0, 242, 255, 0.2);
        }

        .org-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 3px;
            background: linear-gradient(90deg, var(--c-accent-2), var(--c-accent-1));
            border-radius: 12px 12px 0 0;
        }

        .icon-circle {
            width: 50px;
            height: 50px;
            margin: 0 auto 15px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid var(--c-accent-2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            position: relative;
            z-index: 2;
        }

        .role-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--c-dark-bg);
            margin-bottom: 4px;
        }
        
        .role-desc {
            font-size: 0.8rem;
            color: #888;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .team-list {
            list-style: none;
            padding: 10px 0 0 0;
            margin: 0;
            text-align: left;
            border-top: 1px solid #eee;
            font-size: 0.85rem;
        }

        .team-list li {
            padding: 2px 0 2px 12px;
            position: relative;
            color: #555;
        }

        .team-list li::before {
            content: '';
            position: absolute;
            left: 0; top: 10px;
            width: 4px; height: 4px;
            background: var(--c-accent-1);
            border-radius: 50%;
        }

        /* Special Cards */
        .org-card.ceo {
            width: 300px;
            border-color: var(--c-accent-2);
            box-shadow: 0 0 20px rgba(0, 81, 255, 0.15);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .tree-level.bottom-row {
                flex-wrap: wrap;
                gap: 20px;
            }
            .org-card { width: 45%; min-width: 200px; }
            .connector-horizontal { display: none; }
            .connector-vertical { display: none; } /* 모바일에서는 선 제거하여 깔끔하게 */
            
            /* 자문사 위치 리셋 */
            .tree-level.level-advisory {
                margin: 20px 0 !important;
                flex-direction: column;
                align-items: center;
            }
            .level-advisory .org-card {
                transform: none !important;
                margin: 0;
            }
        }

        @media (max-width: 600px) {
            .org-card { width: 100%; max-width: 320px; }
            .main-title { font-size: 2.2rem; }
            .wirz-section { padding: 30px 15px; }
        }
