
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: #666;
}

::-webkit-scrollbar-thumb {
    background: #111;
    border-radius: 10px;
}






.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background:rgba(255, 255, 255, 1);
  color: #008CD6;
  display: none; /* 기본적으로 숨김 */
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 180px;
  pointer-events: none;
  transform: translate(-100%, -100%);
  border:1px solid #rgba(255, 255, 255, 0.20);

  user-select: none;
  z-index: 4444;
  gap:20px; display: flex;
  box-shadow: 1px 1px 15px rgba(0,0,0,0.05)
}


.custom-cursor:after{content: '';
background: url(../img/common/next.png); width: 19px; height: 8px; background-repeat: no-repeat; background-size: 100% auto}


.custom-cursor:before{content: '';
background: url(../img/common/prev.png); width: 19px; height: 8px; background-repeat: no-repeat; background-size: 100% auto}


/*pop*/

.agree_pop{display: none; position: fixed; left: 0; top: 0; width: 100%; height: 100%; z-index: 2; background: rgba(0,0,0,0.5)}
.agree_pop.atv_pop{display: block}

.agree_pop_content{position: absolute; left: 50%;
  top: 50%; background: #fff; padding: 30px; border-radius: 5px;
  transform: translate(-50%, -50%); width: 100%; max-width: 900px}



.agree_pop_content .agree_title{position: relative; }

.agree_pop_content .agree_title h2{font-size: 18px;}
.agree_pop_content .agree_title .close_pop{position: absolute; right: 0; top: 0; cursor: pointer}

.agree_pop_info{max-height: 400px; overflow-y: auto; margin-top: 15px; padding: 15px 0; border-top: 1px solid #ddd}
.agree_pop_info h3{font-size: 16px; font-weight: bold; word-break: keep-all; margin-bottom: 10px}
.agree_pop_info p{font-size: 14px; font-weight: 400; word-break: keep-all}
.agree_pop_info p + h3{margin-top: 20px}


.agree_pop_info::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.agree_pop_info::-webkit-scrollbar-track {
    background: #ccc;
}



/*header*/




/* =========================================
   기본 설정
========================================= */
:root {
	--header-util-height: 50px;
	--header-main-height: 100px;
	--header-total-height: 132px;
	--header-line: rgba(255, 255, 255, 0.14);
	--header-text: #ffffff;
	--header-muted: rgba(255, 255, 255, 0.55);
	--header-blue: #1E5EFF;
	--header-cyan: #00D1FF;
	--header-dark: #0c1118;
}

.header,
.header * {
	box-sizing: border-box;
}

body.site_map_open {
	overflow: hidden;
}

.header ul,
.header li,
.site_map ul,
.site_map li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.header a,
.header button,
.site_map a,
.site_map button {
	font-family: inherit;
}

.header button,
.site_map button {
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
}

.header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9000;
	width: 100%;
	color: var(--header-text);
	transition:
		background-color 0.3s,
		transform 0.3s,
		box-shadow 0.3s,
		top 1s
}

.header.fixed {
	position: fixed;
	background: rgba(3, 8, 14, 0.94);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.header.sub {
	position: fixed;
	background: #05090d;
	top: -200px
}

.header_inner {
	width:100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	padding: 0 6rem
}


/* =========================================
   최상단 유틸리티
========================================= */
.header_util {
	height: var(--header-util-height);
	border-bottom: 1px solid var(--header-line);
}

.header_util .header_inner {
	justify-content: flex-end;
}

.utility_nav > ul {
	display: flex;
	align-items: center;
	gap: 30px;
	height: 100%;
}

.utility_item {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}

.utility_item > a,
.utility_button {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	color: var(--header-muted);
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
	transition: color 0.2s;
}

.utility_item > a:hover,
.utility_button:hover,
.utility_item.open > .utility_button {
	color: #fff;
}

.has_utility_drop > .utility_button {
	padding-right: 16px;
}

.has_utility_drop > .utility_button::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.2s;
}

.has_utility_drop.open > .utility_button::after {
	transform: translateY(-25%) rotate(225deg);
}

.utility_dropdown {
	position: absolute;
	top: calc(100% + 10px);
	z-index: 30;
	left:50%;
	width: max-content;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	background: rgba(14, 19, 27, 0.97);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition:
		opacity 0.2s,
		visibility 0.2s,
		transform 0.2s;
}

.utility_item.open .utility_dropdown {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%,0)
}

.utility_dropdown a {
	display: block;
	padding: 9px 5px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
	line-height: 1.45;
	text-decoration: none;
	transition: color 0.2s;
}

.utility_dropdown a:hover {
	color: var(--header-cyan);
}


/* =========================================
   메인 헤더
========================================= */
.header_main {
	height: var(--header-main-height);
}

.header_main .header_inner {
	position: relative;
}

.logo {
	flex: 0 0 auto;
	display: block;
	width: 188px;
	height: 32px;
	margin-right: 80px;
	background-image: url("../img/logo.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}

.main_navigation {
	height: 100%;
}

.top_nav {
	height: 100%;
	display: flex;
	align-items: stretch;
	gap: 52px;
}

.top_nav > li {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}

.top_nav > li > .onedeps {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.main_navigation > .top_nav > li > .onedeps.active{
	color: var(--header-cyan);
}



.top_nav > li:hover > .onedeps,
.top_nav > li.open > .onedeps {
	color: var(--header-cyan);
}


/* =========================================
   데스크톱 2Depth 드롭다운
========================================= */
.sub_deps {
	position: absolute;
	left: 50%;
	top: calc(100% - 20px);
	z-index: 50;
	min-width: max-content;
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
background: rgba(255, 255, 255, 0.10);
backdrop-filter: blur(15px);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 12px);
	transition:
		opacity 0.22s,
		visibility 0.22s,
		transform 0.22s;
}

.top_nav > li:hover > .sub_deps,
.top_nav > li.open > .sub_deps {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.sub_deps > ul + ul {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sub_deps li {
	position: relative;
}

.sub_deps li > a {
	display: block;
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition:
		color 0.2s,
		background-color 0.2s;
}


.sub_deps li + li{margin-top: 16px;}

.sub_deps li > a:hover {
	color: var(--header-cyan);
}

.sub_deps .depth_toggle {
	display: none;
}


/* =========================================
   데스크톱 3Depth
========================================= */
.sub_deps .three_deps {
	position: absolute;
	left: calc(100% + 20px);
	top: -10px;
	z-index: 10;
	min-width: max-content;
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 10px;
	background: rgba(20, 26, 35, 0.98);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.26);
	opacity: 0;
	visibility: hidden;
	transform: translateX(8px);
	transition:
		opacity 0.2s,
		visibility 0.2s,
		transform 0.2s;
}

.sub_deps .has_three:hover > .three_deps {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}




/* =========================================
   헤더 오른쪽
========================================= */
.header_right {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 26px;
}

.mypage_button {
	min-width: 112px;
	height: 42px;
	padding: 0 18px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	background: var(--header-blue);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition:
		background-color 0.2s,
		transform 0.2s;
}

.mypage_button:hover {
	background: #1458e8;
	transform: translateY(-2px);
}

.mypage_button i {
	position: relative;
	width: 13px;
	height: 8px;
}

.mypage_button i::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 12px;
	height: 1px;
	background: #fff;
}

.mypage_button i::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}


/* 언어 */
.language {
	position: relative;
}

.language_button {
	height: 42px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 14px;
}

.language_button i {
	width: 6px;
	height: 6px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.2s;
}

.language.open .language_button i {
	transform: translateY(2px) rotate(225deg);
}

.language_dropdown {
	position: absolute;
	right: 50%;
	top: calc(100% + 10px);
	z-index: 60;
	width: 86px;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	background: rgba(15, 20, 28, 0.98);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	opacity: 0;
	visibility: hidden;
	transform: translate(50%, 7px);
	transition:
		opacity 0.2s,
		visibility 0.2s,
		transform 0.2s;
}

.language.open .language_dropdown {
	opacity: 1;
	visibility: visible;
	transform: translate(50%, 0);
}

.language_dropdown a {
	display: block;
	padding: 9px 5px;
	border-radius: 5px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
	text-align: center;
	text-decoration: none;
}

.language_dropdown a:hover,
.language_dropdown a.active {
	color: var(--header-cyan);
	background: rgba(255, 255, 255, 0.05);
}


/* 햄버거 */
.all_btn {
	position: relative;
	width: 32px;
	height: 32px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 5px;
}

.all_btn span {
	display: block;
	width: 25px;
	height: 1px;
	background: #fff;
	transition:
		width 0.2s,
		transform 0.3s,
		opacity 0.3s;
}

.all_btn span:nth-child(2) {
	width: 18px;
}

.all_btn:hover span:nth-child(2) {
	width: 25px;
}

body.site_map_open .all_btn span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

body.site_map_open .all_btn span:nth-child(2) {
	opacity: 0;
}

body.site_map_open .all_btn span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}


/* =========================================
   전체 메뉴 오버레이
========================================= */
.site_map_overlay {
	position: fixed;
	inset: 0;
	z-index: 9490;
	background: rgba(0, 0, 0, 0.72);
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.35s,
		visibility 0.35s;
}

body.site_map_open .site_map_overlay {
	opacity: 1;
	visibility: visible;
}


/* =========================================
   우측 전체 메뉴
========================================= */
.site_map {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9500;
	width: min(520px, 100%);
	height: 100dvh;
	display: flex;
	flex-direction: column;
	background: #fff;
	color: #111;
	transform: translateX(100%);
	visibility: hidden;
	transition:
		transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0.42s;
}

body.site_map_open .site_map {
	transform: translateX(0);
	visibility: visible;
}

.site_map_header {
	flex: 0 0 auto;
	height: 100px;
	padding: 0 55px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.site_map_header > strong {
	font-size: 18px;
	font-weight: 700;
}

.site_map_close {
	position: relative;
	width: 38px;
	height: 38px;
}

.site_map_close span {
	position: absolute;
	left: 6px;
	top: 18px;
	width: 27px;
	height: 2px;
	background: #111;
}

.site_map_close span:first-child {
	transform: rotate(45deg);
}

.site_map_close span:last-child {
	transform: rotate(-45deg);
}

.site_map_scroll {
	flex: 1 1 auto;
	padding: 0 55px 50px;
	overflow-y: auto;
	overscroll-behavior: contain;
}

/* =========================================
	SITE MAP UTILITY
========================================= */
.site_map_utility {
	display: block;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e8e8e8;
}

.site_map_utility_nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site_map_utility_nav .utility_item {
	position: relative;
	width: 100%;
	height: auto;
	display: block;
	border-bottom: 1px solid #ededed;
}

.site_map_utility_nav .utility_item:last-child {
	border-bottom: 0;
}


/* 1Depth */
.site_map_utility_nav .utility_item > a,
.site_map_utility_nav .utility_button {
	position: relative;
	width: 100%;
	height: auto;
	min-height: 54px;
	padding: 15px 42px 15px 0;
	display: flex;
	align-items: center;
	color: #222;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	text-align: left;
	text-decoration: none;
}

.site_map_utility_nav .utility_item > a:hover,
.site_map_utility_nav .utility_button:hover,
.site_map_utility_nav .utility_item.open > .utility_button {
	color: #1e5eff;
}


/* 화살표 */
.site_map_utility_nav .has_utility_drop > .utility_button::after {
	content: "";
	position: absolute;
	right: 5px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.25s ease;
}

.site_map_utility_nav .has_utility_drop.open > .utility_button::after {
	transform: translateY(-30%) rotate(225deg);
}


/* 2Depth */
.site_map_utility_nav .utility_dropdown {
	position: static;
	width: 100%;
	max-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	overflow: hidden;
	background: transparent;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
	transition:
		max-height 0.35s ease,
		padding 0.35s ease;
}

.site_map_utility_nav .utility_item.open .utility_dropdown {
	max-height: 700px;
	padding: 0 0 16px;
	transform: none;
}

.site_map_utility_nav .utility_dropdown a {
	display: block;
	padding: 8px 14px;
	color: #777;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	text-decoration: none;
}

.site_map_utility_nav .utility_dropdown a:hover {
	color: #1e5eff;
	background: #f5f7fb;
}


/* 전체 메뉴 1Depth */
.site_map_nav > li {
	border-bottom: 1px solid #ededed;
}

.site_map_nav > li > .onedeps {
	position: relative;
	display: block;
	padding: 24px 48px 24px 0;
	color: #111;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
}



.site_map_nav > li.open > .onedeps {
	color: var(--header-cyan);
}


/* 전체 메뉴 2Depth */
.site_map .sub_deps {
	position: static;
	min-width: 0;
	max-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
	overflow: hidden;
	transition:
		max-height 0.45s ease,
		padding 0.35s ease;
}

.site_map_nav > li.open > .sub_deps {
	max-height: 1500px;
	padding: 0 0 25px;
}

.site_map .sub_deps > ul + ul {
	margin: 0;
	padding: 0;
	border: 0;
}

.site_map .sub_deps li {
	position: relative;
}

.site_map .sub_deps li > a {
	color: #666;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	text-align: left;
	white-space: normal;
}

.site_map .sub_deps li > a:hover {
	color: #111;
	background: transparent;
}

.site_map .sub_deps li > a + a{margin-top: 15px}


/* 전체 메뉴 3Depth 토글 버튼 */
.site_map .sub_deps .has_three > a {
	padding-right: 50px;
}

.site_map .sub_deps .has_three > a::after {
	display: none;
}




/* 전체 메뉴 3Depth */
.site_map .sub_deps .three_deps {
	position: static;
	min-width: 0;
	max-height: 0;
	padding: 0 14px;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
	overflow: hidden;
	transition:
		max-height 0.35s ease,
		padding 0.35s ease,
		margin 0.35s ease;
}

.site_map .sub_deps .has_three.open > .three_deps {
	max-height: 800px;
	padding: 14px;
	background: #fff
}

.site_map .sub_deps .three_deps a {

	color: #999;
	font-size: 14px;
}

.site_map .sub_deps li + li{margin-top: 10px}

/* 전체 메뉴 하단 */
.site_map_bottom {
	flex: 0 0 auto;
	padding: 25px 55px 35px;
	border-top: 1px solid #ededed;
	background: #fff;
}

.site_map_mypage {
	height: 48px;
	padding: 0 18px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--header-blue);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.site_map_language {
	margin-top: 18px;
	display: flex;
	gap: 17px;
}

.site_map_language a {
	color: #aaa;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.site_map_language a.active {
	color: #111;
}
















/*foot*/

.foot_btn{position: fixed; z-index: 9992;
right: 4rem; bottom: 4rem; width: 60px; height: 60px;
display: flex;   align-items: center;
  justify-content: center;
    box-shadow: 1px 1px 15px rgba(0,0,0,0.05);
    border: 1px solid #DDD;
background: #FFF; border-radius: 100px;

 /* 👇 추가 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}


.foot_btn.active {
    opacity: 1;
    visibility: visible;
}





/* =========================================
   FOOTER
========================================= */
.footer {
	position: relative;
	padding: 40px;
	color: #fff;
	overflow: hidden;
}

.footer_inner {
	position: relative;
	min-height: 725px;
	padding: 100px 130px 100px;
	border-radius: 20px;
	background: url('../img/footer.png') ;
	overflow: hidden;
	background-position: center; background-size: cover
}



.footer_content,
.footer_bottom {
	position: relative;
	z-index: 2;
}

.footer_content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 80px;
}

.footer_text h2 {
	margin: 0;
	color: #fff;
	font-size: 54px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: -0.03em;
}

.footer_description {
	margin: 30px 0 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: -0.02em;
}


/* =========================================
   FOOTER BUTTON
========================================= */
.footer_links {
	flex: 0 0 200px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer_links a {
	width: 100%;
	min-height: 44px;
	padding: 10px 16px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1E5EFF;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(30, 94, 255, 0.15);
	transition:
		transform 0.25s ease,
		background-color 0.25s ease,
		box-shadow 0.25s ease;
}

.footer_links a:hover {
	background: #3871ff;
	transform: translateY(-2px);
	box-shadow: 0 13px 26px rgba(30, 94, 255, 0.28);
}


/* =========================================
   FOOTER BOTTOM
========================================= */
.footer_bottom {
	margin-top: 88px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 50px;
}

.footer_company {
	flex: 1;
	min-width: 0;
}

.footer_logo {
	display: inline-block;
	margin-bottom: 36px;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 27px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.07em;
	text-decoration: none;
}

.footer_info {
	display: flex;
	align-items: flex-start;
	gap: 70px;
}

.footer_info_group {
	flex: 0 0 auto;
}

.footer_address {
	flex: 1;
	min-width: 0;
}

.footer_info dl {
	display: flex;
	align-items: flex-start;
	margin: 0;
}

.footer_info dl + dl {
	margin-top: 10px;
}

.footer_info dt {
	flex: 0 0 68px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.footer_info dd {
	margin: 0;
	color: rgba(255, 255, 255, 0.48);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	word-break: keep-all;
}

.footer_info dd a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.footer_info dd a:hover {
	color: #fff;
}

.footer_copyright {
	flex: 0 0 auto;
	margin: 0;
	padding-bottom: 0px;
	color: rgba(255, 255, 255, 0.28);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	white-space: nowrap;
}











/* ==================================================
	COMMON
================================================== */

.inner_w{padding: 0 14rem}

.main_page {
	position: relative;
	background: #010827;
	color: #fff;
}

.main_page * {
	box-sizing: border-box;
}

.main_page img {
	max-width: 100%;
	vertical-align: top;
}

.main_page a {
	color: inherit;
	text-decoration: none;
}

.section_padding {
	padding: 150px 0;
}

.main_inner {
	width: 100%;
	padding: 0 8rem;
}

.section_eyebrow {
	display: block;
	margin-bottom: 18px;
	color: #00d1ff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.text_link {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin-top: 30px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	
	border-radius: 10px;
	background: #1E5EFF;
	
	height: 44px;
padding: 10px 20px;
transition:
		background-color 0.2s,
		transform 0.2s;
	
}

.text_link:hover {
	background: #1458e8;
	transform: translateY(-2px);
}



/* ==================================================
	01. MAIN VISUAL
================================================== */
.main_visual {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 760px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #010712;
}

.main_visual_video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main_visual_overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			rgba(0, 5, 13, 0.34) 0%,
			rgba(0, 9, 25, 0.05) 45%,
			rgba(1, 7, 21, 0.62) 100%
		);
}

.main_visual_content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 140px 8rem 0;
	text-align: center;
}

.main_visual_content h1 {
	margin: 0;
	color: #fff;
	font-size: 60px;
	font-weight: 700;
	line-height: 1.23;
	letter-spacing: -0.035em;
}

.main_visual_content p {
	margin: 36px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	line-height: 1.65;
}

.main_visual_buttons {
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.main_visual_buttons a {
	min-height: 44px;
	padding: 10px 16px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1e5eff;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	transition:
		transform 0.25s,
		background-color 0.25s,
		box-shadow 0.25s;
}

.main_visual_buttons a:hover {
	background: #00aeea;
	transform: translateY(-3px);
	box-shadow: 0 12px 26px rgba(0, 209, 255, 0.25);
}

.visual_scroll_button {
	position: absolute;
	left: 50%;
	bottom: 34px;
	z-index: 3;
	padding: 0;
	border: 0;
	background: none;
	color: rgba(255, 255, 255, 0.7);
	transform: translateX(-50%);
	cursor: pointer;
}

.visual_scroll_button span {
	display: block;
	font-size: 10px;
	letter-spacing: 0.18em;
}

.visual_scroll_button i {
	position: relative;
	display: block;
	width: 1px;
	height: 45px;
	margin: 12px auto 0;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.25);
}

.visual_scroll_button i::after {
	content: "";
	position: absolute;
	left: 0;
	top: -100%;
	width: 100%;
	height: 55%;
	background: #fff;
	animation: visualScrollLine 1.8s infinite ease-in-out;
}

@keyframes visualScrollLine {
	0% {
		top: -60%;
	}
	100% {
		top: 120%;
	}
}


/* ==================================================
	02. PHYSICAL INTRO
================================================== */
.physical_intro {
	position: relative;
	background:
		radial-gradient(
			circle at 76% 48%,
			rgba(0, 84, 220, 0.14),
			transparent 34%
		),
		#010827;
}

.physical_intro_heading {
	
}

.physical_intro_heading h2 {
	margin: 0;
	color: #fff;
	font-size: 54px;
	font-weight: 700;
	line-height: 1.5;
}

.physical_intro_heading p {
	margin: 28px 0 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 18px;
	line-height: 1.5;
}

.physical_intro_slider_wrap {
	margin-top: 70px;
	overflow: hidden;
}

.physical_intro_slider {
	margin-right: -30px;
}

.physical_intro_item {
	padding-right: 24px;
}

.physical_intro_card {
	position: relative;
	min-height: 280px;
	padding: 40px 35px;
	border: 1px solid rgba(96, 144, 255, 0.18);
	border-radius: 9px;
	display: block;
	overflow: hidden;
	background:
		linear-gradient(
			135deg,
			rgba(11, 52, 101, 0.47),
			rgba(2, 16, 50, 0.43)
		);
	transition:
		transform 0.35s,
		box-shadow 0.35s;
}

.physical_intro_card::before {
	content: "";
	position: absolute;
	inset: -2px;
	z-index: 0;
	border-radius: inherit;
	background:
		linear-gradient(
			115deg,
			transparent 10%,
			rgba(0, 209, 255, 0.9) 31%,
			rgba(55, 113, 255, 0.55) 47%,
			transparent 70%
		);
	background-size: 250% 100%;
	background-position: 140% 0;
	opacity: 0;
	transition: opacity 0.3s;
}

.physical_intro_card::after {
	content: "";
	position: absolute;
	inset: 1px;
	z-index: 0;
	border-radius: 8px;
	background:
		linear-gradient(
			135deg,
			rgba(5, 38, 82, 0.97),
			rgba(2, 16, 50, 0.98)
		);
	opacity: 0;
	transition: opacity 0.3s;
}



.physical_intro_card:hover::before {
	opacity: 1;
	animation: laserBorder 2.2s linear infinite;
}

.physical_intro_card:hover::after {
	opacity: 1;
}

@keyframes laserBorder {
	0% {
		background-position: 140% 0;
	}
	100% {
		background-position: -120% 0;
	}
}

.physical_intro_number,
.physical_intro_icon,
.physical_intro_card h3,
.physical_intro_card p {
	position: relative;
	z-index: 2;
}

.physical_intro_number {
	display: block;
	color: #00D1FF;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.12em;
}




.physical_intro_card h3 {
	margin: 8px 0 0;
	font-size: 34px;
	font-weight: 600;
}
.physical_intro_card ul{
	margin: 40px 0 0;
	position: relative; 
	z-index: 2
}
.physical_intro_card li {
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	line-height: 1.5;
	position: relative;
	padding-left: 15px;
}
.physical_intro_card li:after{content: '·'; position: absolute; left: 0; top: 0}

/* Slick 화살표 */
.physical_intro_slider .slick-arrow,
.products_slider .slick-arrow {
	position: absolute;
	top: -95px;
	z-index: 4;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	background: transparent;
	color: transparent;
	cursor: pointer;
}

.physical_intro_slider .slick-prev,
.products_slider .slick-prev {
	right: 190px;
}

.physical_intro_slider .slick-next,
.products_slider .slick-next {
	right: 130px;
}

.physical_intro_slider .slick-arrow::before,
.products_slider .slick-arrow::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.physical_intro_slider .slick-prev::before,
.products_slider .slick-prev::before {
	transform: translate(-35%, -50%) rotate(-135deg);
}

.physical_intro_slider .slick-next::before,
.products_slider .slick-next::before {
	transform: translate(-65%, -50%) rotate(45deg);
}

.physical_intro_slider .slick-arrow:hover,
.products_slider .slick-arrow:hover {
	border-color: #00d1ff;
	background: rgba(0, 209, 255, 0.1);
}


/* ==================================================
	03. PLATFORM
================================================== */
.platform_section {
	position: relative;
	background:
		radial-gradient(
			ellipse at center bottom,
			rgba(0, 76, 217, 0.45),
			transparent 50%
		),
		#010827;
	overflow: hidden;
}

.platform_section::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -180px;
	height: 380px;
	border-radius: 50% 50% 0 0;
	background: rgba(0, 63, 177, 0.22);
	filter: blur(20px);
}

.platform_heading {
	position: relative;
	z-index: 2;
	text-align: center;
}

.platform_heading h2 {
	margin: 0;
	font-size: 54px;
	font-weight: 600;
}

.platform_heading p {
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 18px;
	line-height: 1.5
}

.platform_marquee {
	position: relative;
	z-index: 2;
	width: 100%;
	margin-top: 70px;
	overflow: hidden;
}

.platform_track {
	width: max-content;
	display: flex;
	animation: platformMarquee 55s linear infinite;
	will-change: transform;
}

.platform_marquee:hover .platform_track {
	animation-play-state: paused;
}

.platform_group {
	display: flex;
	align-items: flex-start;
	gap: 80px;
	padding-right: 80px;
}

.platform_item {
	width: 200px;
	flex: 0 0 200px;
	text-align: center;
}

.platform_icon {
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.platform_icon img {
	max-width: 200px;
	max-height: 200px;
	opacity: 1;
	filter: grayscale(1);
	transition:
		opacity 0.4s,
		filter 0.4s,
		transform 0.4s;
}

.platform_item strong {
	display: block;
	margin-top: 25px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	transition: color 0.3s;
}



.platform_item:hover strong {
	color: #00D1FF;
}

@keyframes platformMarquee {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-50%, 0, 0);
	}
}


/* ==================================================
	04. SOLUTIONS - STICKY STACK
================================================== */
.main_solutions {
	position: relative;
	padding: 150px 0 0px;
	background: #01092c;
	overflow: visible;
}

.main_solutions_inner {
	position: relative;
	width: 100%;
	padding: 0 40px;
	overflow: visible;
}


/* 카드 한 장이 차지하는 스크롤 구간 */
.main_solution_item {
	position: sticky;
	top: 120px;
	width: 100%;
	height: calc(100vh - 160px);
	min-height: 620px;
	max-height: 760px;
	border-radius: 14px;
	overflow: hidden;
	background: #06112f;
	box-shadow:
		0 30px 80px rgba(0, 0, 0, 0.32),
		0 0 0 1px rgba(255, 255, 255, 0.04);
	transform-origin: center top;
	will-change: transform, opacity;
}


/*
 * sticky 카드 사이에 실제 스크롤 거리를 만듭니다.
 * margin이 너무 작으면 카드가 거의 동시에 겹쳐 이상하게 보입니다.
 */
.main_solution_item + .main_solution_item {
	margin-top: 70vh;
}


/* 카드가 쌓이는 순서 */
.main_solution_item:nth-child(1) {
	z-index: 1;
}

.main_solution_item:nth-child(2) {
	z-index: 2;
}

.main_solution_item:nth-child(3) {
	z-index: 3;
}


/* 마지막 카드가 충분히 고정된 뒤 다음 섹션으로 이동 */
.main_solution_item:last-child {
	margin-bottom: 10vh;
}


/* 카드 전체 */
.main_solution_link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	text-decoration: none;
	overflow: hidden;
}


/* 이미지 */
.main_solution_image {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.main_solution_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.035);
	transition:
		transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.7s ease;
}


/* 오버레이 */
.main_solution_dim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(2, 10, 31, 0.88) 0%,
			rgba(2, 10, 31, 0.67) 31%,
			rgba(2, 10, 31, 0.27) 66%,
			rgba(2, 10, 31, 0.07) 100%
		),
		linear-gradient(
			0deg,
			rgba(1, 8, 28, 0.42) 0%,
			transparent 55%
		);
}


/* 콘텐츠 */
.main_solution_content {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 70px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


/* 탭 */
.main_solution_tabs {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 60px;
}

.main_solution_tab {
	min-height: 38px;
	padding: 10px 18px;
	border: 0;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: rgba(255, 255, 255, 0.82);
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	white-space: nowrap;
	cursor: pointer;
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.main_solution_tab:hover {
	background: rgba(255, 255, 255, 0.23);
	color: #fff;
	transform: translateY(-2px);
}

.main_solution_tab.active {
	background: #1e5eff;
	color: #fff;
}


/* 텍스트 */

.main_solution_label {
	display: block;
	margin-bottom: 16px;
	color: #00d1ff;
	font-size: 16px;
	font-weight: 700;
}

.main_solution_text h2 {
	margin: 0;
	color: #fff;
	font-size: 54px;
	font-weight: 700;
	line-height: 1.5;
	word-break: keep-all;
}

.main_solution_text p {
	margin: 26px 0 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 18px;
	line-height: 1.8;
	word-break: keep-all;
}

.main_solution_item:hover .main_solution_image img {
	transform: scale(1.07);
}


/* ==================================================
	LOGO TYPOGRAPHY
================================================== */
.brand_typography_section {
	position: relative;
	padding: 0px 0 100px;
	overflow: hidden; 
	text-align: center
}

.brand_typography {
	color: rgba(115, 141, 219, 0.24);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(160px, 17vw, 350px);
	font-weight: 700;
	font-style: italic;
	line-height: 1;
	letter-spacing: -0.09em;
	white-space: nowrap;
	user-select: none;
	background: linear-gradient(180deg, #FFF -181.38%, #010827 89.33%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}


/* ==================================================
	05. MARKETS
================================================== */
.markets_section {
	position: relative;
	background:
		radial-gradient(
			circle at 18% 45%,
			rgba(0, 94, 230, 0.26),
			transparent 31%
		),
		#010827;
}

.markets_layout {
	display: grid;
	grid-template-columns: minmax(350px, 0.8fr) minmax(650px, 1.2fr);
	gap: 100px;
	align-items: start;
}

.markets_sticky {
	position: sticky;
	top: 190px;
	padding-top: 25px;
}

.markets_sticky h2 {
	margin: 0;
	font-size: 54px;
	font-weight: 600;
}

.markets_sticky > p {
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 18px;
	line-height: 1.5;
}

.markets_cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
}

.market_card {
	position: relative;
	transform: translateY(80px);
	opacity: 0;
}

.market_card:nth-child(even) {
	margin-top: 100px;
}

.market_card a {
	display: block;
	overflow: hidden;
	border-radius: 20px;
background:
		linear-gradient(
			135deg,
			rgba(11, 52, 101, 0.47),
			rgba(2, 16, 50, 0.43)
		);
backdrop-filter: blur(21px);
	transition:
		transform 0.4s,
		background-color 0.4s,
		box-shadow 0.4s;
		position: relative;
		padding: 30px 30px 35px;
}

.market_card a::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 0;
    border-radius: inherit;
    background: linear-gradient(115deg, transparent 10%, rgba(0, 209, 255, 0.9) 31%, rgba(55, 113, 255, 0.55) 47%, transparent 70%);
    background-size: 250% 100%;
    background-position: 140% 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.market_card a::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(5, 38, 82, 0.97), rgba(2, 16, 50, 0.98));
    opacity: 0;
    transition: opacity 0.3s;
}

.market_card a:hover::before {
	opacity: 1;
	animation: laserBorder 2.2s linear infinite;
}

.market_card a:hover::after {
	opacity: 1;
}

.market_card_image {
	height: 300px;
	overflow: hidden;
	border-radius: 16px;
	position: relative;
	z-index: 2
}

.market_card_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s;
}

.market_card_content{
	position: relative;
	z-index: 2
}


.market_card h3 {
	margin: 24px 0 0;
	font-size: 30px;
	line-height: 1.4;
}

.market_card p {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	line-height: 1.5;
}

.market_card a:hover  {

	box-shadow: 0 30px 65px rgba(0, 0, 0, 0.28);
}

.market_card a:hover .market_card_image img {
	transform: scale(1.07);
}




/* ==================================================
	06. PRODUCTS
================================================== */
.products_section {
	position: relative;
	background: #01092c;
}

.products_heading {
	padding: 0 8rem;
	text-align: center;
}

.products_heading h2 {
	margin: 0;
	font-size: 54px;
	font-weight: 600;
}

.products_heading p {
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 18px;
	line-height: 1.5
}

.products_slider_wrap {
	margin-top: 70px;
	overflow: hidden;
}

.products_slider {
	margin-right: -25px;
}

.product_item {
	padding-right: 25px;
}

.product_item a {
	display: block;
}

.product_image {
	position: relative;
	height: 320px;
	border-radius: 8px;
	overflow: hidden;
	background: #0a153b;
	    aspect-ratio: 1;
}

.product_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition:
		transform 0.7s,
		filter 0.7s;
		
}

.product_hover {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 20, 57, 0.6);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	opacity: 0;
	transition: opacity 0.35s;
}

.product_item h3 {
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	transition: color 0.3s;
}

.product_item:hover .product_image img {
	transform: scale(1.07);
	filter: brightness(0.75);
}

.product_item:hover .product_hover {
	opacity: 1;
}

.product_item:hover h3 {
	color: #00d1ff;
}


/* ==================================================
	07. COUNT
================================================== */
.main_count_section {
	position: relative;
	background:
		radial-gradient(
			circle at 50% 55%,
			rgba(0, 86, 211, 0.22),
			transparent 40%
		),
		#01092c;
}

.count_heading {

	margin: 0 auto;
	text-align: center;
}

.count_heading h2 {
	margin: 0;
	font-size: 54px;
	line-height: 1.4;
	letter-spacing: -0.04em;
}

.count_heading > p {
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 18px;
	line-height: 1.5;
}

.count_layout {
	margin-top: 90px;
	display: grid;
	grid-template-columns: 520px 1fr;
	gap: 100px;
	align-items: flex-end;
}

.count_description > p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 24px;
	line-height: 1.5;
	font-weight: 700
}

.count_list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));

}

.count_item {
	padding: 38px 20px 15px;
	text-align: center

}

.count_item:last-child {
	border-right: 0;
}

.count_number {
	display: block;
	color: #fff;
	font-size: 80px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.04em;
}

.count_item > span {
	display: block;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.4);
	font-size: 18px;
	line-height: 1.5;
}














