* {
	box-sizing: border-box;
}

:root {
	--bg: #f5f7fb;
	--text: #111111;
	--muted: #6b7280;
	--line: rgba(17, 17, 17, 0.08);
	--white: rgba(255, 255, 255, 0.72);
	--white-strong: rgba(255, 255, 255, 0.9);
	--black: #111111;
	--radius-lg: 20px;
	--radius-md: 14px;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: "Pretendard", system-ui, sans-serif;
	background: var(--bg);
	color: var(--text);
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
}

.container {
	width: min(1200px, calc(100% - 40px));
	margin: 0 auto;
}

main {
	flex: 1;
	padding: 60px 0 100px;
}

.page-content,
.dummy-content {
	min-height: 60vh;
	padding: 40px 0;
}

.page-content h1,
.dummy-content h1 {
	margin: 0 0 20px;
	font-size: clamp(40px, 7vw, 88px);
	line-height: 0.95;
	letter-spacing: -0.04em;
}

.page-content p,
.dummy-content p {
	margin: 0 0 14px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.7;
}

@media (max-width: 960px) {
	.gnb,
	.header-actions .btn {
		display: none;
	}

	.menu-toggle {
		display: inline-block;
	}

	.mobile-menu.active {
		display: block;
	}

	.footer-top {
		grid-template-columns: 1fr;
	}

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.container {
		width: min(100% - 24px, 1200px);
	}

	.header-inner {
		padding: 12px 14px;
	}

	.brand-text {
		font-size: 14px;
	}

	.footer-links {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}