@charset "UTF-8";

/* ============================================================
   Header
   ============================================================ */
.header {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: var(--header-h);
	background: rgba(10, 26, 61, 0);
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	z-index: 1000;
	transition: background .4s ease, backdrop-filter .4s ease, -webkit-backdrop-filter .4s ease, box-shadow .4s ease;
}
.header.scrolled {
	background: rgba(10, 26, 61, 0.98);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}
.logo {
	display: inline-flex;
	align-items: center;
	height: 100%;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity .4s ease, transform .4s ease;
	pointer-events: none;
}
.header.scrolled .logo {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.logo-img {
	height: calc(var(--header-h) - 30px);
	width: auto;
}
.gnb ul {
	display: flex;
	gap: 8px;
}
.gnb a {
	display: inline-block;
	padding: 10px 22px;
	color: var(--c-text);
	font-weight: 600;
	font-size: 18px;
	border-radius: 4px;
	transition: color .2s, background .2s;
}
.gnb a:hover {
	color: var(--c-accent);
	background: rgba(255, 255, 255, 0.06);
}
.gnb-toggle {
	display: none;
	width: 40px; height: 40px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.gnb-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform .3s, opacity .2s;
}
.gnb-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gnb-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gnb-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   Hero
   ============================================================ */
.hero {
	position: relative;
	height: 100vh;
	width: 100%;
	margin: 0 auto;
	padding: calc(var(--header-h) + 60px) 0 80px;
	color: var(--c-text);
	overflow: hidden;
	display: flex;
	align-items: center;
	background-color: #161E3A;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background-color: transparent;
	background-image:
		url('../images/visual_new_3.webp'),
		linear-gradient(to bottom, #113675, #182555),
		linear-gradient(to bottom, #121c41, #10183a);
	background-size:
		auto 100%,
		50% 100%,
		50% 100%;
	background-position:
		center center,
		left center,
		right center;
	background-repeat: no-repeat;
	z-index: 0;
}
.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(0, 180, 255, 0.15) 0%, rgba(10, 26, 61, 0.0) 60%);
	pointer-events: none;
}
.hero-inner {
	text-align: center;
}
.hero-slogan {
	font-size: 20px;
	color: var(--c-text-sub);
	letter-spacing: 0.02em;
	margin-bottom: 24px;
	line-height: 1.7;
}
.hero-title {
	font-size: 56px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 60px;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Countdown */
.countdown {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 56.39vh;
	gap: 20px;
	position: absolute;
	z-index: 1;
	bottom: calc(15vh + 10px);
	left: calc(50vw - 78.89vh);
	padding: 16px 30px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.countdown-title {
	margin: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.countdown-row {
	display: inline-flex;
	align-items: flex-start;
	gap: 10px;
}
.cd-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 56px;
}
.cd-item strong {
	font-size: 36px;
	font-weight: 800;
	color: #ffb86c;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.02em;
}
.cd-item span {
	margin-top: 4px;
	font-size: 11px;
	font-weight: 600;
	color: var(--c-text-sub);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.cd-sep {
	font-size: 32px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1;
}
.countdown-label {
	margin-top: 22px;
	font-size: 16px;
	color: var(--c-text-sub);
	letter-spacing: 0.02em;
}


/* ============================================================
   Overview
   ============================================================ */
.section-overview { background: #fff; }
.overview-wrap {
	display: grid;
	grid-template-columns: 468px 1fr;
	gap: 50px;
	align-items: start;
}
.overview-poster img {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 20px 50px rgba(10, 26, 61, 0.2);
}
.overview-intro {
	font-size: 20px;
	color: var(--c-text-dark-sub);
	line-height: 1.8;
	padding-bottom: 20px;
}
.overview-intro strong {
	font-size: 22px;
	font-weight: 800;
}
.info-list {
	display: block;
}
.info-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 18px 4px;
	border-bottom: 1px solid var(--c-line);
}
.info-item:first-child { padding-top: 4px; }
.info-item.single { align-items: center; }
.info-item:last-child { border-bottom: 0; padding-bottom: 4px; }
.info-label {
	flex: 0 0 90px;
	display: inline-block;
	padding: 6px 0;
	text-align: center;
	border-radius: 999px;
	background: var(--c-primary);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	white-space: nowrap;
}
.info-value {
	flex: 1 1 auto;
	font-size: 15px;
	color: var(--c-text-dark);
	line-height: 1.75;
	margin: 0;
}
.schedule-info-table {
	width: calc(100% - 10px);
	margin-left: 10px;
	border-collapse: collapse;
	font-size: 14px;
	color: var(--c-text-dark);
	table-layout: fixed;
}
.schedule-info-table col:nth-child(1) { width: 18%; }
.schedule-info-table col:nth-child(2) { width: 46%; }
.schedule-info-table col:nth-child(3) { width: 36%; }
.schedule-info-table td {
	padding: 6px 8px;
	border-bottom: 1px solid #cccccc;
	line-height: 1.6;
}
.schedule-info-table tr:last-child td {
	border-bottom: none;
}
.schedule-info-table td:first-child {
	color: var(--c-primary);
}
.prize-group { margin-bottom: 14px; }
.prize-group:last-child { margin-bottom: 0; }
.prize-group h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--c-primary-light);
	margin-bottom: 6px;
	padding-left: 10px;
	border-left: 3px solid var(--c-accent-dark);
}
.prize-table {
	width: calc(100% - 20px);
	margin-left: 10px;
	border-collapse: collapse;
	font-size: 14px;
	color: var(--c-text-dark);
	table-layout: fixed;
}
.prize-table col:nth-child(1) { width: 18%; }
.prize-table col:nth-child(2) { width: 46%; }
.prize-table col:nth-child(3) { width: 14%; }
.prize-table col:nth-child(4) { width: 22%; }
.prize-table td {
	padding: 6px 8px;
	border-bottom: 1px solid #cccccc;
}
.prize-table td:last-child {
	text-align: center;
}
.prize-table tr:last-child td {
	border-bottom: none;
}


/* ============================================================
   Recruit
   ============================================================ */
.section-recruit {
	background: var(--c-bg-light);
}
.recruit-wrap {
	display: flex;
	flex-direction: column;
	gap: 36px;
}
.recruit-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.recruit-item {
}
.recruit-label {
	font-size: 19px;
	font-weight: 800;
	color: var(--c-primary);
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--c-primary);
}
.recruit-value {
	font-size: 15px;
	color: var(--c-text-dark);
	line-height: 1.75;
}
.recruit-list {
	margin-bottom: 20px;
}
.recruit-list li {
	position: relative;
	padding: 6px 0 6px 18px;
	font-size: 15px;
	color: var(--c-text-dark);
	line-height: 1.7;
}
.recruit-list li::before {
	content: "";
	position: absolute;
	top: 16px;
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--c-accent-dark);
	border-radius: 50%;
}
.recruit-example {
	background: rgba(244, 247, 251, 0.3);
	border: 1px dashed #b0b8c9;
	border-radius: 10px;
	padding: 24px 28px;
	max-width: 780px;
	margin: 0 auto;
}
.recruit-example-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--c-primary);
	margin-bottom: 12px;
	text-align: center;
}
.recruit-example-title .underline {
	text-decoration: underline;
	text-underline-offset: 4px;
}
.recruit-example-title .sub {
	font-size: 13px;
	font-weight: 400;
	color: var(--c-text-dark-sub);
}
.recruit-example ul li {
	position: relative;
	padding: 4px 0 4px 18px;
	font-size: 14px;
	color: var(--c-text-dark);
	line-height: 1.7;
}
.recruit-example ul li::before {
	content: "";
	position: absolute;
	top: 14px;
	left: 0;
	width: 5px;
	height: 5px;
	background: var(--c-text-dark-sub);
	border-radius: 50%;
}
.recruit-roadmap {
	display: flex;
	align-items: stretch;
	gap: 0;
	margin-top: 20px;
}
.roadmap-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #f3f3f3;
	border: 1px solid #b0b8c9;
	border-radius: 10px;
	padding: 24px 20px;
	text-align: center;
}
.roadmap-step strong {
	display: block;
	font-size: 18px;
	font-weight: 800;
	color: var(--c-primary);
	margin-bottom: 12px;
	line-height: 1.5;
}
.roadmap-step span {
	font-size: 13px;
	color: var(--c-text-dark-sub);
	line-height: 1.6;
}
.roadmap-step .highlight {
	color: var(--c-accent-dark);
	font-weight: 700;
	font-size: 15px;
}
.roadmap-arrow {
	display: flex;
	align-items: center;
	padding: 0 20px 0 10px;
	font-size: 0;
	border:0px #cccccc solid;
}
.roadmap-arrow::after {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	border-top: 3px solid var(--c-accent-dark);
	border-right: 3px solid var(--c-accent-dark);
	transform: rotate(45deg);
}


/* ============================================================
   Schedule (Timeline)
   ============================================================ */
.section-schedule {
	background: #fff;
}
.timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	position: relative;
	counter-reset: t;
}
.timeline::before {
	content: "";
	position: absolute;
	top: 35px;
	left: 10%;
	right: 10%;
	height: 2px;
	background: linear-gradient(to right, var(--c-accent-dark) 0%, var(--c-secondary) 100%);
	z-index: 0;
}
.timeline-item {
	position: relative;
	z-index: 1;
	text-align: center;
}
.t-circle {
	width: 70px;
	height: 70px;
	margin: 0 auto 24px;
	background: #fff;
	border: 3px solid #c5c9d3;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	font-weight: 800;
	color: var(--c-primary);
}
.timeline-item:first-child .t-circle {
	border: 4px solid var(--c-accent-dark);
}
.t-body h3 {
	font-size: 19px;
	font-weight: 700;
	color: var(--c-primary);
	margin-bottom: 8px;
}
.t-date {
	font-size: 16px;
	font-weight: 700;
	color: var(--c-secondary);
	margin-bottom: 10px;
}
.t-desc {
	font-size: 14px;
	color: var(--c-text-dark-sub);
	line-height: 1.6;
}


/* ============================================================
   Apply
   ============================================================ */
.section-apply { background: var(--c-bg-light); }
.apply-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 60px;
}
.apply-box {
	background: #fff;
	padding: 36px 36px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(10, 26, 61, 0.06);
}
.apply-box h3 {
	font-size: 22px;
	font-weight: 800;
	color: var(--c-primary);
	margin-bottom: 22px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--c-primary);
}
.apply-box ul li {
	position: relative;
	padding: 8px 0 8px 18px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--c-text-dark);
}
.apply-box ul li::before {
	content: "";
	position: absolute;
	top: 17px;
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--c-accent-dark);
	border-radius: 50%;
}
.apply-box .form-tag {
	display: inline-block;
	margin-left: 6px;
	padding: 1px 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--c-primary);
	background: rgba(124, 92, 219, 0.15);
	border-radius: 3px;
}
.apply-box .sub {
	display: inline-block;
	margin-top: 4px;
	font-size: 13px;
	color: var(--c-text-dark-sub);
}
.apply-box_add {
	margin-top: 20px;
	padding-left: 18px;
	font-size: 13px;
	color: var(--c-text-dark-sub);
	line-height: 1.7;
}
.apply-box a { color: var(--c-secondary); text-decoration: underline; }
.apply-box a.mail-link {
	color: #0a3a8a;
	font-weight: 700;
	text-decoration: none;
}

.apply-box h3.apply-h3-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
}
.apply-box .apply-h3-date {
	font-size: 15px;
	font-weight: 700;
	color: var(--c-text-dark-sub);
}

.apply-doc-list li {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding-left: 0;
}
.apply-doc-list li::before {
	display: none;
}
.apply-doc-list .doc-text {
	flex: 0 0 auto;
	padding-left: 18px;
	text-indent: -18px;
}
.apply-doc-list .doc-text::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 12px;
	background: var(--c-accent-dark);
	border-radius: 50%;
	vertical-align: middle;
	position: relative;
	top: -1px;
	text-indent: 0;
}
.apply-doc-list .doc-text .sub {
	text-indent: 0;
}
.apply-doc-list .doc-leader {
	flex: 1 1 auto;
	min-width: 20px;
	height: 1px;
	border-bottom: 2px dotted var(--c-text-dark-sub);
	align-self: center;
	margin-top: 4px;
}
.apply-doc-list .doc-download {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: var(--c-secondary);
	border-radius: 999px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s;
}
.apply-doc-list .doc-download img {
	width: 14px;
	height: 14px;
	display: block;
}
.apply-doc-list .doc-download:hover {
	background: var(--c-primary);
}

/* Download area */
.download-area { text-align: center; }
.download-title {
	font-size: 22px;
	font-weight: 800;
	color: var(--c-primary);
	margin-bottom: 26px;
}
.download-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.download-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 20px;
	background: #fff;
	border: 2px solid var(--c-line);
	border-radius: 10px;
	transition: all .25s;
}
.download-btn:hover {
	border-color: var(--c-accent-dark);
	background: var(--c-primary);
	transform: translateY(-4px);
	box-shadow: 0 16px 30px rgba(10, 26, 61, 0.18);
}
.download-btn:hover .d-num,
.download-btn:hover .d-name { color: #fff; }
.download-btn:hover .d-cta { background: var(--c-accent-dark); color: #fff; }
.d-num {
	font-size: 13px;
	font-weight: 700;
	color: var(--c-secondary);
	letter-spacing: 0.06em;
	margin-bottom: 8px;
}
.d-name {
	font-size: 17px;
	font-weight: 700;
	color: var(--c-primary);
	margin-bottom: 18px;
	text-align: center;
}
.d-cta {
	display: inline-block;
	padding: 8px 22px;
	background: rgba(10, 26, 61, 0.08);
	color: var(--c-primary);
	font-size: 13px;
	font-weight: 700;
	border-radius: 20px;
	transition: all .25s;
}


/* ============================================================
   Final / Awards
   ============================================================ */
.section-final {
	background: linear-gradient(180deg, #06122e 0%, #0a1a3d 100%);
	color: var(--c-text);
}
.section-final .section-title { color: #fff; }
.section-final .section-title::after { background: var(--c-accent); }
.final-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.final-wrap--single {
	grid-template-columns: 1fr;
}
.final-box--coming {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
}
.coming-soon {
	font-size: 36px;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.1em;
}
.final-box {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 36px;
	border-radius: 12px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.final-box h3 {
	font-size: 22px;
	font-weight: 800;
	color: var(--c-accent);
	margin-bottom: 22px;
	padding-bottom: 14px;
	border-bottom: 2px solid rgba(196, 168, 255, 0.4);
}
.f-meta {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 8px 14px;
	margin-bottom: 22px;
	font-size: 15px;
}
.f-meta dt { font-weight: 700; color: var(--c-text-sub); }
.f-meta dd { color: #fff; }
.schedule-table {
	border-top: 2px solid rgba(255, 255, 255, 0.2);
}
.schedule-table thead th {
	padding: 12px 14px;
	font-size: 14px;
	font-weight: 700;
	color: var(--c-accent);
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.schedule-table tbody td {
	padding: 13px 14px;
	font-size: 14px;
	color: var(--c-text-sub);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	line-height: 1.6;
}
.schedule-table thead th:first-child,
.schedule-table tbody td:first-child {
	width: 38%;
	white-space: nowrap;
	color: #fff;
	font-weight: 600;
}


/* ============================================================
   Partners
   ============================================================ */
.section-partners {
	background: #fff;
	padding: 80px 0;
}
.partners-group {
	display: grid;
	grid-template-columns: 120px 1fr;
	align-items: center;
	gap: 30px;
	padding: 30px 0;
	border-bottom: 2px dotted #cdd2dc;
}
.partners-group:last-child { border-bottom: 0; }
.p-label {
	font-size: 18px;
	font-weight: 800;
	color: var(--c-primary);
	text-align: center;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--c-bg-light);
	border-radius: 8px;
}
.logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}
.logos img {
	width: 240px;
	height: 26px;
	object-fit: contain;
	padding: 12px 0;
	background: #fff;
	border: 1px solid #c5c9d3;
	border-radius: 8px;
	box-sizing: content-box;
	filter: grayscale(20%);
	transition: filter .25s, transform .25s;
}
.logos img:hover {
	filter: grayscale(20%);
}


/* ============================================================
   Footer
   ============================================================ */
.footer {
	background: #000;
	color: rgba(255, 255, 255, 0.6);
	padding: 40px 0;
	text-align: center;
}
.footer .copyright {
	font-size: 13px;
	letter-spacing: 0.02em;
}


/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
	/* Header */
	.gnb a { padding: 10px 14px; font-size: 15px; }

	/* Hero */
	.hero-title { font-size: 44px; }
	.cd-item strong { font-size: 44px; }
	.cd-item { min-width: 64px; }
	.cd-sep { font-size: 40px; }
	.countdown { padding: 22px 28px; gap: 10px; }

	/* Overview */
	.overview-wrap { grid-template-columns: 390px 1fr; gap: 36px; }

	/* Timeline */
	.timeline { grid-template-columns: repeat(5, 1fr); gap: 12px; }
	.t-circle { width: 60px; height: 60px; font-size: 22px; }
	.timeline::before { top: 30px; }
	.t-body h3 { font-size: 17px; }

	/* Apply */
	.apply-box { padding: 28px; }

	/* Final */
	.final-box { padding: 28px; }
}

@media (max-width: 768px) {
	:root { --header-h: var(--header-h-mobile); }

	/* Header */
	.header { height: var(--header-h-mobile); }
	.gnb {
		position: fixed;
		top: var(--header-h-mobile);
		left: 0; right: 0;
		background: rgba(10, 26, 61, 0.98);
		max-height: 0;
		overflow: hidden;
		transition: max-height .3s ease;
	}
	.gnb.open { max-height: 400px; }
	.gnb ul { flex-direction: column; gap: 0; padding: 12px 0; }
	.gnb a {
		display: block;
		padding: 14px 24px;
		border-radius: 0;
		font-size: 16px;
	}
	.gnb-toggle { display: flex; }

	/* Hero */
	.hero {
		height: auto;
		min-height: auto;
		padding: 0;
		display: block;
		overflow: visible;
	}
	.hero-inner {
		position: static;
		padding: 30px 20px;
	}
	.hero-bg {
		position: relative;
		inset: auto;
		height: calc(100vw * 1092 / 1941);
		background-size: 100% auto;
		overflow: hidden;
	}
	.hero-slogan { font-size: 16px; }
	.hero-title { font-size: 30px; margin-bottom: 40px; }
	.countdown {
		display: flex;
		flex-direction: column;
		position: static;
		transform: none;
		width: 90%;
		max-width: 90%;
		margin: 0 auto;
		padding: 18px 20px;
		gap: 12px;
		flex-wrap: nowrap;
	}
	.countdown-title { font-size: 20px; }
	.countdown-row { gap: 6px; }
	.cd-item { min-width: 52px; }
	.cd-item strong { font-size: 32px; }
	.cd-item span { font-size: 11px; margin-top: 4px; }
	.cd-sep { font-size: 28px; }

	/* Overview */
	.overview-wrap { grid-template-columns: 1fr; gap: 30px; }
	.overview-poster { max-width: 320px; margin: 0 auto; }
	.info-item { flex-direction: column; gap: 6px; padding: 14px 2px; }
	.info-item.single { align-items: flex-start; }
	.info-label { flex: 0 0 auto; padding: 5px 12px; font-size: 13px; }
	.info-value { font-size: 14px; }

	/* Recruit */
	.recruit-row { grid-template-columns: 1fr; }
	.recruit-roadmap { flex-direction: column; gap: 0; }
	.roadmap-arrow { justify-content: center; padding: 0px 0 14px 0; }
	.roadmap-arrow::after { transform: rotate(135deg); }

	/* Timeline */
	.timeline { grid-template-columns: 1fr; gap: 30px; }
	.timeline::before { display: none; }
	.timeline-item {
		display: grid;
		grid-template-columns: 70px 1fr;
		text-align: left;
		gap: 18px;
		align-items: start;
	}
	.t-circle { margin: 0; width: 60px; height: 60px; font-size: 22px; }
	.t-body { padding-top: 4px; }

	/* Apply */
	.apply-wrap { grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
	.apply-box { padding: 24px; }
	.apply-box h3 { font-size: 19px; }
	.apply-doc-list li { flex-direction: column; align-items: flex-start; gap: 6px; }
	.apply-doc-list .doc-leader { display: none; }
	.apply-doc-list .doc-download { margin-left: 18px; }
	.download-list { grid-template-columns: 1fr; gap: 14px; }
	.download-btn { padding: 22px; }

	/* Final */
	.final-wrap { grid-template-columns: 1fr; gap: 20px; }
	.final-box { padding: 24px; }
	.final-box h3 { font-size: 19px; }
	.schedule-table thead th,
	.schedule-table tbody td { padding: 10px; font-size: 13px; }

	/* Partners */
	.partners-group {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 24px 0;
		text-align: center;
	}
	.logos { justify-content: center; gap: 20px 30px; }
	.logos img { width: 168px; height: 24px; padding: 10px 0; }
}

@media (max-width: 480px) {
	.hero-title { font-size: 24px; }
	.cd-item strong { font-size: 26px; }
	.cd-item { min-width: 44px; }
	.cd-sep { font-size: 22px; }
	.countdown { padding: 14px 10px; }
	.section-title { font-size: 22px; }
}
