﻿@charset "utf-8";
/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Noto Sans KR', sans-serif;
	color: #E0E6ED;
	background: #0B0F1A;
	line-height: 1.7;
	overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== COLORS ===== */
:root {
	--navy-deepest: #060A14;
	--navy-dark: #0B0F1A;
	--navy-mid: #111827;
	--navy-light: #1E293B;
	--blue-accent: #1A6EFF;
	--blue-glow: rgba(26, 110, 255, 0.25);
	--blue-soft: #3B82F6;
	--text-primary: #F1F5F9;
	--text-secondary: #94A3B8;
	--text-muted: #64748B;
	--border-color: rgba(255, 255, 255, 0.06);
	--gradient-blue: linear-gradient(135deg, #1A6EFF 0%, #3B82F6 50%, #60A5FA 100%);
	--gradient-dark: linear-gradient(180deg, #0B0F1A 0%, #111827 100%);
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--blue-accent);
	margin-bottom: 16px;
}
.section-title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.3;
	margin-bottom: 20px;
}
.section-desc {
	font-size: 17px;
	color: var(--text-secondary);
	max-width: 680px;
	line-height: 1.8;
}
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 36px;
	background: var(--gradient-blue);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 24px var(--blue-glow);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(26, 110, 255, 0.4);
}
.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	background: transparent;
	color: var(--blue-accent);
	font-size: 15px;
	font-weight: 600;
	border: 1.5px solid var(--blue-accent);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s;
}
.btn-outline:hover {
	background: rgba(26, 110, 255, 0.1);
}

/* ===== HEADER ===== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(11, 15, 26, 0.85);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-color);
	transition: background 0.3s;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}
.logo {
	display: flex;
	align-items: center;
	gap: 14px;
	font-weight: 700;
	font-size: 18px;
	color: var(--text-primary);
}
.logo-img {
	height: 28px;
	width: auto;
	object-fit: contain;
}
.logo-divider {
	width: 1px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
}
.logo span { color: var(--blue-accent); font-weight: 700; font-size: 17px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-secondary);
	transition: color 0.2s;
	position: relative;
}
.nav a:hover { color: var(--text-primary); }
.nav-cta {
	padding: 10px 24px !important;
	background: var(--blue-accent) !important;
	color: #fff !important;
	border-radius: 6px;
	font-weight: 600 !important;
	transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.9; }
.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
}
.mobile-toggle span {
	width: 24px;
	height: 2px;
	background: var(--text-primary);
	border-radius: 2px;
	transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
	position: relative;
	padding: 180px 0 120px;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(26, 110, 255, 0.12) 0%, transparent 70%);
	pointer-events: none;
}
.hero::after {
	content: '';
	position: absolute;
	bottom: -100px;
	left: -150px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(26, 110, 255, 0.06) 0%, transparent 70%);
	pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: rgba(26, 110, 255, 0.1);
	border: 1px solid rgba(26, 110, 255, 0.25);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 500;
	color: var(--blue-accent);
	margin-bottom: 28px;
}
.hero-badge::before {
	content: '';
	width: 8px;
	height: 8px;
	background: var(--blue-accent);
	border-radius: 50%;
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}
.hero h1 {
	font-size: clamp(36px, 5.5vw, 56px);
	font-weight: 900;
	color: var(--text-primary);
	line-height: 1.25;
	margin-bottom: 24px;
	letter-spacing: -0.5px;
}
.hero h1 em {
	font-style: normal;
	background: var(--gradient-blue);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero p {
	font-size: 19px;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 40px;
	max-width: 620px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== OVERVIEW ===== */
.overview {
	padding: 120px 0;
	background: var(--navy-mid);
	position: relative;
}
.overview-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.overview-text .section-desc { margin-bottom: 32px; }
.overview-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.stat-card {
	padding: 24px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	border-radius: 12px;
}
.stat-card .number {
	font-size: 32px;
	font-weight: 800;
	color: var(--blue-accent);
	margin-bottom: 4px;
}
.stat-card .label {
	font-size: 14px;
	color: var(--text-muted);
}
.overview-visual {
	position: relative;
	background: var(--navy-dark);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 40px;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.flow-step {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 18px 0;
	position: relative;
}
.flow-step:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 23px;
	top: 56px;
	width: 2px;
	height: calc(100% - 36px);
	background: linear-gradient(to bottom, var(--blue-accent), transparent);
}
.flow-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	background: rgba(26, 110, 255, 0.1);
	border: 1px solid rgba(26, 110, 255, 0.3);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	z-index: 1;
}
.flow-text h4 {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 2px;
}
.flow-text p {
	font-size: 14px;
	color: var(--text-muted);
}

/* ===== FEATURES ===== */
.features {
	padding: 120px 0;
	background: var(--navy-dark);
}
.features-header {
	text-align: center;
	margin-bottom: 64px;
}
.features-header .section-desc { margin: 0 auto; }
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.feature-card {
	padding: 36px 32px;
	background: var(--navy-mid);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
	border-color: rgba(26, 110, 255, 0.3);
	transform: translateY(-4px);
}
.feature-icon {
	width: 56px;
	height: 56px;
	background: rgba(26, 110, 255, 0.1);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 20px;
}
.feature-card h3 {
	font-size: 19px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 12px;
}
.feature-card p {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.75;
}

/* ===== DIRECTION (비즈니스 방향성) ===== */
.direction {
	padding: 120px 0;
	background: var(--navy-mid);
	position: relative;
	overflow: hidden;
}
.direction::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(26, 110, 255, 0.05) 0%, transparent 70%);
	pointer-events: none;
}
.direction-header {
	text-align: center;
	margin-bottom: 64px;
	position: relative;
}
.direction-header .section-desc { margin: 0 auto; }
.direction-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
}
.direction-card {
	text-align: center;
	padding: 40px 28px;
	background: var(--navy-dark);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s, border-color 0.3s;
}
.direction-card:hover {
	transform: translateY(-4px);
	border-color: rgba(26, 110, 255, 0.3);
}
.direction-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
}
.direction-card.remove::before { background: linear-gradient(90deg, #EF4444, #F87171); }
.direction-card.simplify::before { background: linear-gradient(90deg, #F59E0B, #FBBF24); }
.direction-card.automate::before { background: linear-gradient(90deg, #1A6EFF, #60A5FA); }
.direction-card.leverage::before { background: linear-gradient(90deg, #10B981, #34D399); }
.direction-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}
.direction-card.remove .direction-icon { background: rgba(239, 68, 68, 0.1); }
.direction-card.simplify .direction-icon { background: rgba(245, 158, 11, 0.1); }
.direction-card.automate .direction-icon { background: rgba(26, 110, 255, 0.1); }
.direction-card.leverage .direction-icon { background: rgba(16, 185, 129, 0.1); }
.direction-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
}
.direction-card .tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 16px;
	padding: 4px 12px;
	border-radius: 100px;
}
.direction-card.remove .tag { color: #F87171; background: rgba(239, 68, 68, 0.1); }
.direction-card.simplify .tag { color: #FBBF24; background: rgba(245, 158, 11, 0.1); }
.direction-card.automate .tag { color: #60A5FA; background: rgba(26, 110, 255, 0.1); }
.direction-card.leverage .tag { color: #34D399; background: rgba(16, 185, 129, 0.1); }
.direction-card p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.75;
}
.direction-bottom {
	margin-top: 48px;
	text-align: center;
}
.direction-summary {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 24px 40px;
	background: rgba(26, 110, 255, 0.06);
	border: 1px solid rgba(26, 110, 255, 0.2);
	border-radius: 16px;
}
.direction-summary .arrow-icon {
	font-size: 24px;
	color: var(--blue-accent);
}
.direction-summary p {
	font-size: 17px;
	font-weight: 600;
	color: var(--text-primary);
}
.direction-summary p em {
	font-style: normal;
	color: var(--blue-accent);
}

/* ===== IMPACT ===== */
.impact {
	padding: 120px 0;
	background: var(--navy-dark);
}
.impact-header {
	text-align: center;
	margin-bottom: 64px;
}
.impact-header .section-desc { margin: 0 auto; }
.impact-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.impact-card {
	text-align: center;
	padding: 44px 24px;
	background: var(--navy-mid);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	transition: border-color 0.3s;
}
.impact-card:hover { border-color: rgba(26, 110, 255, 0.3); }
.impact-number {
	font-size: 48px;
	font-weight: 900;
	background: var(--gradient-blue);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
	line-height: 1.1;
}
.impact-unit {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 16px;
}
.impact-label {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 8px;
}
.impact-desc {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ===== TARGET ===== */
.target {
	padding: 120px 0;
	background: var(--navy-mid);
}
.target-header {
	text-align: center;
	margin-bottom: 64px;
}
.target-header .section-desc { margin: 0 auto; }
.target-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.target-card {
	padding: 36px 32px;
	background: var(--navy-dark);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	transition: border-color 0.3s;
}
.target-card:hover { border-color: rgba(26, 110, 255, 0.3); }
.target-icon {
	width: 48px;
	height: 48px;
	background: rgba(26, 110, 255, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 18px;
}
.target-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 10px;
}
.target-card p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.75;
}
.target-roles {
	margin-top: 48px;
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
.role-chip {
	padding: 10px 24px;
	background: rgba(26, 110, 255, 0.08);
	border: 1px solid rgba(26, 110, 255, 0.2);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 500;
	color: var(--blue-soft);
}

/* ===== VIDEO ===== */
.video-section {
	padding: 120px 0;
	background: var(--navy-mid);
}
.video-header {
	text-align: center;
	margin-bottom: 48px;
}
.video-header .section-desc { margin: 0 auto; }
.video-wrapper {
	position: relative;
	max-width: 960px;
	margin: 0 auto;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border-color);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.video-wrapper::before {
	content: "";
	display: block;
	padding-top: 56.25%; /* 16:9 비율 */
}

/* ===== CTA ===== */
.cta {
	padding: 120px 0;
	background: var(--navy-dark);
	position: relative;
	overflow: hidden;
}
.cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 900px;
	height: 600px;
	background: radial-gradient(ellipse, rgba(26, 110, 255, 0.1) 0%, transparent 60%);
	pointer-events: none;
}
.cta-box {
	position: relative;
	text-align: center;
	padding: 80px 40px;
	background: linear-gradient(135deg, rgba(26, 110, 255, 0.08) 0%, rgba(26, 110, 255, 0.02) 100%);
	border: 1px solid rgba(26, 110, 255, 0.2);
	border-radius: 24px;
}
.cta-box h2 {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 16px;
}
.cta-box p {
	font-size: 17px;
	color: var(--text-secondary);
	margin-bottom: 40px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
}
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-info {
	margin-top: 32px;
	font-size: 14px;
	color: var(--text-muted);
}
.cta-info a {
	color: var(--blue-accent);
	font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
	padding: 48px 0;
	background: var(--navy-deepest);
	border-top: 1px solid var(--border-color);
}
.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	flex-wrap: wrap;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-info {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 2;
}
.footer-contact { text-align: right; }
.footer-contact p {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 8px;
}
.footer-contact a {
	color: var(--blue-accent);
	font-weight: 600;
}
.footer-copyright {
	text-align: center;
	padding-top: 32px;
	margin-top: 32px;
	border-top: 1px solid var(--border-color);
	font-size: 13px;
	color: var(--text-muted);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
	display: none;
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	background: rgba(11, 15, 26, 0.98);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-color);
	padding: 24px;
	z-index: 999;
}
.mobile-nav.active { display: block; }
.mobile-nav a {
	display: block;
	padding: 14px 0;
	font-size: 16px;
	color: var(--text-secondary);
	border-bottom: 1px solid var(--border-color);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.features-grid { grid-template-columns: repeat(2, 1fr); }
	.direction-grid { grid-template-columns: repeat(2, 1fr); }
	.impact-grid { grid-template-columns: repeat(2, 1fr); }
	.overview-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
	.nav { display: none; }
	.mobile-toggle { display: flex; }
	.hero { padding: 140px 0 80px; }
	.hero h1 { font-size: 32px; }
	.hero p { font-size: 16px; }
	.features-grid { grid-template-columns: 1fr; }
	.direction-grid { grid-template-columns: 1fr; }
	.impact-grid { grid-template-columns: 1fr 1fr; }
	.target-grid { grid-template-columns: 1fr; }
	.overview-stats { grid-template-columns: 1fr 1fr; }
	.cta-box { padding: 48px 24px; }
	.footer-inner { flex-direction: column; }
	.footer-contact { text-align: left; }
	.direction-summary { flex-direction: column; gap: 8px; padding: 20px 24px; }
}
@media (max-width: 480px) {
	.impact-grid { grid-template-columns: 1fr; }
	.overview-stats { grid-template-columns: 1fr; }
	.hero-buttons { flex-direction: column; }
	.hero-buttons a { width: 100%; text-align: center; justify-content: center; }
}

/* ===== ANIMATION ===== */
.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== HERO STAGGERED ANIMATION ===== */
.hero-anim {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
	transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-anim.visible {
	opacity: 1;
	transform: translateY(0);
}
.hero-anim.delay-1 { transition-delay: 0.3s; }
.hero-anim.delay-2 { transition-delay: 0.6s; }
.hero-anim.delay-3 { transition-delay: 0.9s; }
.hero-anim.delay-4 { transition-delay: 1.2s; }
.hero-anim.delay-5 { transition-delay: 1.6s; }