:root {
	--content-width: 1280px;
	--nav-content-width: 88.8889%;
	--footer-content-width: 88.8889vw;
	--ink: #251c18;
	--muted: #6f625d;
	--soft: #fff3dd;
	--pink: #ff75a5;
	--blue: #56aaf2;
	--green: #94a35b;
	--yellow: #ffc84f;
	--line: rgba(96, 75, 55, 0.14);
	color: var(--ink);
	background: #FFF;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
	line-height: 1.5;
	text-rendering: optimizeLegibility;
	word-break: keep-all;
	overflow-wrap: break-word;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scrollbar-gutter: stable;
}

body {
	margin: 0;
	background: #FFF;
}

a {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
}

.page {
	min-height: 100vh;
	overflow: hidden;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10070;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(var(--nav-content-width), calc(100% - 64px));
	height: 120px;
	margin: 0 auto;
	padding: 0;
	background: transparent;
}

.brand {
	display: inline-flex;
	align-items: center;
	width: 64px;
	height: 64px;
	text-decoration: none;
}

.wm-mark {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.menu-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	box-shadow: none;
	color: #000000;
	cursor: pointer;
	text-decoration: none;
	appearance: none;
	transition: color 180ms ease;
}

.menu-link::before {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #0066ff;
	opacity: 0;
	content: "";
	transition: opacity 180ms ease;
	pointer-events: none;
}

.menu-link span {
	position: relative;
	z-index: 1;
	display: block;
	width: 32px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
	transition: opacity 180ms ease, transform 180ms ease;
}

.menu-link:hover,
.menu-link:focus-visible {
	color: #ffffff;
	outline: none;
}

.menu-link:hover::before,
.menu-link:focus-visible::before {
	opacity: 1;
}

.menu-link {
	flex-direction: column;
	gap: 8px;
}

.menu-panel {
	position: fixed;
	inset: 0;
	z-index: 50;
	width: 100vw;
	height: 100dvh;
	min-height: 100dvh;
	padding: 128px 0 64px;
	background: #ffffff;
	color: #000000;
	overflow-x: hidden;
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-100%);
	transition:
		transform 520ms cubic-bezier(0.76, 0, 0.24, 1),
		opacity 220ms ease;
}

.menu-panel__inner {
	width: min(var(--content-width), calc(100% - 64px));
	margin: 0 auto;
}

body.is-menu-open {
	overflow: hidden;
}

body.is-menu-open .menu-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

body.is-menu-open .menu-link {
	position: relative;
	z-index: 60;
	color: #ffffff;
}

body.is-menu-open .menu-link::before {
	opacity: 1;
}

body.is-menu-open .menu-link span:nth-child(2) {
	opacity: 0;
}

body.is-menu-open .menu-link span:nth-child(1) {
	transform: translateY(11px) rotate(45deg);
}

body.is-menu-open .menu-link span:nth-child(3) {
	transform: translateY(-11px) rotate(-45deg);
}

.menu-panel__nav {
	position: relative;
	z-index: 1;
	min-height: calc(100dvh - 224px);
	display: grid;
	grid-template-columns: 1fr;
	align-content: center;
	justify-items: center;
	gap: 16px;
	text-align: center;
}

.menu-panel__item {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: auto;
	padding: 0 0.16em 0 0.08em;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #000000;
	font-size: clamp(64px, 7vw, 100px);
	font-weight: 700;
	line-height: .86;
	letter-spacing: -.08em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	opacity: 0;
	transform: translate3d(0, 42px, 0);
	transition:
		color 160ms ease,
		transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 360ms ease;
	transition-delay: calc(120ms + var(--menu-item-delay, 0ms));
}

.menu-panel__item strong {
	position: relative;
	display: block;
	padding-right: .08em;
	color: currentColor;
	font: inherit;
	letter-spacing: inherit;
	transform-origin: center;
	transition:
		color 220ms ease,
		letter-spacing 420ms cubic-bezier(0.19, 1, 0.22, 1),
		transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-panel__item strong::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -.08em;
	height: .055em;
	background: #0e4be1;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
	content: "";
}

body.is-menu-open .menu-panel__item {
	opacity: 1;
	transform: translateY(0);
}

.menu-panel__item[aria-disabled="true"] {
	color: #000000;
	cursor: default;
}

.menu-panel__item:hover,
.menu-panel__item[href]:hover,
.menu-panel__item[href]:focus-visible,
.menu-panel__item.active {
	color: #000000;
	outline: 0;
}

.menu-panel__item:hover strong,
.menu-panel__item[href]:hover strong,
.menu-panel__item[href]:focus-visible strong,
.menu-panel__item.active strong {
	color: #0e4be1;
	letter-spacing: -.045em;
	transform: skewX(-5deg) translate3d(0, -.03em, 0);
}

.menu-panel__item:hover strong::after,
.menu-panel__item[href]:hover strong::after,
.menu-panel__item[href]:focus-visible strong::after,
.menu-panel__item.active strong::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.menu-panel__copy {
	position: relative;
	z-index: 1;
	width: min(360px, 100%);
	margin: 0 auto;
	color: rgba(0, 0, 0, .48);
	font-size: 12px;
	font-weight: 700;
	line-height: 130%;
	letter-spacing: .08em;
	text-align: center;
	text-transform: uppercase;
}

.hero {
	position: relative;
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 1220px;
	padding: 0 max(32px, calc((100vw - var(--content-width)) / 2));
	background: url("hero-desktop-1920x1220.png") center bottom / cover no-repeat;
}

.hero-inner {
	position: absolute;
	top: 644px;
	left: 50%;
	z-index: 1;
	display: grid;
	justify-items: center;
	width: min(908px, calc(100% - 64px));
	height: 454px;
	transform: translateX(-50%);
	text-align: center;
}

.hero-logo {
	position: absolute;
	top: 212px;
	left: 50%;
	width: min(620px, 64vw);
	transform: translateX(-50%);
	filter: drop-shadow(0 22px 22px rgba(121, 73, 31, 0.18));
}

.hero-kicker {
	margin: 0 0 52px;
	color: #5b4336;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
}

.hero-title {
	max-width: 920px;
	margin: 0;
	color: #2a211e;
	font-size: 68px;
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: 0;
}

.store-links {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 457px;
	height: 64px;
	gap: 18px;
	margin: 56px 0 44px;
}

.store-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	gap: 8px;
	border: 0;
	border-radius: 40px;
	background: #000000;
	color: #ffffff;
	cursor: pointer;
	font-family: inherit;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 136.4%;
	letter-spacing: -0.4268px;
	text-decoration: none;
	white-space: nowrap;
	appearance: none;
	outline-offset: 4px;
	transform: translateY(0);
	transition:
		transform 220ms cubic-bezier(0.19, 1, 0.22, 1);
}

.store-button:hover,
.store-button:focus-visible {
	transform: translateY(-4px);
}

.store-button:focus-visible {
	outline: 2px solid currentColor;
}

.store-button--google {
	justify-content: center;
	width: 229px;
	padding: 12px 32px;
}

.store-button--app-store {
	width: 210px;
	padding: 10px 32px;
	background: #000000;
}

.store-button img {
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.store-button--google img {
	width: 24px;
	height: 24px;
	flex-basis: 24px;
	filter: brightness(0) invert(1);
}

.store-button--app-store img {
	width: 24px;
	height: 24px;
	flex-basis: 24px;
	filter: none;
}

.hero-description {
	max-width: 551px;
	margin: 0;
	color: #2A2A2A;
	text-align: center;
	font-family: "Pretendard JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 136.4%;
	letter-spacing: -0.427px;
}

.content {
	width: min(var(--content-width), calc(100% - 64px));
	margin: 0 auto;
	padding: 98px 0 116px;
}

.section-title {
	margin: 0 0 40px;
	color: #000;
	font-family: "Pretendard JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
	font-size: 48px;
	font-style: normal;
	font-weight: 600;
	line-height: 110%;
	letter-spacing: -0.96px;
}

.feature-panels {
	display: grid;
	gap: 56px;
}

.feature-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
	align-items: center;
	min-height: 680px;
	overflow: hidden;
	border-radius: 22px;
	background: #fff1d9 center / cover no-repeat;
	box-shadow: 0 20px 46px rgba(128, 79, 29, 0.08);
}

.is-sequence-reveal-ready .sequence-reveal-item {
	opacity: 0;
	transform: translate3d(0, 50px, 0);
	transition:
		opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--sequence-reveal-delay, 0ms);
}

.is-sequence-reveal-ready .sequence-reveal-group.is-sequence-resetting .sequence-reveal-item {
	transition: none;
}

.is-sequence-reveal-ready .sequence-reveal-group.is-sequence-revealed .sequence-reveal-item {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.is-sequence-reveal-ready .hero-logo.sequence-reveal-item {
	transform: translateX(-50%) translate3d(0, 50px, 0);
}

.is-sequence-reveal-ready .sequence-reveal-group.is-sequence-revealed .hero-logo.sequence-reveal-item {
	transform: translateX(-50%) translate3d(0, 0, 0);
}

.feature-panel--campaign {
	background-image: url("feature-relationship.png");
}

.feature-panel--sound {
	background-image: url("feature-daily.png");
}

.feature-panel--sound .feature-copy {
	width: 489px;
}

.feature-panel--shop {
	background-image: url("feature-remedy.png");
}

.feature-panel--shop .feature-copy {
	width: 518px;
}

.feature-copy {
	position: absolute;
	top: 240px;
	left: 60px;
	z-index: 2;
	width: 496px;
	height: 360px;
	padding: 0;
}

#feature-title,
.feature-panel {
	scroll-margin-top: 132px;
}

.eyebrow {
	margin: 0 0 11px;
	color: #1f1f1f;
	font-size: 17px;
	font-weight: 600;
	line-height: 25px;
}

.feature-copy h2 {
	margin: 0;
	color: #000;
	font-size: 32px;
	font-weight: 700;
	line-height: 44px;
	letter-spacing: 0;
}

.feature-copy ul {
	display: grid;
	gap: 4px;
	margin: 184px 0 0;
	padding: 0;
	color: #8e8e8e;
	font-size: 15px;
	font-weight: 500;
	line-height: 24px;
	list-style: none;
}

.feature-copy li {
	position: relative;
	padding-left: 16px;
}

.feature-copy li::before {
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #9e8a7c;
	content: "";
}

.feature-mobile-visual {
	display: none;
}

.feature-art {
	position: relative;
	z-index: 1;
	display: none;
	align-items: center;
	justify-items: center;
	min-height: 680px;
	padding: 44px;
}

.character-art {
	width: min(520px, 86%);
	align-self: end;
	filter: drop-shadow(0 22px 24px rgba(128, 73, 25, 0.16));
}

.keycap-stage {
	position: relative;
	width: min(650px, 100%);
	min-height: 430px;
}

.keycap {
	position: absolute;
	width: 185px;
	filter: drop-shadow(0 18px 16px rgba(102, 69, 46, 0.2));
}

.keycap.blue {
	left: 36px;
	top: 170px;
}

.keycap.yellow {
	left: 248px;
	top: 214px;
}

.keycap.pink {
	left: 438px;
	top: 176px;
}

.tap-label {
	position: absolute;
	color: #7d4b2e;
	font-size: 34px;
	font-weight: 900;
	line-height: 1;
	text-shadow: 0 4px 0 rgba(255, 255, 255, 0.85);
	transform: rotate(-10deg);
}

.tap-label.one {
	left: 245px;
	top: 118px;
}

.tap-label.two {
	left: 348px;
	top: 74px;
	color: #e25f8e;
	transform: rotate(8deg);
}

.sound-wave {
	position: absolute;
	left: 312px;
	top: 122px;
	width: 180px;
	height: 180px;
	border: 5px solid rgba(255, 117, 165, 0.42);
	border-left-color: transparent;
	border-bottom-color: transparent;
	border-radius: 50%;
	transform: rotate(-25deg);
}

.sound-wave::after {
	position: absolute;
	inset: 28px;
	border: 4px solid rgba(86, 170, 242, 0.34);
	border-left-color: transparent;
	border-bottom-color: transparent;
	border-radius: 50%;
	content: "";
}

.sticker-stage {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	width: min(560px, 100%);
	padding: 24px;
}

.sticker-card {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border: 1px solid rgba(105, 78, 50, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 14px 28px rgba(108, 75, 45, 0.1);
}

.sticker-card img {
	width: 78%;
}

.notice {
	width: min(822px, 100%);
	margin: 80px auto 0;
	text-align: center;
}

.notice p {
	margin: 0;
	color: #171717;
	text-align: center;
	font-family: "Pretendard JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 144.5%;
	letter-spacing: -0.004px;
}

.notice p + p {
	margin-top: 40px;
}

.info-list {
	display: grid;
	grid-template-columns: repeat(4, max-content);
	column-gap: 80px;
	align-items: start;
	justify-content: center;
	width: 100%;
	height: 60px;
	margin: 103px auto 0;
	color: #000;
}

.info-item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	height: 60px;
	text-align: center;
}

.info-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.info-item:not(:last-child)::after {
	position: absolute;
	top: 18px;
	left: calc(100% + 40px);
	width: 1px;
	height: 24px;
	background: rgba(112, 115, 124, 0.28);
	content: "";
}

.info-item strong {
	display: block;
	height: 20px;
	color: #8a8a8a;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.info-item span,
.info-item a {
	display: block;
	height: 32px;
	color: #000;
	text-align: center;
	font-feature-settings: 'ss10' on;
	font-family: "Pretendard JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 133.4%;
	letter-spacing: -0.552px;
	text-decoration: none;
	white-space: nowrap;
}

.info-item a,
.info-item a:visited,
.info-item a:hover,
.info-item a:focus {
	color: #000;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.list-arrow {
	position: relative;
	width: min(var(--content-width), calc(100% - 64px));
	height: 80px;
	margin: 0 auto;
	border-top: 1px solid rgba(112, 115, 124, .32);
}

.list-arrow__link {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: #000;
	text-decoration: none;
	outline-offset: 6px;
}

.list-arrow__icon {
	display: block;
	width: 40px;
	height: 40px;
}

.footer {
	width: 100%;
	height: 201px;
	margin: 80px 0 0;
	background: #282828;
	color: rgba(255, 255, 255, .34);
	font-family: "Pretendard", "Pretendard JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.footer-inner {
	position: relative;
	width: min(var(--footer-content-width), calc(100% - 64px));
	height: 100%;
	margin: 0 auto;
}

.footer-contact {
	position: absolute;
	top: 40px;
	right: 0;
	display: grid;
	color: rgba(255, 255, 255, .38);
	font-size: 16px;
	font-weight: 600;
	line-height: 140%;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-line {
	position: absolute;
	top: 120px;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, .08);
}

.footer-bottom {
	position: absolute;
	top: auto;
	bottom: 40px;
	left: 0;
	right: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(320px, 496px);
	column-gap: clamp(24px, 5vw, 96px);
	align-items: start;
	color: rgba(255, 255, 255, .34);
	font-size: 12px;
	font-weight: 400;
	line-height: 130%;
	text-transform: uppercase;
}

.footer-bottom a {
	color: inherit;
	text-decoration: none;
}

.footer-address {
	align-self: end;
	justify-self: end;
	width: 100%;
	max-width: 496px;
	font-size: 11px;
	text-align: right;
	text-wrap: balance;
}

@media (max-width: 980px) {
	.hero {
		height: auto;
		padding: 120px 20px 88px;
	}

	.hero-inner {
		position: relative;
		top: auto;
		left: auto;
		width: min(908px, 100%);
		height: auto;
		margin: 0 auto;
		transform: none;
	}

	.hero-logo {
		position: static;
		width: min(520px, 100%);
		margin: 0 auto 18px;
		transform: none;
	}

	.is-sequence-reveal-ready .hero-logo.sequence-reveal-item {
		transform: translate3d(0, 50px, 0);
	}

	.is-sequence-reveal-ready .sequence-reveal-group.is-sequence-revealed .hero-logo.sequence-reveal-item {
		transform: translate3d(0, 0, 0);
	}

	.hero-kicker {
		margin-bottom: 32px;
		font-size: 17px;
	}

	.hero-title {
		font-size: 44px;
	}

	.hero-description {
		font-size: 19px;
	}

	.content {
		width: calc(100% - 40px);
		padding: 72px 0 86px;
	}

	.section-title {
		font-size: 36px;
	}

	.feature-panel {
		grid-template-columns: 1fr;
		min-height: 360px;
		background-position: right center;
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.feature-panel--campaign {
		min-height: 430px;
	}

	.feature-panel::before {
		position: absolute;
		inset: 0;
		z-index: 1;
		background: linear-gradient(90deg, rgba(255, 247, 226, 0.9) 0%, rgba(255, 247, 226, 0.82) 42%, rgba(255, 247, 226, 0.2) 72%, rgba(255, 247, 226, 0) 100%);
		content: "";
	}

	.feature-copy {
		position: relative;
		top: auto;
		left: auto;
		z-index: 2;
		width: min(52%, 430px);
		height: auto;
		padding: 48px 0 36px 32px;
	}

	.feature-panel--sound .feature-copy,
	.feature-panel--shop .feature-copy {
		width: min(52%, 430px);
	}

	.feature-copy h2 {
		font-size: clamp(24px, 4.2vw, 32px);
		line-height: 1.35;
	}

	.feature-copy ul {
		margin-top: 32px;
		font-size: 14px;
		line-height: 1.6;
	}

	.feature-art {
		min-height: 430px;
		padding: 18px 24px 42px;
	}

	.keycap-stage {
		transform: scale(0.8);
	}

	.notice p {
		font-size: 19px;
	}

	.info-list {
		grid-template-columns: repeat(3, max-content);
		justify-content: center;
		width: 100%;
		height: auto;
		column-gap: 80px;
		row-gap: 24px;
	}

	.info-item--policies {
		grid-column: 1 / -1;
	}

	.info-item:nth-child(3)::after {
		display: none;
	}

	.list-arrow {
		width: calc(100% - 40px);
	}

	.footer {
		height: auto;
		min-height: 260px;
	}

	.footer-inner {
		display: flex;
		flex-direction: column;
		width: min(100% - 40px, var(--footer-content-width));
		min-height: 260px;
		padding: 28px 0 0;
	}

	.footer-contact,
	.footer-line,
	.footer-bottom {
		position: static;
	}

	.footer-contact {
		margin-top: 28px;
	}

	.footer-line {
		margin: 28px 0 24px;
	}

	.footer-bottom {
		display: grid;
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: auto;
		padding-bottom: 40px;
	}

	.footer-address {
		justify-self: end;
		text-align: right;
	}
}

@media (max-width: 920px) {
	.topbar {
		width: min(var(--nav-content-width), calc(100% - 40px));
		height: 88px;
	}

	.menu-panel__inner {
		width: min(100% - 40px, var(--content-width));
	}

	.brand,
	.wm-mark,
	.menu-link {
		width: 44px;
		height: 44px;
	}

	.menu-link span {
		width: 26px;
	}
}

@media (max-width: 640px) {
	.topbar {
		width: min(var(--nav-content-width), calc(100% - 28px));
		height: 76px;
		padding: 0;
	}

	.menu-panel__inner {
		width: min(100% - 28px, var(--content-width));
	}

	.menu-panel {
		padding: 104px 0 40px;
	}

	.menu-panel__nav {
		min-height: calc(100dvh - 164px);
		gap: 12px;
	}

	.menu-panel__item {
		font-size: clamp(48px, 18vw, 100px);
	}

	.brand,
	.wm-mark,
	.menu-link {
		width: 36px;
		height: 36px;
	}

	.menu-link {
		gap: 6px;
	}

	.menu-link:hover {
		color: #000000;
	}

	.menu-link:hover::before {
		opacity: 0;
	}

	.menu-link:focus-visible,
	body.is-menu-open .menu-link {
		color: #ffffff;
	}

	.menu-link:focus-visible::before,
	body.is-menu-open .menu-link::before {
		opacity: 1;
	}

	.menu-link span {
		width: 24px;
		height: 3px;
	}

}

@media (max-width: 560px) {
	.footer-inner {
		width: min(100% - 28px, var(--footer-content-width));
	}

	.topbar {
		width: min(var(--nav-content-width), calc(100% - 28px));
		height: 76px;
		padding: 0;
	}

	.brand,
	.wm-mark {
		width: 36px;
		height: 36px;
	}

	.menu-link {
		width: 36px;
		height: 36px;
		gap: 6px;
	}

	.menu-link span {
		width: 24px;
		height: 3px;
	}

	body.is-menu-open .menu-link span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	body.is-menu-open .menu-link span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.hero::before,
	.hero::after {
		display: none;
	}

	.hero {
		padding: 96px 18px 68px;
	}

	.hero-logo {
		width: min(320px, 88vw);
		margin-bottom: 14px;
	}

	.hero-kicker {
		margin-bottom: 22px;
		font-size: 15px;
	}

	.hero-title {
		font-size: clamp(31px, 9.5vw, 38px);
		line-height: 1.18;
	}

	.store-button {
		width: 100%;
		max-width: 280px;
	}

	.store-links {
		width: 100%;
		height: auto;
		flex-wrap: wrap;
	}

	.hero-description {
		max-width: 34rem;
		font-size: 16px;
		line-height: 1.6;
	}

	.hero-description br {
		display: none;
	}

	.content {
		width: calc(100% - 28px);
		padding: 56px 0 72px;
	}

	.section-title {
		margin-bottom: 28px;
		font-size: 32px;
	}

	.feature-panels {
		gap: 28px;
	}

	.feature-panel {
		align-items: start;
		border-radius: 16px;
		min-height: min(calc(100vw + 165px), 540px);
		background-position: center bottom;
		background-size: 100% auto;
	}

	.feature-panel--campaign {
		background-image: url("feature-relationship.png");
	}

	.feature-panel--sound {
		background-image: url("feature-daily.png");
	}

	.feature-panel--shop {
		background-image: url("feature-remedy.png");
	}

	.feature-panel::before {
		background: linear-gradient(180deg, rgba(255, 247, 226, 0.96) 0%, rgba(255, 247, 226, 0.74) 36%, rgba(255, 247, 226, 0.08) 54%, rgba(255, 247, 226, 0) 100%);
	}

	.feature-copy,
	.feature-panel--sound .feature-copy,
	.feature-panel--shop .feature-copy {
		width: auto;
		padding: 28px 24px 0;
	}

	.feature-copy h2 {
		font-size: clamp(23px, 7.4vw, 28px);
		line-height: 1.32;
	}

	.eyebrow {
		margin-bottom: 8px;
		font-size: 14px;
		line-height: 1.45;
	}

	.feature-copy ul {
		gap: 5px;
		margin-top: 18px;
		color: #5f554e;
		font-size: 13px;
		line-height: 1.48;
	}

	.feature-copy li {
		padding-left: 13px;
	}

	.feature-art {
		min-height: 330px;
	}

	.keycap-stage {
		margin-left: -42px;
		transform: scale(0.58);
	}

	.sticker-stage {
		grid-template-columns: repeat(2, 1fr);
	}

	.notice {
		margin-top: 52px;
		padding: 0 4px;
	}

	.notice p {
		font-size: 16px;
		line-height: 1.65;
	}

	.notice p + p {
		margin-top: 28px;
	}

	.info-list {
		grid-template-columns: minmax(0, 1fr);
		justify-items: start;
		column-gap: 0;
		row-gap: 24px;
		height: auto;
		margin-top: 64px;
	}

	.info-item,
	.info-item--policies {
		grid-column: 1;
		align-items: flex-start;
		width: 100%;
		height: auto;
		gap: 3px;
		text-align: left;
	}

	.info-item:not(:last-child)::after {
		display: none;
	}

	.info-links {
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 0;
	}

	.info-item strong {
		height: auto;
		font-size: 11px;
		line-height: 16px;
	}

	.info-item span,
	.info-item a {
		height: auto;
		text-align: left;
		font-size: 13px;
		line-height: 20px;
		letter-spacing: -0.2px;
		white-space: normal;
	}

	.info-item--policies a {
		display: inline-flex;
		align-items: flex-start;
		min-height: 44px;
		padding: 0 2px;
		touch-action: manipulation;
	}

	.list-arrow {
		width: calc(100% - 28px);
	}
}

@media (max-width: 390px) {
	.feature-copy,
	.feature-panel--sound .feature-copy,
	.feature-panel--shop .feature-copy {
		padding: 24px 20px 0;
	}

	.feature-copy h2 {
		font-size: 22px;
		line-height: 1.28;
	}

	.feature-copy ul {
		gap: 4px;
		margin-top: 14px;
		font-size: 12px;
		line-height: 1.45;
	}
}

/* Product assets only. Layout and responsive geometry stay aligned with the Yaho template. */
.hero-logo--saju {
	display: flex;
	width: min(620px, 64vw);
	aspect-ratio: 1280 / 706;
	align-items: center;
	justify-content: center;
	gap: 4px;
	filter: none;
}

.hero-logo--saju img:first-child {
	width: auto;
	height: 98.8%;
}

.hero-logo--saju img:last-child {
	width: auto;
	height: 88.8%;
}

.feature-panel {
	background-color: #fff8f2;
	background-position: right center;
	background-size: auto 100%;
}

.feature-panel::before {
	background: linear-gradient(90deg, rgba(255, 248, 242, .98) 0%, rgba(255, 248, 242, .92) 44%, rgba(255, 248, 242, .12) 74%, rgba(255, 248, 242, 0) 100%);
}

@media (max-width: 560px) {
	.hero-logo--saju {
		width: min(320px, 88vw);
	}

	.feature-panel {
		display: block;
		min-height: 0;
		background-image: none;
		box-shadow: none;
	}

	.feature-panel::before {
		display: none;
	}

	.feature-copy,
	.feature-panel--sound .feature-copy,
	.feature-panel--shop .feature-copy {
		position: relative;
		top: auto;
		left: auto;
		display: flex;
		width: 100%;
		height: auto;
		padding: 48px 0 40px;
		flex-direction: column;
	}

	.eyebrow {
		display: block;
		order: 0;
		margin: 0 0 8px;
		padding: 0 24px;
		font-size: 16px;
		font-weight: 600;
		line-height: 26px;
		letter-spacing: -0.3px;
		text-align: center;
	}

	.feature-copy h2 {
		order: 1;
		margin: 0;
		padding: 0 24px;
		font-size: 26px;
		font-weight: 700;
		line-height: 36px;
		letter-spacing: -0.8px;
		text-align: center;
	}

	.feature-mobile-visual {
		display: block;
		order: 2;
		width: 100%;
		aspect-ratio: 1266 / 1360;
		margin: 36px auto 34px;
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100% auto;
	}

	.feature-panel--campaign .feature-mobile-visual {
		background-image: url("feature-relationship.png");
	}

	.feature-panel--sound .feature-mobile-visual {
		background-image: url("feature-daily.png");
	}

	.feature-panel--shop .feature-mobile-visual {
		background-image: url("feature-remedy.png");
	}

	.feature-copy ul {
		display: grid;
		order: 3;
		gap: 6px;
		margin: 0;
		padding: 0 28px;
		color: #5f554e;
		font-size: 14px;
		font-weight: 500;
		line-height: 20px;
		letter-spacing: -0.5px;
	}

	.feature-copy li {
		padding-left: 16px;
	}

	.feature-copy li::before {
		display: block;
	}
}

/* Shared accessibility behavior. */
.feature-art {
	display: none;
}

.store-button[aria-disabled="true"] {
	cursor: default;
	opacity: .42;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.menu-link,
	.menu-link::before,
	.menu-link span,
	.store-button,
	.menu-panel__item {
		transition: none;
	}

	.is-sequence-reveal-ready .sequence-reveal-item {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
