:root {
	--bg: #0b0e14;
	--surface: #11161f;
	--line: #1e2633;
	--text: #e6ecf5;
	--muted: #8b97a8;
	--brand: #5eead4;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
	background:
		radial-gradient(60rem 30rem at 85% -10%, rgba(94, 234, 212, 0.07), transparent 60%),
		radial-gradient(50rem 25rem at -10% 30%, rgba(96, 165, 250, 0.05), transparent 60%),
		var(--bg);
	color: var(--text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
.top {
	display: flex; justify-content: space-between; align-items: center;
	max-width: 1080px; margin: 0 auto; padding: 1.4rem 1.5rem;
}
.logo { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; }
.logo em { color: var(--brand); font-style: normal; }
.lang {
	background: var(--surface); color: var(--muted);
	border: 1px solid var(--line); border-radius: 999px;
	padding: 0.35rem 0.9rem; font-size: 0.8rem; font-weight: 700;
	cursor: pointer; transition: color 0.15s, border-color 0.15s;
	font-family: inherit;
}
.lang:hover { color: var(--brand); border-color: var(--brand); }
main { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem 4rem; }
.hero { padding: 4.5rem 0 3.5rem; max-width: 40rem; }
.hero h1 {
	font-size: clamp(2rem, 5.5vw, 3.2rem);
	font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
	margin-bottom: 1rem;
}
.hero p { color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.15rem); }
.group { margin-top: 2.5rem; }
.group h2 {
	font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
	text-transform: uppercase; color: var(--muted); margin-bottom: 1rem;
}
.grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(3, 1fr); } }
.card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 1.5rem;
	display: flex; flex-direction: column; gap: 0.75rem;
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
	box-shadow: 0 12px 32px -16px color-mix(in srgb, var(--accent) 35%, transparent);
}
.card img {
	width: 64px; height: 64px; border-radius: 14px;
	border: 1px solid var(--line);
}
.card h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.badge {
	font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
	color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
	border-radius: 999px; padding: 0.1rem 0.5rem;
}
.card p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.store {
	align-self: flex-start;
	color: var(--accent); text-decoration: none;
	font-size: 0.85rem; font-weight: 700;
	border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
	border-radius: 999px; padding: 0.45rem 1rem;
	transition: background 0.15s, color 0.15s;
}
.store:hover { background: var(--accent); color: var(--bg); }
footer {
	border-top: 1px solid var(--line);
	max-width: 1080px; margin: 0 auto; padding: 1.6rem 1.5rem;
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
	color: var(--muted); font-size: 0.85rem;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--brand); }
