/* =========================================================================================
 * [기본 설정 및 공통 레이아웃]
 * =========================================================================================*/

:root {
    --container-width: 1330px;
    --container-padding: 0 15px;
    --section-height: 100vh;
    --section-min-height: 960px;
    --point-gold: #cc9c5e;
}

.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: var(--container-padding); box-sizing: border-box; position: relative; }
.section { width: 100%; height: var(--section-height)!important; min-height: var(--section-height)!important; position: relative; overflow: hidden; }
.v_center { display: flex; flex-direction: column; justify-content: center; height: 100%; }

.m_only { display: none !important; }
.pc_only { display: flex !important; }
.gold{color:var(--point-gold)}

#fullpage {
    box-sizing: border-box;
}

/* ================메인페이지 시작======================= */
#main_content { flex: 1; }

/* --- 메인 비주얼 --- */
#main_visual { 
    position: relative;
    background: #000; 
    padding: 0 !important; 
    height: 100vh!important; /* 섹션 높이 고정 */
    width: 100%;
	background: #000 url('../img/main_visual.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

/* 멈춤 이미지와 영상 영역 일치화 */
.poster_bg,
.video_bg { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

/* 멈춤 이미지 */
.poster_bg { 
    background: url('../img/main_visual.jpg') no-repeat center center; 
    background-size: cover; 
    z-index: 1; 
}

/* 배경 영상 - 위아래 검정 띠(레터박스) 방지 및 잔상 제거 */
.video_bg { 
    z-index: 2; 
    pointer-events: none;
	background: #000 url('../img/main_visual.jpg') no-repeat center center !important;
    background-size: cover !important;
}

.video_bg iframe { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100vw; 
    height: 56.25vw; /* 16:9 비율 */
    min-height: 100vh; 
    min-width: 177.77vh; 
    transform: translate(-50%, -50%);
	object-fit: cover;
}

/* 암전 오버레이 */
.dim { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.4); 
    z-index: 3; 
}

#main_visual .container { 
    z-index: 4; 
    text-align: center; 
    color: #fff;
	justify-content: flex-end;
}

/* 텍스트 스타일 */
.visual_txt{bottom:10%; position: relative;}
.visual_txt .tit { 
    font-size: var(--font-size-xxl-5); 
    font-weight: var(--font-weight-300); 
    line-height: 1.1; 
    margin-bottom: 8px; 
}

.visual_txt .sub { 
    font-size: var(--font-size-l-2); 
    font-weight: var(--font-weight-300); 
    color: var(--point-gold); 
}



#program_step_wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
	display: flex;
    flex-direction: column; 
}

#program_step_wrap .bg_container {
    width: 100%;
    background: url("/img/program_step_bg.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

#program_step_wrap .inner_wrapper {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding:12vh 0px;
    position: relative;
    z-index: 10;
}

#program_step_wrap .program_step.row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 15px;
}

#program_step_wrap .program_step.row:nth-child(2){margin-bottom:0}
#program_step_wrap .program_step .title {
    width: 25%;
    text-align: right;
    padding-right: 40px;
    flex-shrink: 0;
}

#program_step_wrap .program_step .title h1 {
    color: #fff;
    font-size: var(--font-size-xl-1);
    font-weight: 700;
    line-height: 1.2;
	letter-spacing: 0;
	
}
#program_step_wrap .program_step .title h1.eng{color: var(--point-gold); font-weight: 300;}

#program_step_wrap .program_step .title .desc {
    color: #fff;
    font-size: var(--font-size-m-1);
    font-weight: 300;
    margin-top: 15px;
}

#program_step_wrap .program_step .box {
    width: calc(37.5% - 15px);
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#program_step_wrap .program_step .box.merge{width: calc(75% - 15px); align-items: center;}
#program_step_wrap .program_step .box.merge h4{font-size: var(--font-size-l-3);}

#program_step_wrap .program_step .box h4 {
    color: #fff;
    font-size: var(--font-size-l-1);
    font-weight: 600;
    line-height: 1.4;
	padding-bottom: 20px;
	letter-spacing: 1px;
}

#program_step_wrap .program_step .box p {
    color: #fff;
    font-size: var(--font-size-m-1);
    line-height: 1.6;
    font-weight: 200;
}
#program_step_wrap .program_step .box p .gold{font-weight:600;}
#program_step_wrap .program_step .box p .telegram_btn{border: 0; display: inline-block; box-sizing: border-box;}
#program_step_wrap .program_step .box p .telegram_btn img{border-radius: 10px; border: 1px solid #65bcee; box-sizing: border-box;}
#text_mask {
    position: relative;
    left: 0;
    width: 100%;
    z-index: 5;
    pointer-events: none;
	top: -9px;
}

#text_mask .text {
    font-size: calc(18px + 12vw);
    font-weight: 900;
    font-family: 'Pretendard', sans-serif;
    letter-spacing: -1.5px;
    line-height: 0.8;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: url("/img/text_mask.jpg") repeat-x;
    background-size: 100%;
    background-position: 0% 67%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: mask_moving 50s linear infinite;
}

gram_step_wrap .bg_container{height: 75vh;}
}
@keyframes mask_moving {
    0% { background-position-x: 0%; }
    100% { background-position-x: -1000px; }
}

@media screen and (min-width: 821px) {
    #fullpage [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
		pointer-events: auto !important;
		
    }
}



#program_slide_wrap{padding:var(--sub-padding-100);  display: flex; flex-direction: column; justify-content: space-between; }
#program_slide_wrap .title{ text-align: center}
#program_slide_wrap .title h4{ font-size: var(--font-size-l-1); font-weight:300;}
#program_slide_wrap .title h1{font-size: var(--font-size-xl-3);  font-weight:200; color:var(--black1); line-height: 1.4}
#program_slide_wrap .title h1 strong{font-weight:600}
#program_slide_wrap .title .sub_title{ font-size: var(--font-size-m-5); font-weight:300; color: var(--point-gold); margin-bottom: 10px}
#program_slide_wrap .program_slide{flex: 1; display: flex; align-items: center;width:100%; }
#program_slide_wrap .program_slide >div{}

#program_slide_wrap .program_slide .list_wrap{ position: relative; margin: 0 10px;  border-radius: 20px;}
#program_slide_wrap .program_slide .list_wrap .text_wrap{opacity:1; padding: 0 30px 0px; position: absolute;  z-index:10; text-align: left; transition: all .5s ease-out; bottom: 0px;  pointer-events: none; /* 클릭 이벤트 방해 금지 */}
#program_slide_wrap .program_slide .list_wrap.slick-current .text_wrap{opacity:1; bottom: 40px;}
#program_slide_wrap .program_slide .list_wrap .text_wrap .num{color:rgba(255,255,255,0.2); font-size: var(--font-size-xxl-2); font-weight:700; line-height: 20px; }

/*hover*/
#program_slide_wrap .program_slide .list_wrap:hover .text_wrap{bottom:40px; z-index: 10;}
#program_slide_wrap .program_slide .list_wrap:hover .text_wrap .desc{opacity: 1; display: block;}
#program_slide_wrap .program_slide .list_wrap:hover .img img{filter: brightness(40%);}

#program_slide_wrap .program_slide .list_wrap .text_wrap .title{color:#fff; font-size: var(--font-size-l-3); font-weight:700; padding-bottom: 20px; text-align: left}
#program_slide_wrap .program_slide .list_wrap .text_wrap p{ color: #fff;font-size: var(--font-size-m-2); font-weight:300;  margin: 0; padding: 0; line-height: 1.2; padding-bottom:8px; margin-left: 8px;}
#program_slide_wrap .program_slide .list_wrap .text_wrap p:before{content: '-'; margin-left: -10px; display: inline-block; margin-right: 5px}
#program_slide_wrap .program_slide .list_wrap .text_wrap .desc{opacity: 0; display: none; transition: all 1s ease; font-size: var(--font-size-s-2); font-weight:200; line-height: 1.2} 
#program_slide_wrap .program_slide .list_wrap.slick-current .text_wrap .desc{opacity: 1; display:block;}
#program_slide_wrap .program_slide .list_wrap .text_wrap span{ font-size: var(--font-size-s-2); font-weight:300; color:#999; line-height: 1.2; display: block; margin-top:5px;}
#program_slide_wrap .program_slide .list_wrap .img img{width:100%; transition: all 1s ease; filter: brightness(50%); object-fit: cover}



#program_slide_wrap .program_slide .img {
    position: relative; /* ::after의 기준점 */
    overflow: hidden;
    border-radius: 20px;
	width: 100%;
	height: 60vh;
	max-height: 65vh;
	min-height: 400px;

}

#program_slide_wrap .program_slide .img::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.5); 
	opacity: 1;
    z-index: 1; /* 이미지보다는 높고 텍스트보다는 낮게 */
    transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1); 
	filter: none;
}

/* 3. 가운데 선택된 카드(.slick-center)는 이미지를 밝게(딤 제거) */
#program_slide_wrap .program_slide .slick-center .img::after {
    opacity: 0;
    
}

#program_slide_wrap .program_slide .is-active .img::after {
    opacity: 0 !important;
}
#program_slide_wrap .program_slide .slick-cloned .img::after{transition: opacity 0.6s ease !important;}
#program_slide_wrap .program_slide .slick-center .img::after,
#program_slide_wrap .program_slide .slick-current .img::after {
    opacity: 0 !important;
}
#program_slide_wrap .program_slide .slick-cloned .img::after {
    transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}




#trading_pnl{background: #f4f4fa;display: flex; align-items: center; justify-content: center; flex-direction: column;}
#trading_pnl .container{ padding: var(--sub-padding-100); }
#trading_pnl .title_wrap {text-align: center}
#trading_pnl .title_wrap h1{font-size: var(--font-size-xl-3); font-weight: 700; color: var(--black1); }
#trading_pnl .title_wrap h4{font-size: var(--font-size-m-5);margin-bottom: 0px; }
#trading_pnl .chart_box{ background: #fff; padding: 50px 24px; border-radius: 20px}

#trading_pnl .chart_footer{margin:10px 20px 0; display: flex; color: #888; justify-content: space-between;}
#trading_pnl .chart_footer .legend { display: flex; gap: 20px; font-weight: 600; font-size: 18px; color: #444; }
#trading_pnl .chart_footer .legend span { display: flex; align-items: center;  color:  #82d616;}
#trading_pnl .chart_footer .legend span:nth-child(2){color:#17adff}
#trading_pnl .chart_footer .legend span:nth-child(3){color:#ea0606}
#trading_pnl .chart_footer .legend .dot { width: 16px; height: 16px; border-radius: 3px; margin-right: 8px; }
/* 이미지의 컬러값 추출 적용 */
.dot.core { background: #82d616; }
.dot.flow { background: #17adff; }
.dot.fire { background: #ea0606; }

/* ================메인페이지 끝=============================================================================== */


/* ================회사소개 시작=============================================================================== */
#about_visual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-dark);
}
#about_visual .v_center{display: flex;
    flex-direction: column;
    justify-content: center;
   height: auto !important; 
    display: block !important;
}
#about_visual .poster_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/about_visual.jpg') no-repeat center / cover;
    z-index: 1;
    animation: mv-bg-change 10s infinite ease-in-out;
}

#about_visual .fp-tableCell {
    display: flex !important;
    align-items: center;    /* 수직 중앙 */
    width: 100%;
}
_visual .dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

#about_visual .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

#about_visual .visual_txt {
    text-align: left;
    color: var(--text-white);
}



#about_visual .visual_txt h1 {
    font-size:var(--font-size-xxl-3);
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.02em;
	margin-left:3%
}

#about_visual .visual_txt h2 {
    font-size: var(--font-size-xxl-2);
    line-height: 1.4;
    font-weight: 200;
    color:#d6cfc6;
    margin-top: -5px;
}

#about_visual .visual_txt h3 {
    font-size:var(--font-size-xxl-1);
    margin-bottom: 10px;
    font-weight: 400;
	color:#796c5c;
	margin-left:10%;
}
#about_visual .visual_txt .desc {
    margin-top: 80px;
    font-size: var(--font-size-m-3);
    line-height: 1.6;
    color: var(--text-white);
    font-weight: 200;
    letter-spacing: -0.03em;
}

#about_visual .visual_txt .desc strong {
    font-weight: 600;
}

@keyframes mv-bg-change {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


#about_who {
    position: relative;
    background: #000;
    overflow: hidden; /* 데코 텍스트가 화면 밖으로 나가는 것 방지 */
}

#about_who .who_txt {
    text-align: center;
    color: #fff;
    z-index: 5;
    position: relative;
	font-size:var(--font-size-m-3);
	font-weight:200;
	line-height: 1.8
}


#about_who .v_line {
    width: 1px;
    height: 80px;
    background:var(--point-gold);
    margin: 50px auto;
}

#about_who .deco_wrap {
    position: absolute;
    top: 85%;
    right: 0px;
    z-index: 1;
    pointer-events: none;
	bottom:0
}

/* 개별 데코 텍스트 */
#about_who .deco_item {
    font-size: 180px;
    font-weight: 500;
    /* 2. <br>로 나뉜 두 줄이 겹치지 않게 행간을 살짝 줍니다. */
    line-height: 0.8; 
    color: rgba(255, 255, 255, 0.05);
    white-space: nowrap;

    /* 3. [핵심] 오른쪽 중앙(100% 50%)을 축으로 90도 회전 */
    /* 이렇게 하면 글자 박스의 오른쪽 면이 화면 끝에 자석처럼 딱 붙습니다. */
    transform-origin: right center;
	transform: rotate(90deg) translateY(50%);
    
    /* 글자 정렬 */
    text-align: right;
	letter-spacing: 5px;
}

#about_who .deco_item span{font-size:220px}
/* 텍스트 디테일 */
#about_who h2 { font-size: var(--font-size-xxl-3); margin-bottom: 0px;  letter-spacing: 0.5px}
#about_who h3 { font-size: var(--font-size-xl-2); margin: 40px 0; font-weight:700 }
#about_who .point_txt { margin: 40px 0; font-weight:300}


/* --- Trading Strategies Section --- */
#trading_strategies {
    position: relative;
    background: #fff;
    overflow: hidden; 
    box-sizing: border-box;
	
}
#trading_strategies .fp-tableCell, #philosophy .fp-tableCell{
	
	display: flex ;
    align-items: center;
	justify-content: center;
	 min-height: 100vh; 
}

/* [배경] CORE, FLOW, FIRE 데코 */
#trading_strategies .bg_deco_wrap {
    position: absolute;
    left: 0px;
    z-index: 1;
    pointer-events: none;
    user-select: none;
	bottom:0
}

#trading_strategies .bg_txt {
    font-family: var(--font-ivy); /* 지정하신 Ivy 폰트 변수 적용 */
    font-size: 200px;
    font-weight: 500;
    line-height: 0.75;
    color: rgba(0, 0, 0, 0.02);
    text-transform: uppercase;
    letter-spacing: 0px;
    white-space: nowrap;
}
#trading_strategies .bg_txt:nth-child(2){margin-left: 10%}
#trading_strategies .bg_txt:nth-child(3){margin-left: 50%}

/* [컨텐츠] 중앙 텍스트 영역 */
#trading_strategies .strategy_inner {
    position: relative;
    z-index: 5;
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--container-width); /* 컨테이너 변수 적용 */
    text-align: center;
    box-sizing: border-box;
}

#trading_strategies h2.serif_title {
    font-family: var(--font-ivy); /* 지정하신 Ivy 폰트 변수 적용 */
    font-size: var(--font-size-xxl-3);
    color: var(--point-gold);
    font-weight: 500;
}

#trading_strategies .v_line {
    width: 1px;
    height: 80px;
    background: var(--point-gold);
    margin: 50px auto;
    opacity: 0.6;
}

#trading_strategies .strategy_desc {
    color: #222;
    line-height: 1.8;
}

#trading_strategies .desc_top {
    font-size: var(--font-size-m-3);
    font-weight: 300;
    margin-bottom: 40px;
}

#trading_strategies .desc_bottom {
    font-size: var(--font-size-m-3);
    font-weight: 300;
}

#trading_strategies .highlight_txt {
    display: block;
    color: var(--point-gold);
    font-size: var(--font-size-l-3);
    font-weight: 600;
}

/* Investment Philosophy 섹션 */
#philosophy { background: #f5f3f0;  position: relative; }
#philosophy .title_wrap { text-align: center; margin-bottom: 80px; }
#philosophy .title_wrap h2 { font-size: var(--font-size-xxl-3); color: #222; }

.philosophy_wrap { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* 카드 공통 */
.philo_card { 
    width: calc(33.33% - 15px); 
    height: 430px; 
    border: 1px solid #cc9c5e; 
    border-radius: 20px; 
    padding: 50px 30px; 
    
    /* [빨간 선] 타이틀 시작 위치를 모든 카드에서 동일하게 고정 */
    padding-top: 200px; 
    
    box-sizing: border-box; 
    display: flex; 
    flex-direction: column; 
    /* justify-content: flex-end; 대신 아래 txt_box 설정을 사용합니다 */
    position: relative; 
    transition: all 0.3s ease;
}

.philo_card .icon_box { position: absolute; top: 40px; right: 40px; width: 100px; height: 100px; padding-bottom: 0%; border-radius:50%;  background: var(--point-gold); display: flex; align-items: center; justify-content: center;}
.philo_card .icon_box img { width: 90%; }

/* [핵심] 텍스트 박스: 빨간 선과 파란 선을 맞추는 공간 제어 */
.philo_card .txt_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 위(타이틀 시작)와 아래(본문 끝)로 찢음 */
    
    /* [파란 선] 타이틀부터 본문 끝까지의 전체 높이를 고정 (시안에 맞춰 조정 가능) */
    height: 200px; 
    width: 100%;
}

.philo_card .txt_box h4 { 
    font-size: var(--font-size-l-3); 
    font-weight: 600; 
    line-height: 1.3; 
    margin-bottom: 0; /* 정렬을 위해 마진 제거 */
    color: #cc9c5e; /* 베이스 컬러 반영 */
}

.philo_card .txt_box p { 
    font-size: var(--font-size-m-2); 
    color: #222; 
    line-height: 1.6; 
    font-weight: 300; 
    margin-bottom: 0;
	letter-spacing: -0.5px;
}

/* 3번째 카드 강조색 */
.philo_card.active { background:var(--point-gold); border-color: var(--point-gold); }
.philo_card.active .txt_box h4 { color: #fff; }
.philo_card.active .txt_box p { color: #fff; }
.philo_card.active .icon_box{background:#fff}


	
/* ================회사소개 끝=============================================================================== */

/* ================트레이딩 시작=============================================================================== */

#trading_visual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-dark);
}
#trading_visual .v_center{display: flex;
    flex-direction: column;
    justify-content: center;
   height: auto !important; 
    display: block !important;
}
#trading_visual .poster_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/trading_bg.jpg') no-repeat center / cover;
    z-index: 1;
    animation: mv-bg-change 10s infinite ease-in-out;
}

#trading_visual .fp-tableCell {
    display: flex !important;
    align-items: center;    /* 수직 중앙 */
    width: 100%;
}
#trading_visual .dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

#trading_visual .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

#trading_visual .visual_txt {
    text-align: left;
    color: var(--text-white);
}



#trading_visual .visual_txt h1 {
    font-size:var(--font-size-xxl-3);
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.02em;
}

#trading_visual .visual_txt h2 {
    font-size: var(--font-size-xxl-2);
    line-height: 1.4;
    font-weight: 200;
    color:#d6cfc6;
    margin-top: -5px;
}

#trading_visual .visual_txt h3 {
    font-size:var(--font-size-xxl-1);
    margin-bottom: 10px;
    font-weight: 400;
	color:#796c5c;
}
#trading_visual .visual_txt .desc {
    margin-top: 80px;
    font-size: var(--font-size-m-3);
    line-height: 1.6;
    color: var(--text-white);
    font-weight: 200;
    letter-spacing: -0.03em;
}

#trading_visual .visual_txt .desc strong {
    font-weight: 600;
}

@keyframes mv-bg-change {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

#strategic_entry {
    position: relative;
    background: #000;
    overflow: hidden; /* 데코 텍스트가 화면 밖으로 나가는 것 방지 */
}

#strategic_entry .who_txt {
    text-align: center;
    color: #fff;
    z-index: 5;
    position: relative;
	font-size:var(--font-size-m-3);
	font-weight:200;
	line-height: 1.8
}


#strategic_entry .v_line {
    width: 1px;
    height: 80px;
    background:var(--point-gold);
    margin: 50px auto;
}

#strategic_entry .deco_wrap {
    position: absolute;
    top: 85%;
    right: 0px;
    z-index: 1;
    pointer-events: none;
	bottom:0
}

/* 개별 데코 텍스트 */
#strategic_entry .deco_item {
    font-size: 180px;
    font-weight: 500;
    /* 2. <br>로 나뉜 두 줄이 겹치지 않게 행간을 살짝 줍니다. */
    line-height: 0.8; 
    color: rgba(255, 255, 255, 0.05);
    white-space: nowrap;

    /* 3. [핵심] 오른쪽 중앙(100% 50%)을 축으로 90도 회전 */
    /* 이렇게 하면 글자 박스의 오른쪽 면이 화면 끝에 자석처럼 딱 붙습니다. */
    transform-origin: right center;
	transform: rotate(90deg) translateY(50%);
    
    /* 글자 정렬 */
    text-align: right;
	letter-spacing: 5px;
}

#strategic_entry .deco_item span{font-size:220px}
/* 텍스트 디테일 */
#strategic_entry h2 { font-size: var(--font-size-xxl-3); margin-bottom: 0px;  letter-spacing: 0.5px; line-height: 1.4}
#strategic_entry h3 { font-size: var(--font-size-xl-2); margin: 40px 0; font-weight:700 }
#strategic_entry .point_txt { margin: 40px 0; }


/* Trading Advantage */
#trading_advantage { 
    background: var(--text-white); 
    position: relative; 
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 화면 전체 높이를 확보해야 세로 센터 기준이 생깁니다 */
}

/* 배경 거대 타이틀 */
#trading_advantage .bg_tit_wrap { 
    position: absolute; 
    z-index: 1;
    text-align: center;
    /* 상단 여백은 변수로 적절히 유지 */
	top:0; left:0;
	width:100%;
}

#trading_advantage .bg_tit_wrap h2 { 
    font-size: 7.2vw; 
    color: var(--point-gold); 
    white-space: nowrap; 
    line-height: 0.8;
}

/* [핵심] 타이틀 제외 남은 높이를 꽉 채우고 자식을 세로 중앙 정렬 */
#trading_advantage .container {
    flex: 1; 
    display: flex;
    align-items: center; /* [세로 정렬] 이게 진짜 요청하신 세로 센터입니다 */
    justify-content: center;
    width: 100%;
	height: 100vh;
	margin-top: 2%;
}

/* 리스트 레이아웃 */
.adv_list { 
    position: relative; 
    z-index: 10; 
    width: 100%;
    max-width: var(--container-width); 
    /* [수정] margin: 100px를 제거해야 정확한 세로 센터가 잡힙니다 */
    margin: 0 auto; 
    color: #222;
}

.adv_item { 
    display: flex; 
    align-items: flex-start; 
    gap: 50px; 
    margin-bottom: 90px; 
}
.adv_item:last-child { margin-bottom: 0; }

/* 넘버링 및 텍스트 영역 */
.adv_item .num { 
    font-size: var(--font-size-xxl-2); 
    font-weight: 700; 
    line-height: 1; 
    padding-top: 5px;
    color: var(--point-gold);
}

.adv_item .txt_box h3 { 
    font-size: var(--font-size-m-5); 
    font-weight: 700; 
    color: var(--black1); 
    margin-bottom: 5px; 
}

.adv_item .txt_box .desc { 
    font-size: var(--font-size-m-3); 
    color: #000; 
    line-height: 1.56; 
    color: var(--black1); 
    word-break: keep-all;
	font-weight:300;
}




/* 트레이딩 표 */
/* [PC] Strategy Models 섹션 */
#strategy_models { 
    background: #f5f3f0;
    padding: 0px 0; 
   display: block;
	color: #000;
}
#strategy_models .fp-tableCell{display: flex;align-items: center;}

/* 타이틀 정렬 */
#strategy_models .title_wrap { 
    text-align: center; 
    margin-bottom: 40px; 
}
#strategy_models .title_wrap h2{font-size: var(--font-size-xxl-2);}

/* 1. 테이블 본체 - 흰색 배경과 골드 테두리 */
#strategy_models .model_table { 
    width: 100% !important; 
    border-collapse: collapse; 
    background: #fff;
    table-layout: fixed;
    border: 1px solid var(--point-gold);
    margin: 0 auto;
}

/* 2. 테이블 헤더 (CORE, FLOW 등) - 골드 배경 / 흰색 글씨 */
#strategy_models .model_table thead th { 
    background: var(--point-gold); 
    color: #fff; 
    padding: 20px 8px; 
    font-size: var(--font-size-m-4); 
    border-right: 1px solid rgba(255, 255, 255, 0.4);
	font-weight:500;
	
}
#strategy_models .model_table thead th:last-child { border-right: none; }

/* 3. 테이블 모든 셀 - 테두리선 확실하게 (#ccc) */
#strategy_models .model_table td { 
    padding: 20px 8px; 
    text-align: center; 
    border-bottom: 1px dashed #f1ede9; /* 가로선 */
    border-right: 1px solid var(--point-gold);  /* 세로선 */
    font-size: var(--font-size-m-3); 
    color: #000;
    line-height: 1.5;
	font-weight:500;
}
#strategy_models .model_table tr.last td:not(.attr){font-size: var(--font-size-m-1); font-weight:300}
#strategy_models .model_table tr:nth-child(1) td:not(.attr) { font-weight: 300; }

/* 4. 왼쪽 항목명 열 (손익비 등) - 연한 배경 / 골드 글씨 */
#strategy_models .model_table td.attr { 
    background: #fdfaf5 ; 
    color: var(--point-gold) ; 
    font-weight: 500; 
    width: 22%; 
}

/* 5. 강조 수치 컬러 (파랑/빨강) */
#strategy_models .model_table td strong {font-weight: 700; color: #000; }
#strategy_models .model_table td.blue { color: #0917da; }
#strategy_models .model_table td.red { color: #ee0000; font-weight: 700; font-size :var(--font-size-m-4)}

/* 마지막 라인 정리 */
#strategy_models .model_table tr:last-child td { border-bottom: none; }
#strategy_models .model_table td:last-child { border-right: none ; }

/* 하단 안내 문구 */
.table_notice { 
    margin-top:10px; 
    font-size: var(--font-size-s-4); 
    color: #666; 
    text-align: left;
	font-weight:300;
}

/* ================트레이딩 끝=============================================================================== */


/* ================CS FORM 시작=============================================================================== */
/* 컨테이너 및 배경 */

#form_wrap {
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
    display: block !important;
    position: relative; /* 헤더 고정 문제 방지 */
}
#contract_container {
    height: auto !important;
    min-height: 100vh;
    padding: var(--sub-padding-150);
    overflow: visible !important;
    background: #000;
    position: relative; /* 헤더 고용 문제 방지 */
    z-index: 1; /* 본문이 헤더 위로 올라오지 않게 */
}

.inner_800 {
    max-width: 800px;
    margin: 0 auto;
}

/* 타이틀 디자인 */
.title_area {
    text-align: center;
    margin-bottom: 50px;
}

.title_area h1{font-size: var(--font-size-xxl-3);}

.sub_title {
    color: #fff;
    font-size: var(--font-size-l-2);
    letter-spacing: -1px;
    font-weight: 400;
}

/* 화이트 카드 */
.form_card {
    background: #fff;
    border-radius: 20px;
    padding: 120px 50px;
    position: relative;
    z-index: 2;
}

.input_group {
    display: flex;
    align-items: flex-start; /* [교정] 인풋 하단 문구를 위해 상단 정렬 */
    margin-bottom: 25px; /* 20px -> 25px로 미세 조정 */
    gap: 30px;
}

.input_group label {
    width: 20%;
    font-size: var(--font-size-m-2);
    font-weight: 600;
    color: #000;
    text-align: right;
    padding-top: 10px; /* 인풋 높이에 맞춰 중앙 정렬 */
	 height: 41px;
}

/* 인풋 박스 내부 레이아웃 */
.input_box {
    flex: 1;
    display: flex;
    flex-direction: column; /* [교정] 세로 정렬: 인풋 -> 하단 문구 */
    gap: 8px; /* 인풋과 하단 문구 사이 간격 */
    align-items: flex-start; /* 왼쪽 정렬 유지 */
}

.input_box input {
    width: 100%;
    border: 1px solid #000;
    padding: 10px 15px;
    font-size: var(--font-size-s-3);
    border-radius: 0;
    font-weight: 400;
    color: #000;
    box-sizing: border-box; /* [추가] 패딩으로 인한 너비 튀어나옴 방지 */
}



/* 폰번호/이메일 분할 로우 */
.input_row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

/* [교정] 분할 인풋 개별 너비 - flex:1로 부모 너비에 맞춰 균등 배분 */
.in_phone {
    flex: 1; /* [수정] 고정폭 85px 해제 후 부모 너비 등분 */
    text-align: center;
    min-width: 0; /* flex 박스 찌그러짐 방지 */
}

.in_email {
    flex: 1; /* [수정] 고정폭 150px 해제 */
    min-width: 0;
}

.sel_domain {
    flex: 1; /* 도메인 선택창도 너비 등분 */
    height: 41px; /* 원본 input 높이에 맞춰 미세 조정 */
    border: 1px solid #000;
    font-size: var(--font-size-s-3);
    background: #fff;
    padding: 0 5px;
    box-sizing: border-box;
}

.sep {
    font-weight: 600;
    color: #000;
    flex-shrink: 0; /* 하이픈이 좁아지지 않게 고정 */
}

/* [교정] 안내 문구 포인트 컬러 및 왼쪽 정렬 */
.desc_text {
    margin: 0;
    font-size: var(--font-size-s-2);
    color: #c58d48; /* 이미지 포인트 컬러 */
    font-weight: 500;
    letter-spacing: -0.5px;
    text-align: left;
    width: 100%;
}

/* 하단 안내 텍스트 영역 */
.info_text_area {
    padding: var(--sub-padding-100);
    text-align: center;
    font-size: var(--font-size-m-1);
    line-height: 1.8;
    color: #000;
    font-weight: 300;
}
.info_text_area p{margin-bottom: 5px;}

/* VIP 섹션 - 중앙 정렬 유지 */
.vip_discount_section {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 0px;
}

.guide_txt {
    text-align: center;
    color: #000;
    font-size: var(--font-size-m-2);
    margin-bottom: 20px;
    font-weight: 300;
}

.vip_link_card {
    border: 1px solid #000;
    padding: 40px 0;
    text-align: center;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center; /* [추가] 내부 요소들 수평 중앙 정렬 */
}

.vip_link_card h3 {
    color: var(--point-gold);
    font-size: var(--font-size-l-1);
    margin-bottom: 30px;
    font-weight: 600;
}

.link_item {
    margin-bottom: 12px;
    display: flex;
    justify-content: center; /* [추가] 복사 버튼 포함 중앙 정렬 */
    align-items: center;
    width: 100%;
    font-size: var(--font-size-m-1);
    font-weight: 300;
}
.link_item span { text-align: left; }

.copy_btn {
    background: #d8a673;
    color: #fff;
    border: none;
    padding: 5px 10px;
    margin-left: 15px;
    font-size: var(--font-size-s-1);
    border-radius: 3px;
    cursor: pointer;
}

.bottom_notice {
    text-align: center;
    font-size: var(--font-size-s-3);
    color: #333;
    margin-top: 30px;
    line-height: 1.6;
}

/* 제출 버튼 중앙 정렬 교정 */
.form_submit_area {
    text-align: center;
    width: 100%;
    margin-top: 0px;
}

.main_submit_btn {
    display: inline-block; /* [수정] block -> inline-block으로 변경하여 중앙 정렬 보정 */
    width: 80%;
    background: var(--point-gold);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: var(--font-size-m-4);
    font-weight: 500;
}


/* 이메일 로우 전체 설정 */
.email_row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

/* 1. 이메일 입력칸: 가로 사이즈 더 축소 */
.in_email_id {
    flex:1.5 !important; /* 아이디 입력창 비중 축소 */
    min-width: 0;
}

/* 2. 도메인 선택 영역: 더 넓게 배분 */
#email_domain_wrap {
    flex: 1.3 !important; /* 도메인 선택창 비중 확대 */
    display: flex;
}

/* 3. 높이 완벽 일치 보정 */
.in_email_id, 
.sel_domain, 
.in_email_direct {
    height: 45px !important; /* 높이 강제 고정 */
    line-height: 43px !important; /* 텍스트 수직 중앙 정렬 (보더 제외 높이) */
    border: 1px solid #000;
    padding: 0 15px;
    font-size: var(--font-size-s-3);
    box-sizing: border-box; /* 패딩과 보더를 높이에 포함시켜 단차 방지 */
    vertical-align: middle; /* 요소 간 수직 기준선 일치 */
    margin: 0 !important;
}

/* 도메인 선택/직접입력창 래퍼 */
#email_domain_wrap {
    flex: 1.3 !important;
    display: flex;
    align-items: center; /* 내부 요소 수직 중앙 정렬 */
}

/* 직접입력 인풋창이 래퍼를 꽉 채우도록 설정 */
.in_email_direct {
    width: 100% !important;
}

/* 골뱅이(@) 기호 수직 위치 미세 조정 */
.sep {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    line-height: 1;
    flex-shrink: 0;
    padding: 0 2px;
}
/* [나중에 숨기고 싶을 때만 주석 해제] */
.vip_discount_section { display: none; }


.input_group select {
    width: 100% !important; /* 가로 꽉 채우기 */
    height: 45px;          /* 다른 인풋창 높이와 맞춰주세요 (보통 45~50px) */
    padding: 0 15px;
    border: 1px solid #000;
    background: #fff;
    font-size: var(--font-size-s-3);
    border-radius: 0;      /* 디자인 컨셉에 따라 조정 */
    appearance: none;      /* 브라우저 기본 화살표 제거(선택사항) */
    -webkit-appearance: none;
	 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23bbbbbb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center; /* 오른쪽에서 15px 띄우기 */
    background-size: 15px;
	color:#000;
	
}

.input_group select:invalid {
    color: var(--color-placeholder) !important;
    font-size: var(--fz-placeholder) !important;
}

/* 2. 항목을 하나라도 선택했을 때 - 닫혀 있을 때 보이는 글자색 */
.input_group select:valid {
    color: #000 !important; /* 실제 텍스트 컬러 (검정색 등) */
    
}

/* 3. 클릭해서 목록이 펼쳐졌을 때, 아래 나올 옵션들의 글자색 */
.input_group select option {
    color: #000;      /* 목록은 가독성을 위해 검정색으로 유지 */
    background: #fff;
	padding: 50px 0
}

/* 4. 목록이 열렸을 때 '타입을 선택해주세요'는 안 보이게 처리 (깔끔함) */
.input_group select option[value=""] {
    display: none;
}
/* ================CS FORM 끝=============================================================================== */

#footer {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0;
    margin-top: auto;
}



/* 1. 풋터 섹션 높이 강제 고정 해제 */
#fullpage .section.fp-auto-height,
#fullpage .section.fp-auto-height #footer {
    height: auto !important;
    min-height: 100px !important;
    background: #1a1a1a !important; /* 배경색 유지 */
    display: block !important;
}

/* 2. [핵심] 라이브러리가 만든 내부 박스(테이블 셀) 무력화 */
/* 풋터 안의 내용이 상단에 짱박히거나 중앙에 끼는 현상을 해결합니다 */
#fullpage .section.fp-auto-height .fp-tableCell,
#fullpage .section.fp-auto-height .fp-table {
    height: auto !important;
    display: block !important;
    vertical-align: top !important; /* 상단 정렬로 강제 */
}

/* 3. 풋터 내부 컨테이너 정렬 및 패딩 */
#footer {
    padding: 60px 0 !important; /* 풋터 위아래 여백 */
    color: #fff;
}

#footer .container {
    max-width: var(--container-width); /* 디자이너님 사이트 컨테이너 폭에 맞추세요 */
    margin: 0 auto;
    text-align: left; /* 왼쪽 정렬 유지 */
	display: flex;
	align-items: center;
    justify-content: space-between;
}

footer ul li{font-size: var(--font-size-s-3);font-weight: 300; padding: 0px 20px 0 0; color: #a3a3a3; text-decoration: none;}
footer .info_wrap{display:inline-flex; margin:0px 0 0; flex-direction: row; align-items: center;}
footer .copy{color: #6a6a6a;font-weight: 300;  font-size: var(--font-size-s-1);}


/* =========================================================================================
 * [반응형 작업 구역]
 * =========================================================================================*/
@media (min-width: 2000px) {
	#program_step_wrap .bg_container{height: 75vh!important}
	
}
@media (min-width: 1025px) {
	#program_step_wrap .fp-tableCell{
		display: flex;
		place-content: space-around flex-start;
		flex-direction: column;
		align-items: center;
	}
	#trading_pnl .fp-tableCell{
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 100vh;
	}
	#program_step_wrap .bg_container{height: 80vh;}
	#text_mask{height: 15vh;}
}

/* 테블릿 및 작은 모니터 (1280px) */
@media (max-width: 1280px) {
	
	#program_step_wrap .program_step.row{margin: 0 20px 15px;}
}

/* 1025px ~ 1280px 구간 (태블릿 가로/노트북) 전용 */
@media screen and (min-width: 1025px) and (max-width: 1280px) {

	.section{padding-top:0!important; padding-bottom: 0!important}
	#about_who .fp-tableCell, #trading_strategies .fp-tableCell, #philosophy .fp-tableCell{display: flex; align-items: center; justify-content: center;}
	
	#about_visual .visual_txt, #trading_visual .visual_txt{margin-left: 50px;}
	#about_visual .poster_bg, #trading_visual .poster_bg{background-position: 73% 120% !important; background-size: auto 96% !important; background-color: #000;}
	#trading_pnl .container{width:calc(100% - 60px); margin:0 30px;}
	#trading_pnl .container img{width:100%}
}

/* 작은 테블릿 및 가로 모바일 (1024px) */
@media (max-width: 1024px) {
	
	#fullpage{position: relative}
	#main_visual.section { 
        height: 100vh !important; 
        min-height: 100vh !important; 
        padding: 0 !important; 
    }
    
    .section { min-height: auto; height: auto; padding: 0; }
    .main_visual { height: 600px; }
    .video_bg { width: 100%; height: 100%; }
	#main_visual .video_bg iframe {
        width: 177.77vh; /* 세로가 긴 화면에서도 좌우가 비지 않도록 너비 증폭 */
        height: 100vh;
        min-width: 100vw;
    }
	
	#program_step_wrap .program_step .box{padding:40px 25px; width:calc(35% - 20px);}
	#program_step_wrap .program_step .title{width:calc(30% - 20px); padding-right: 2%}
	#program_step_wrap .program_step .title h1{line-height: 1.26}
	
	
   
}

@media (min-width: 821px) and (max-width: 1024px) {
	.section{display: flex; align-items: center; }
	footer .info_wrap{display: block}
	
	/*=========================메인 시작/*===============================================*/
	#text_mask{top:-5px}
	#program_step_wrap{padding:0}
	#program_slide_wrap{padding-top:0}
	#program_slide_wrap .program_slide.mt_40{margin-top:0}
	
	.program_step.row {
        display: flex !important;
        flex-wrap: nowrap !important; /* 1024까지는 가로 유지 */
        gap: 15px !important;
        align-items: stretch !important;
        margin-bottom: 40px !important;
    }
	
	#trading_pnl .container{width:calc(100% - 40px); margin:20px}
	#trading_pnl .container img{width:100%}
	
	
	
	/*=========================메인 끝==============================================*/
	
	
	/*=========================회사소개 시작==============================================*/
     #about_visual .poster_bg,
    #trading_visual .poster_bg,
    #main_visual .poster_bg {
        /* 0%에 가까울수록 왼쪽으로 붙습니다. 더 당기려면 -10% 식으로 음수를 사용하세요. */
        background-position: 75% center; 
        background-size: cover !important;
        /* 확대 애니메이션 시 기준점을 왼쪽으로 고정 */
        transform-origin: left center;
    }

    /* 2. 텍스트 그룹 세로 중앙 정렬 */
    #about_visual, 
    #trading_visual, 
    #main_visual {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; /* 세로 방향 중앙 */
        height: 100vh !important;
        position: relative !important;
    }

    /* 2. 텍스트 박스: 위치값 초기화 및 여백 설정 */
    #about_visual .visual_txt,
    #trading_visual .visual_txt{
        position: relative !important;
        bottom: auto !important; /* 아래에 고정된 것 해제 */
        top: auto !important;
        padding-left: 50px !important; /* 태블릿 왼쪽 패딩 */
        margin: 0 !important;
        transform: none !important;
        width: 100% !important;
    }
	

   
     header, #header, .header {
        position: absolute !important; /* absolute 유지 */
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        
        /* 핵심: 라이브러리가 강제로 고정시키는 모든 좌표 계산 무력화 */
        transform: none !important; 
        transition: none !important;
        
        /* z-index가 너무 높으면 다른 섹션 위로 계속 보일 수 있으니 조정 */
        z-index: 10 !important; 
    }
	.section:not(:first-of-type) header,
    .section:not(:first-of-type) #header {
        display: none !important;
    }
	#strategy_models .model_table td strong{display:block}

}
/* 모바일 (820px) */

@media (max-width: 820px) {
	.pc_only{display: none !important;}
	.m_only{display: block!important;}
	.section { min-height: auto; height: auto; padding: var(--sub-padding-150); }
	
    /* html과 body의 모든 잠금을 강제로 부숩니다 */
    html, body {
        overflow-y: auto !important;
        overflow-x: hidden !important;
        height: auto !important;
       
        touch-action: auto !important; 
        -webkit-overflow-scrolling: touch !important;
    }

    /* 풀페이지 관련 모든 레이어의 터치 잠금을 해제 */
    #fullpage, .section, .fp-section, .fp-tableCell, .fp-table {
        height: auto !important;
        min-height: auto !important;
        display: block !important;
        transform: none !important;
        touch-action: auto !important;
        position: relative !important;
    }

    /*  중요: 영상 레이어가 터치를 가로채지 못하게 방어 */
    .video_bg {
        pointer-events: none !important; 
    }
    
    #main_visual.section {
        height: 560px !important; /* 고정 px로 영상 꿀렁임 방지 */
        min-height: 560px !important;
        pointer-events: auto !important; /* 배경은 터치 가능하게 */
    }
	
	.visual_txt .tit { 
		font-size: var(--font-size-xxl-3)
	}
	.visual_txt .sub {
		font-size: var(--font-size-m-1)
		
	}
	
	#program_step_wrap{ height: auto; padding: 0 }
	#program_step_wrap .bg_container{  background-size:cover }
	#program_step_wrap .inner_wrapper{padding:var(--sub-padding-150) }
	#program_step_wrap .program_step{overflow-x: hidden}
	#program_step_wrap .program_step.row{margin:0}
	#program_step_wrap .program_step .title{width:100%; text-align: center; margin-bottom:0px; padding-bottom:15px; padding-right: 0}
	#program_step_wrap .program_step .title .desc{font-size: var(--font-size-m-2); margin:10px 0 15px}
	#program_step_wrap .program_step .box, #program_step_wrap .program_step .box.merge{width:calc(100% - 40px); padding:30px 35px; margin:20px 20px 0px;}
	#program_step_wrap .program_step .box p{font-size: var(--font-size-m-2); line-height: 1.4; }
	#program_step_wrap .program_step .box p .telegram_btn{display: inline-block; border: 0; margin: 0; padding: 0;}
	#program_step_wrap .program_step .box p .telegram_btn img{width:100%}
	#program_step_wrap .program_step .box h4{padding-bottom:20px; font-size: var(--font-size-l-4); line-height: 1.38;}
	#program_step_wrap .program_step .box.merge {align-items: flex-start;}
	#program_step_wrap .program_step .box.merge h4{font-size: var(--font-size-l-4);}
	#program_step_wrap .program_step .title h1{font-size: var(--font-size-xxl-2);}
	#program_step_wrap .program_step:nth-child(2) .title{order:3; text-align: right; padding-right:0; margin: 30px 20px 0; width: calc(100% - 40px);}
	
	#text_mask{top:0}
	#text_mask .text{font-size: calc(16px + 38vw); background-size:680%; line-height: 0.75; margin-left: -5px; background-position: 0% 66%; display: block;}
	#text_mask .text .m_size_1{font-size: calc(16px + 41.5vw); display: block; margin-top:-3px}
	#text_mask .text .m_size_2{font-size: calc(16px + 27vw); display: block; margin-top:-3px; left: 0}
	
	#text_mask .text span{display: block;}
	


	#program_slide_wrap .program_slide .list_wrap{display: inline-flex; margin: 0 5px}
	#program_slide_wrap .program_slide .list_wrap .text_wrap{padding:50px 20px; height: 100%; bottom:-70%; opacity: 0; transition: all .5s ease-out; letter-spacing: -0.5px;}
	#program_slide_wrap .program_slide .list_wrap.slick-current .text_wrap{bottom:0; display: inline-grid; align-content: space-between; align-items: end;}
	#program_slide_wrap .program_slide .list_wrap .text_wrap .title{font-size: var(--font-size-l-3); padding-bottom: 50px}
	#program_slide_wrap .program_slide .list_wrap .text_wrap .num{position: absolute; top:12%; left:20px; font-size: var(--font-size-xxl-3); color:rgba(255,255,255,0.2); line-height: 0;}
	#program_slide_wrap .program_slide .list_wrap .text_wrap p{line-height: 1.48; padding-bottom:5px; font-size: var(--font-size-s-4); font-weight:400;}
	#program_slide_wrap .program_slide .list_wrap .text_wrap span{line-height: 1.36; display: block; font-size: var(--font-size-s-1);}
	#program_slide_wrap .title .sub_title{font-size: var(--font-size-m-2);}
	#program_slide_wrap .title h1{font-size: var(--font-size-l-3); margin-top:20px;  }
	#program_slide_wrap .title h1 strong{font-size: var(--font-size-xl-1); display: block; margin-top:5px; line-height: 1.36; font-weight: 700}
	#program_slide_wrap .program_slide .img{height: auto; min-height: 100%; max-height: 100%; aspect-ratio: 4 / 5; }
	#program_slide_wrap .program_slide .img img{width: 100%; height: 100%; object-fit: cover}
	
	
	#trading_pnl .container{padding: var(--sub-padding-20); margin: 0 20px}
	#trading_pnl .chart_box{border-radius: 10px;  padding: 40px 20px}
	#trading_pnl .chart_footer {justify-content: space-between; flex-wrap: nowrap; flex-direction: column; margin: 0 5px 0; margin-top:25px; }
	#trading_pnl .chart_footer .legend{font-size: 15px;}
	#trading_pnl .chart_footer .legend .dot{width:14px; height:14px; border-radius: 2px}
	#trading_pnl .scroll_area {
        width: 100%;
        overflow-x: scroll !important;  /* 가로 스크롤 활성화 */
		-webkit-overflow-scrolling: touch;
       scrollbar-width: thin; 
        scrollbar-color: #ddd transparent; /* 핸들 색상 / 트랙 색상 */
        
        padding-bottom:25px; /* 스크롤바가 이미지에 너무 딱 붙지 않게 여백 */
		-webkit-overflow-scrolling: touch;
		
		
    }
	#trading_pnl .scroll_area::-webkit-scrollbar {
        height: 4px; /* 가로 스크롤바니까 높이(height)를 조절합니다 */
		display: block !important;
    }

    /* 스크롤바 막대(핸들) */
    #trading_pnl .scroll_area::-webkit-scrollbar-thumb {
        background: #ddd; /* 막대 색상 (연한 회색) */
        border-radius: 10px; /* 둥글게 */
    }

    /* 스크롤바 바닥(트랙) */
    #trading_pnl .scroll_area::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.03); /* 아주 연한 배경 */
    }
	#trading_pnl .scroll_area::-webkit-scrollbar {
        display: block 
    }
	#trading_pnl .scroll_area img {
        display: block;
        width: auto;      /* 박스에 맞추는 기능 해제 */
        max-width: none;  /* 100% 제한 해제 */
        min-width:600px; /* 화면보다 넓게 해서 오른쪽이 잘리게 유도 */
		height: 300px; 
        object-fit: contain;
		padding-right:40px;
    }
	
	#trading_pnl .chart_footer .notice {font-size: 12px; }
	
	#about_visual .v_center {
        height: auto !important;
    }
	
	
	#about_visual .fp-tableCell {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
	
    #about_visual{height: 540px !important; display: flex!important; align-items: center!important; justify-content: center!important; overflow: hidden; width: 100%; max-width: 100vw; margin-right: -1px;  box-sizing: border-box}
	#about_visual .visual_txt h1 {font-size: var(--font-size-xxl-1); line-height: 1.65; margin-left: 5%}
	#about_visual .visual_txt h2 {font-size: var(--font-size-xl-3); line-height: 1.65}
	#about_visual .visual_txt h3 {font-size: var(--font-size-xl-2); line-height: 1.65}
	#about_visual .visual_txt .desc{font-size: var(--font-size-m-1);margin-top:140px }
	#about_visual .poster_bg{background-position: 73% 120% !important;  background-size: auto 96% !important; background-color: #000; }
	
	#about_who {padding:var(--sub-padding-150)}
	#about_who .v_line{height:50px; margin: 30px auto}
	#about_who .who_txt{font-size: var(--font-size-m-1); word-break: keep-all; line-height: 1.65}
	#about_who h2{font-size: var(--font-size-xxl-2);}
	#about_who h3{margin:30px 0}
	#about_who .point_txt{margin:30px 0}
	#about_who .deco_item, #about_who .deco_item span{font-size:70px}
	#about_who .deco_wrap{top:48%;}
	#about_who .deco_item{transform-origin: right top; transform: rotate(90deg) translateY(0%); text-align: left;  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; backface-visibility: hidden; transform: rotate(90deg) translateY(0%) translateZ(0); will-change: transform, opacity; backface-visibility: hidden;}
	
	#trading_strategies{padding:var(--sub-padding-150)}
	#trading_strategies h2.serif_title{font-size: var(--font-size-xxl-2);}
	#trading_strategies .strategy_desc,#trading_strategies .desc_top, #trading_strategies .desc_bottom{font-size: var(--font-size-m-1); }
	#trading_strategies .v_line{height:50px; margin: 25px auto}
	#trading_strategies .highlight_txt{font-size: var(--font-size-l-3); line-height: 1.6; margin-top:5px}
	#trading_strategies .bg_txt{font-size:100px}
	
	
	
	#philosophy { padding: var(--sub-padding-150); }
    .philo_card { 
        width: 100%; 
        min-width: 100%; 
        height: auto; 
        min-height: 200px; 
		padding: 30px 20px;
        padding-top: 50px; 
		
    }
    .philo_card .txt_box { height: 130px; }
    
	#philosophy .title_wrap{margin-bottom:40px}
    #philosophy .title_wrap h2 { font-size: var(--font-size-xxl-2);  line-height: 1.4; letter-spacing:0.8px}
    .philo_card .txt_box h4 { font-size: var(--font-size-l-3); }
    .philo_card .txt_box p { font-size: var(--font-size-m-1); }
	.philo_card .icon_box{padding-bottom:0%; width:70px; height:70px; top:15px; right:15px; text-align: center;}
	.philo_card .icon_box img{width:80%}
	
	#footer .container{align-items: flex-start; justify-content: space-between; flex-direction: column;}
	footer .info_wrap{display:block; margin-top:10px}
	footer .logo_img img{width:70%}
	#footer, .footer{padding:20px 0!important}
	#form_wrap .footer{padding:0px 0!important}
	
	
	#trading_visual .v_center {
        height: auto !important;
    }
	
	
	#trading_visual .fp-tableCell {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
	
    #trading_visual{height: 540px !important; display: flex!important; align-items: center!important; justify-content: center!important; overflow: hidden; width: 100%; max-width: 100vw; margin-right: -1px;  box-sizing: border-box}
	#trading_visual .visual_txt h1 {font-size: var(--font-size-xxl-1); line-height: 1.65;}
	#trading_visual .visual_txt h2 {font-size: var(--font-size-xl-3); line-height: 1.65}
	#trading_visual .visual_txt h3 {font-size: var(--font-size-xl-2); line-height: 1.65}
	#trading_visual .visual_txt .desc{font-size: var(--font-size-m-1);margin-top:140px }
	#trading_visual .poster_bg{background-position: 70% 80% !important;  background-size: auto 96% !important; background-color: #000; }
	
	#strategic_entry {padding:var(--sub-padding-150)}
	#strategic_entry .v_line{height:50px; margin: 30px auto}
	#strategic_entry .who_txt{font-size: var(--font-size-m-1); word-break: keep-all; line-height: 1.65}
	#strategic_entry h2{font-size: var(--font-size-xxl-2);}
	#strategic_entry h3{margin:30px 0}
	#strategic_entry .point_txt{margin:30px 0}
	#strategic_entry .deco_item, #strategic_entry .deco_item span{font-size:70px}
	#strategic_entry .deco_wrap{top:48%;}
	#strategic_entry .deco_item{transform-origin: right top; transform: rotate(90deg) translateY(0%); text-align: left;  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; backface-visibility: hidden; transform: rotate(90deg) translateY(0%) translateZ(0); will-change: transform, opacity; backface-visibility: hidden;}
	
	
	#trading_advantage { padding:0 0; }
	#trading_advantage .container{ margin-top:0; height: auto!important; padding: var(--sub-padding-120); padding-left:10px; padding-right:10px }

	#trading_advantage .bg_tit_wrap{width:100%; left: 50%; transform: translateX(-50%); top:0; margin:0 auto; position: relative}
    #trading_advantage .bg_tit_wrap h2 { font-size: 18.5vw; text-align: left; }

    .adv_list { margin-top: 0px; padding: 0 20px; }

    .adv_item { 
        display: block; /* 모바일에서는 세로로 적층 */
        margin-bottom: 60px; 
    }

    /* 넘버링이 타이틀 위로 올라감 */
    .adv_item .num { 
       font-size: var(--font-size-xl-2);
        margin-bottom: 5px; 
    }

    .adv_item .txt_box .tit { 
       font-size: var(--font-size-m-5);
        margin-bottom: 5px; 
    }

   .adv_item .txt_box .desc { 
        font-size: var(--font-size-m-1);
	   line-height: 1.65
    }
	
	#strategy_models { 
        padding: 60px 0; 
    }

    /* 1. 레이아웃 스위칭 */
    #strategy_models .pc_only { display: none !important; } /* PC 표 숨김 */
    #strategy_models .m_only { display: block !important; } /* 모바일 카드 노출 */

    #strategy_models .m_model_wrap {
        display: flex;
        flex-direction: column;
        gap: 25px; /* 카드 사이 간격 */
    }
	#strategy_models .title_wrap h2{line-height: 1.2}

    /* 2. 카드 개별 박스 */
    #strategy_models .m_table {
        background: #fff;
        border: 1px solid var(--point-gold);
        width: 100%;
        overflow: hidden;
		margin-bottom:30px;
		border-radius: 10px;
    }
	#strategy_models .m_table:last-child{margin-bottom:0}

    /* 3. 카드 헤더 (제품명 라인) */
    #strategy_models .m_thead {
        background: var(--point-gold);
        color: #fff;
        padding: 15px 18px 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: var(--font-size-m-2);
        font-weight: 400;
    }

	#strategy_models .m_thead span:nth-child(2){font-weight:600; font-size: var(--font-size-m-5);}
    /* 4. 카드 내부 행(Row) 설정 */
    #strategy_models .m_tr {
        display: flex;
        align-items: stretch; /* 좌우 높이 동일하게 고정 */
        border-bottom: 1px dashed #f1ede9;
    }
    #strategy_models .m_tr.last { border-bottom: none; }

    /* 5. 왼쪽 항목명 (attr) - Medium(500) */
    #strategy_models .m_tr .attr {
        width: 42%;
        background: #fdfaf5;
        color: var(--point-gold);
        padding: 12px 10px;
        font-size: var(--font-size-s-4);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-right: 1px solid var(--point-gold);
    }

    /* 6. 오른쪽 데이터 값 (val) - 기본 Medium(500) */
    #strategy_models .m_tr .val {
        width: 58%;
        padding: 15px 5px;
        text-align: center;
        color: #000;
        font-size: var(--font-size-m-2);
        line-height: 1.4;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
	

    /* --- 폰트 두께 및 컬러 디테일 --- */

    /* [손익비] Light(300) + 강조 Semi-Bold(700) */
    #strategy_models .m_tr:nth-child(2) .val { font-weight: 300; }
    #strategy_models .m_tr:nth-child(2) .val strong { font-weight: 700; color: #000; }

    /* [MDD/수익률] 컬러 및 강조 */
    #strategy_models .m_tr .val.blue { color: #0917da; } /* MDD */
    #strategy_models .m_tr .val.red { 
        color: #ee0000; 
        font-weight: 700; 
        font-size: var(--font-size-m-5); 
    }
	#strategy_models .m_tr .val:first-child{ font-size: var(--font-size-s-4);}
    /* [성향] 하단 설명 문구 - Light(300) */
    #strategy_models .m_tr.last .val { 
        font-weight: 300; 
        font-size: var(--font-size-s-2); 
        text-align: center;
    }

    /* 하단 공지사항 */
    #strategy_models .table_notice {
        margin-top: 10px;
        padding: 0 5px;
        font-size: 13px;
        font-weight: 300;
    }

	 
    
    .inner_800 {
        width: 100% !important;
        padding: 0;
    }

  
    

    /* 3. 폼 카드 내부 간격 */
    .form_card {
        padding: 40px 20px 60px!important;
		margin:0 10px
    }

    /* 4. 입력 그룹 레이아웃: 라벨을 위로 배치 */
    .input_group {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        margin-bottom: 25px !important;
    }

    /* 5. 라벨 정렬 및 폰트 */
    .input_group label {
        width: 100% !important;
        justify-content: flex-start !important;
        text-align: left !important;
        height: auto !important;
        padding-bottom: 0 !important;
    }

    /* 6. 인풋 박스 전체 너비 */
    .input_box {
        width: 100% !important;
    }

    /* 7. 폰번호/이메일 행 정렬 최적화 */
    .input_row {
        display: flex !important;
        width: 100% !important;
        gap: 5px !important;
        align-items: center !important;
    }

    /* 인풋 높이 및 폰트 크기 모바일 최적화 */
    .input_box input[type="text"],
    .input_box input[type="tel"],
    .sel_domain,
    .in_email_direct {
        height: 45px !important; /* 모바일은 터치하기 좋게 살짝 높임 */
        font-size: var(--font-size-m-1);
        flex: 1;
        min-width: 0;
    }

    /* 구분자(@, -) 간격 */
    .sep {
        width: 15px !important;
        text-align: center;
        flex-shrink: 0;
    }

    /* 8. 하단 정보 텍스트 영역 */
    .info_text_area {
        margin: 60px 0 !important;
		padding: 0;
        
    }

    .info_text_area p {
       font-size: var(--font-size-s-3);
        line-height: 1.6 !important;
        word-break: keep-all;
		text-align: left;
		margin-bottom:10px;
    }

    /* 9. VIP 수수료 카드 영역 */
    .vip_discount_section {
        margin-top: 30px !important;
    }

    .vip_link_card {
        padding: 15px !important;
    }

    .link_item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 12px 0 !important;
    }

    .link_item span {
        font-size: 13px !important;
        word-break: break-all;
    }

    .copy_btn {
        width: 100% !important;
        height: 38px !important;
    }

	select.sel_domain {font-size: 16px }


    .main_submit_btn {
        width: 100% !important;
        height: 55px !important;
        font-size: 18px !important;
        border-radius: 8px !important;
    }

}

/* 초소형 모바일 (480px) */
@media (max-width: 480px) {
}

