@charset "UTF-8";

:root {
	--bg: #f7f8f2;
	--surface: #ffffff;
	--surface-soft: #eef2ee;
	--text: #1f2530;
	--muted: #636d78;
	--line: #dfe4dd;
	--dark: #252b37;
	--dark-soft: #3f4656;
	--yellow: #fcd535;
	--red: #ff786f;
	--teal: #45a7aa;
}

* {
	box-sizing: border-box;
}

body.landing-page {
	margin: 0;
	background: var(--bg);
	color: var(--text);
}

.landing-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 68px;
	border-bottom: 1px solid rgba(31, 37, 48, .08);
	padding: 0 max(20px, calc((100vw - 1120px) / 2));
	background: rgba(247, 248, 242, .94);
	backdrop-filter: blur(14px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text);
	text-decoration: none;
}

.brand img {
	width: 34px;
	height: 34px;
	border-radius: 8px;
}

.brand span {
	font-size: 16px;
	font-weight: 800;
}

.landing-nav {
	display: inline-flex;
	gap: 8px;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 4px;
	background: var(--surface);
}

.landing-menu-link {
	min-width: 86px;
	border-radius: 6px;
	padding: 10px 16px;
	color: var(--muted);
	font-size: 13px;
	text-align: center;
	text-decoration: none;
}

.landing-menu-link.active {
	background: var(--dark);
	color: var(--surface);
}

main {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.hero-section {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 200px;
	column-gap: 52px;
	row-gap: 34px;
	align-content: center;
	align-items: start;
	min-height: calc(100vh - 68px);
	padding: 34px 0;
}

.hero-copy {
	min-width: 0;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--teal);
	font-size: 14px;
	font-weight: 800;
}

h1,
h2,
h3,
p {
	letter-spacing: 0;
}

h1 {
	margin: 0;
	font-size: 58px;
	line-height: 1.16;
}

h2 {
	margin: 0;
	font-size: 30px;
	line-height: 1.38;
}

h3 {
	margin: 0;
	font-size: 18px;
	line-height: 1.4;
}

.lead {
	width: min(650px, 100%);
	margin: 21px 0 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.62;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.store-button {
	display: flex;
	min-width: 190px;
	min-height: 58px;
	flex-direction: column;
	justify-content: center;
	border: 1px solid var(--dark);
	border-radius: 8px;
	padding: 10px 18px;
	background: var(--surface);
	color: var(--dark);
	text-decoration: none;
}

.store-button.primary {
	background: var(--dark);
	color: var(--surface);
}

.store-button:hover {
	transform: translateY(-1px);
}

.store-label {
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
}

.store-sub {
	margin-top: 4px;
	color: inherit;
	font-size: 12px;
	opacity: .78;
}

.hero-media {
	align-self: start;
	justify-self: center;
	width: min(200px, 100%);
}

.logo-media {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	background: var(--dark-soft);
	box-shadow: 0 24px 80px rgba(31, 37, 48, .18);
	overflow: hidden;
}

.hero-logo {
	display: block;
	width: min(144px, 72%);
	height: auto;
	border-radius: 8px;
}

.flow-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.hero-flow {
	grid-column: 1 / -1;
	margin-top: 0;
}

.hero-support {
	grid-column: 1 / -1;
	margin-top: -22px;
}

.support-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.flow-grid article,
.support-grid article {
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 17px;
	background: var(--surface);
}

.flow-grid strong,
.support-grid strong {
	display: inline-block;
	margin-bottom: 13px;
	color: var(--red);
	font-size: 14px;
	font-weight: 800;
}

.flow-grid p,
.support-grid p {
	margin: 9px 0 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.62;
}

.notice-list {
	margin: 9px 0 0;
	padding: 0;
	list-style: none;
}

.notice-list li {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.62;
}

.notice-list li + li {
	margin-top: 2px;
}

.kakao-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	margin-top: 14px;
	border-radius: 8px;
	padding: 8px 14px;
	background: var(--yellow);
	color: var(--dark);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.kakao-button:hover {
	transform: translateY(-1px);
}

.terms-section {
	padding: 70px 0;
	border-top: 1px solid var(--line);
}

.section-heading {
	width: min(720px, 100%);
	margin-bottom: 26px;
}

.terms-panel {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	overflow: hidden;
}

.terms-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-bottom: 1px solid var(--line);
	background: var(--surface-soft);
}

.terms-tab {
	min-height: 58px;
	border: 0;
	border-right: 1px solid var(--line);
	padding: 10px;
	background: transparent;
	color: var(--muted);
	font-size: 13px;
	cursor: pointer;
}

.terms-tab:last-child {
	border-right: 0;
}

.terms-tab.active {
	background: var(--dark);
	color: var(--surface);
}

.terms-content {
	min-height: 420px;
	max-height: 680px;
	overflow-y: auto;
	padding: 26px;
	color: var(--text);
	font-size: 13px;
	line-height: 1.85;
	white-space: pre-wrap;
}

.terms-content p {
	margin: 0;
	font-size: inherit;
	line-height: inherit;
	white-space: inherit;
}

.landing-footer {
	border-top: 1px solid var(--line);
	padding: 36px 20px 46px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.6;
	background: var(--surface-soft);
}

.footer-inner {
	width: min(1120px, 100%);
	margin: 0 auto;
}

.business-information {
	max-width: 820px;
}

.business-information h2 {
	margin: 0 0 14px;
	color: var(--text);
	font-size: 15px;
	line-height: 1.4;
}

.business-information dl {
	display: grid;
	gap: 4px;
	margin: 0;
}

.business-information dl > div {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 12px;
}

.business-information dt,
.business-information dd {
	margin: 0;
}

.business-information dt {
	color: var(--muted);
}

.business-information dd {
	color: var(--text);
}

.footer-meta {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-top: 28px;
	border-top: 1px solid var(--line);
	padding-top: 22px;
}

.footer-credit {
	opacity: .72;
	text-align: right;
}

@media only screen and (max-width: 920px) {
	main {
		width: min(100% - 28px, 680px);
	}

	.landing-header {
		padding: 0 14px;
	}

	.hero-section {
		grid-template-columns: 1fr;
		gap: 34px;
		min-height: auto;
		padding-top: 42px;
	}

	h1 {
		font-size: 42px;
	}

	.lead {
		font-size: 16px;
	}

	.hero-media {
		display: none;
	}

	.flow-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-support {
		margin-top: -22px;
	}

	.support-grid {
		grid-template-columns: 1fr;
	}

	.footer-meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.footer-credit {
		text-align: left;
	}

	.terms-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.terms-tab:nth-child(2) {
		border-right: 0;
	}

	.terms-tab:nth-child(-n+2) {
		border-bottom: 1px solid var(--line);
	}
}

@media only screen and (max-width: 520px) {
	.landing-header {
		height: auto;
		min-height: 64px;
		flex-wrap: wrap;
		gap: 8px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.landing-nav {
		width: 100%;
	}

	.landing-menu-link {
		flex: 1;
		min-width: 0;
	}

	.hero-actions {
		display: grid;
	}

	.store-button {
		width: 100%;
	}

	.flow-grid {
		grid-template-columns: 1fr;
	}

	.business-information dl > div {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.business-information dl > div + div {
		margin-top: 8px;
	}

	.terms-tabs {
		grid-template-columns: 1fr;
	}

	.terms-tab,
	.terms-tab:nth-child(2),
	.terms-tab:nth-child(-n+2) {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.terms-tab:last-child {
		border-bottom: 0;
	}
}
