@charset "UTF-8";
/* Font ************************************************************ */
@font-face {
	font-display: swap;
	font-family: EuclidCircularA;
	src: url(/static/font/EuclidCircularA/EuclidCircularA-Light.woff2) format("woff2");
	font-weight: 300;
}
@font-face {
	font-display: swap;
	font-family: EuclidCircularA;
	src: url(/static/font/EuclidCircularA/EuclidCircularA-Regular.woff2) format("woff2");
	font-weight: 400;
}
@font-face {
	font-display: swap;
	font-family: EuclidCircularA;
	src: url(/static/font/EuclidCircularA/EuclidCircularA-Medium.woff2) format("woff2");
	font-weight: 500;
}
@font-face {
	font-display: swap;
	font-family: EuclidCircularA;
	src: url(/static/font/EuclidCircularA/EuclidCircularA-SemiBold.woff2) format("woff2");
	font-weight: 600;
}
@font-face {
	font-display: swap;
	font-family: EuclidCircularA;
	src: url(/static/font/EuclidCircularA/EuclidCircularA-Bold.woff2) format("woff2");
	font-weight: 700;
}

/* Var ************************************************************ */
:root {
	--cubic-bezier-primary: cubic-bezier(1, 0, 0.2, 1);
	--min-width: 340px; /* galaxy Z fold 5 */
	--color-bg-primary: #05173f;
	--color-bg-secondary: 0, 0, 0;
	--color-bg-tertiary: 255, 255, 255;
	--color-font-primary: #fff;
	--color-font-secondary: #011c48;
	--fontsize-md: 20px;
	--lineheight-sm: 1.24;
	--lineheight-md: 1.4;
	--header-height: 108px;
	--footer-height: 96px;
	--padding-container-side: 40px;
	--padding-container-bottom: 0;
}
@media (max-width: 743px) {
	:root {
		--header-height: 96px;
		--footer-height: 108px;
		--padding-container-side: 16px;
	}
}
@media (max-width: 743px), (max-height: 723px) {
	:root {
		--fontsize-md: 16px;
	}
}

/* Init ************************************************************ */
* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}
html {
	height: 100%;
	background: var(--color-bg-primary);
}
body {
	height: 100%;
	min-width: var(--min-width);
	margin: 0;
}
body.modal-opened {
	overflow: hidden;
}
body,
button,
input,
select,
textarea {
	font-family: EuclidCircularA, Arial, sans-serif, Hevetica;
	color: var(--color-font-primary);
}
input,
select,
textarea {
	font-size: var(--fontsize-md);
	outline: none;
}
.sticky-checker {
	pointer-events: none;
}
.container .sticky-checker {
	display: block;
	height: var(--header-height);
	margin-top: calc(-1 * var(--header-height));
}
button {
	padding: 0;
	font-size: var(--fontsize-md);
	background: none;
	border: none;
	cursor: pointer;
}
a {
	color: var(--midnight-900);
	text-decoration: none;
	cursor: pointer;
}
ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}
em,
i,
address {
	font-style: normal;
}
input::-webkit-input-placeholder {
	color: var(--color-font-primary);
	opacity: 0.4;
}
input::-moz-placeholder {
	color: var(--color-font-primary);
	opacity: 0.4;
}

/* Common ************************************************************ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
	appearance: none;
	background-color: #111;
	border: none;
	border-radius: 9999px;
}
.btn-lg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	height: 40px;
	padding: 0 1em;
	font-size: 16px;
	font-weight: 400;
}
.btn-primary {
	color: var(--color-font-primary);
	background-color: var(--color-font-secondary);
	border-radius: 9999px;
}
@media (max-width: 743px) {
	.btn-lg {
		min-width: 154px;
		height: 32px;
		font-size: 14px;
	}
}

/* Header ************************************************************ */
header {
	z-index: 100;
	/* position: sticky; */
	position: relative;
	top: 0;
	padding: 0 var(--padding-container-side);
	background: linear-gradient(180deg, rgba(var(--color-bg-tertiary), 0.2), transparent);
}
header > .inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	max-width: var(--max-width);
	height: var(--header-height);
	margin: 0 auto;
}
header .logo {
	width: 135px;
	height: 20px;
	font-size: 0;
	background-image: url(/static/img/part4/logo.svg);
	background-repeat: no-repeat;
	background-position: 0 50%;
	background-size: 100% auto;
}
nav > ul {
	display: flex;
}
nav > ul > li {
	margin-left: 8px;
}
nav > ul > li > a {
	display: block;
	width: 50px;
	height: 50px;
	font-size: 0;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 20px auto;
	background-color: rgba(0, 0, 0, 0.24);
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
}
.instagram > a {
	background-image: url(/static/img/part4/instagram.svg);
}
.tiktok > a {
	background-image: url(/static/img/part4/tiktok.svg);
}
.facebook > a {
	background-image: url(/static/img/part4/facebook.svg);
}
.youtube > a {
	background-image: url(/static/img/part4/youtube.svg);
}
.x > a {
	background-image: url(/static/img/part4/x.svg);
}
@media (max-width: 743px) {
	header > .inner {
		justify-content: center;
	}
	header .logo {
		width: 108px;
		height: 16px;
	}
	header nav {
		display: none;
	}
}

/* Container ************************************************************ */
.wrapper {
	background: linear-gradient(180deg, transparent 63%, rgba(var(--color-bg-tertiary), 0.4));
}
.container {
	min-height: calc(100dvh - var(--header-height) - var(--footer-height));
	overflow: hidden;
	padding: 0 var(--padding-container-side) var(--padding-container-bottom);
}

/* Footer ************************************************************ */
footer {
	z-index: 100;
	position: relative;
	padding: 0 var(--padding-container-side);
	font-size: 16px;
	font-weight: 300;
	background: linear-gradient(180deg, transparent, rgba(var(--color-bg-tertiary), 0.3));
}
footer > .inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: var(--footer-height);
}
footer nav {
	display: none;
}
@media (max-width: 743px) {
	footer {
		font-size: 11px;
	}
	footer nav {
		display: block;
		margin: 0 0 16px;
	}
	footer nav > ul > li {
		margin: 0 3px;
	}
	footer nav > ul > li > a {
		width: 36px;
		height: 36px;
		background-size: 12px auto;
		background-color: rgba(0, 0, 0, 0.6);
		border-color: rgba(0, 0, 0, 0.24);
	}
}

/* Content ************************************************************ */
.content {
	max-width: 1240px;
	margin: 0 auto;
	font-size: var(--fontsize-md);
}

/* Main ************************************************************ */
body.main {
	overflow: hidden;
}
.main > #root,
.main .wrapper {
	height: 100%;
	overflow: hidden; /* for Safari (double-tap zoom) */
	background: none;
}
.main .bg-object {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}
.main.home .bg-object {
	background-image: url(/static/img/part4/bg-object-home.png);
	background-size: contain;
}
.main.inside .bg-object {
	background-image: url(/static/img/part4/bg-object-inside-l.png);
}
@media (orientation: portrait) {
	.main.inside .bg-object {
		background-image: url(/static/img/part4/bg-object-inside-p.png);
	}
	}
.main.home .bg-gradient {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.main.home .bg-gradient > i:nth-of-type(1) {
	position: fixed;
	left: 50%;
	top: 50%;
	max-width: 100%;
	height: 100%;
	aspect-ratio: 1535.42 / 1005;
	transform: translate(-50%, -50%);
	box-shadow: inset 0 0 2vw 2vw var(--color-bg-primary);
}
.main.home .bg-gradient > i:nth-of-type(2) {
	position: fixed;
	left: 50%;
	top: 50%;
	width: 100%;
	min-width: var(--min-width);
	max-height: 100%;
	aspect-ratio: 1535.42 / 1005;
	transform: translate(-50%, -50%);
	box-shadow: inset 0 0 3vh 3vh var(--color-bg-primary);
}
.main.home .bg-gradient > i:nth-of-type(3),
.main.home .bg-gradient > i:nth-of-type(4) {
	position: fixed;
	left: 50%;
	top: 50%;
	width: 140%;
	min-width: calc(var(--min-width) * 2);
	aspect-ratio: 1 / 1;
	transform: translate(-50%, -50%);
	background: radial-gradient(transparent, var(--color-bg-primary) 70%);
}
.main.home .bg-gradient > i:nth-of-type(4) {
	width: 141%;
}
.main.home .bg-gradient > i:nth-of-type(5) {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 63%, rgba(var(--color-bg-tertiary), 0.4));
}
@media (orientation: portrait) {
	.main.home .bg-object {
		height: 64%;
		top: 6%;
		background-size: cover;
	}
	.main.home .bg-gradient > i:nth-of-type(-n + 2) {
		display: none;
	}
	.main.home .bg-gradient > i:nth-of-type(3),
	.main.home .bg-gradient > i:nth-of-type(4) {
		top: 6%;
		transform: translate(-50%, 0);
		opacity: 0.4;
	}
}
@media (orientation: portrait) and (max-width: 743px) {
	.main.home .bg-object {
		top: 0;
	}
	.main.home .bg-gradient > i:nth-of-type(3),
	.main.home .bg-gradient > i:nth-of-type(4) {
		top: 0;
	}
}
.main .content {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	min-width: var(--min-width);
	padding: 0 var(--padding-container-side);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.main.home .content {
	justify-content: end;
	padding-bottom: var(--footer-height);
}
.main.home .content > p {
	white-space: nowrap;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.16);
}
.main.home .content > p:nth-of-type(1) {
	position: relative;
	font-size: 80px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -3.2px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.16);
	transition: all 0.4s var(--cubic-bezier-primary);
}
.main.home .content > p:nth-of-type(1)::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: 30px;
	height: 10px;
	transform: translate(-50%, -50px);
	background-color: var(--color-font-primary);
}
.main.home .content > p:nth-of-type(1) > em {
	display: block;
	color: #999;
	text-indent: 308px;
	transition: all 0.4s var(--cubic-bezier-primary);
}
.main.home .content > p:nth-of-type(2) {
	margin: 36px 0;
	padding: 10px 20px;
	font-weight: 600;
	line-height: var(--lineheight-md);
	border: 1px dashed rgba(255, 255, 255, 0.4);
	border-radius: 9999px;
}
.main.home .content > p > br {
	display: none;
}
form:has(.code-wrap) {
	display: flex;
	justify-content: center;
	width: 100%;
}
.main .code-wrap {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 570px;
	height: 72px;
	margin: 6px 0 0 0;
	background-color: #111;
	border-radius: 9999px;
	transition: max-width 0.6s var(--cubic-bezier-primary);
}
.main .code-wrap input {
	flex: 1;
	width: 0;
	height: 100%;
	padding: 0 40px;
	font-weight: 700;
	background-color: transparent;
}
.main .code-wrap input::-webkit-input-placeholder {
	font-weight: 700;
}
.main .code-wrap input::-moz-placeholder {
	font-weight: 700;
}
.main .code-wrap input + .clear {
	display: none;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border-radius: 50%;
}
.main .code-wrap input:placeholder-shown + .clear {
	visibility: hidden;
}
.main .code-wrap .submit {
	width: 208px;
	height: 100%;
	color: var(--color-font-secondary);
	font-weight: 700;
	background-color: #fff;
	border-radius: 9999px;
	white-space: nowrap;
	transition: width 0.6s var(--cubic-bezier-primary);
}
.main .code-wrap.opened .submit {
	position:absolute;
	right: 0;
	top: 0;
	width: 100%;
}
.main .spotify {
	width: 240px;
	height: 150px;
	margin: 40px 0 0;
	font-size: 0;
	background-image: url(/static/img/part4/spotify.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	border-radius: 9999px;
}
.main .media-toggle {
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	background-color: rgba(0, 0, 0, 0.24);
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 50%;
	transition: all 0.4s var(--cubic-bezier-primary);
}
.main .media-toggle > i {
	position: fixed;
	left: 0;
	top: 50%;
	width: 100%;
	min-width: var(--min-width);
	height: 46px;
	background-image: url(/static/img/part4/play.svg);
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: auto 100%;
	transform: translateY(-50%);
}
.main .media-toggle.playing > i {
	background-image: url(/static/img/part4/pause.svg);
}
.main .pre-save-gateway {
	position: absolute;
	bottom: calc(var(--footer-height) + 4vh);
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	padding: 0 48px;
	font-size: 20px;
	font-weight: 300;
	background-color: var(--color-font-secondary);
	border-radius: 9999px;
	white-space: nowrap;
	transform: translateX(-50%);
	transition: all 0.4s var(--cubic-bezier-primary);
}
@media (max-width: 743px), (max-height: 723px) {
	.main.home .content > p:nth-of-type(1) {
		text-align: center;
		font-size: 40px;
		letter-spacing: -1.6px;
	}
	.main.home .content > p:nth-of-type(1)::before {
		width: 20px;
		height: 5px;
		transform: translate(-50%, -25px);
	}
	.main.home .content > p:nth-of-type(1) > em {
		text-indent: 0;
	}
	.main.home .content > p:nth-of-type(2) {
		margin: 32px 0;
		padding: 12px 32px;
		text-align: center;
	}
	.main .code-wrap {
		max-width: 280px;
		height: 44px;
	}
	.main .code-wrap input {
		padding: 0 24px;
		font-weight: 600;
	}
	.main .code-wrap input::-webkit-input-placeholder {
		font-weight: 600;
	}
	.main .code-wrap input::-moz-placeholder {
		font-weight: 600;
	}
	.main .code-wrap .submit {
		width: 102px;
		font-size: 12px;
	}
	.main .spotify {
		width: 120px;
		height: 75px;
		margin: 20px 0 0;
	}
	.main .media-toggle {
		width: 72px;
		height: 72px;
		min-height: 72px;
	}
	.main .media-toggle > i {
		height: 24px;
	}
	.main .pre-save-gateway {
		bottom: calc(var(--footer-height) + 6vh);
		height: 40px;
		font-size: 14px;
	}
}
@media (orientation: portrait) and (max-width: 743px) {
	.main.home .content > p > br {
		display: inline;
	}
	.main .code-wrap {
		margin: 8px 0 0 0;
	}
	.main .pre-save-gateway {
		width: calc(100% - var(--padding-container-side) * 2);
	}	
}
@media (orientation: landscape) and (max-height: 503px) {
	.main.home .content > p:nth-of-type(1) > em {
		display: inline;
	}
}
@media (max-width: 743px) and (max-height: 543px), (max-height: 443px) {
	.main.inside {
		--footer-height: 0px; 
	}
	.main header,
	.main footer {
		display: none;
	}
	.main.home .content {
		justify-content: center;
		padding-bottom: 0;
		padding-top: 6vh;
	}
}
@media (max-height: 443px) {
	.main.home .content > p:nth-of-type(2) {
		margin: 20px 0;
		padding-top: 8px;
		padding-bottom: 8px;
	}
}

/* Dialog ************************************************************ */
dialog {
	transform: translate3d(0, 0, 0); /* for iOS (flicker when keyboard triggered) */
}
dialog:modal {
	max-width: calc(100% - var(--padding-container-side) * 2);
	max-height: calc(100% - var(--padding-container-side) * 2);
	min-width: 440px;
	overflow: visible;
	padding: 0 40px 40px;
	visibility: visible;
	background: #fff;
	border: none;
	border-radius: 20px;
	animation: dialog-show 0.6s cubic-bezier(0.4, 2, 0.6, 1);
}
@keyframes dialog-show {
	from {
		transform: translateY(-24px);
		opacity: 0;
	}
	to {
		transform: translateY(0%);
		opacity: 1;
	}
}
dialog[closing] {
	animation: dialog-close 0.4s cubic-bezier(0.4, 0, 0.6, -1);
	animation-fill-mode: both;
}
@keyframes dialog-close {
	from {
		transform: translateY(0%);
		opacity: 1;
	}
	to {
		transform: translateY(-24px);
		opacity: 0;
	}
}
dialog::backdrop {
	background-color: rgba(var(--color-bg-secondary), 0.6);
}
dialog:not([closing])::backdrop {
	animation: dialog-backdrop-show 0.4s;
}
@keyframes dialog-backdrop-show {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
dialog[closing]::backdrop {
	animation: dialog-backdrop-close 0.4s;
	animation-fill-mode: both;
}
@keyframes dialog-backdrop-close {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.dialog-header {
	min-height: 50px;
}
.dialog-header > .close {
	position: absolute;
	right: -60px;
	top: 0;
	width: 40px;
	height: 40px;
	font-size: 0;
	background: #fff url(/static/img/part4/close.svg) no-repeat 50%;
	background-size: 18px;
	border-radius: 50%;
	outline: none;
}
.dialog-body .message {
	text-align: center;
	font-size: 24px;
	line-height: var(--lineheight-sm);
	color: var(--color-font-secondary);
	font-weight: 600;
	word-break: keep-all;
}
.dialog-body .button-group {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
}
@media (max-width: 743px), (max-height: 443px) {
	dialog:modal {
		max-height: calc(100% - var(--padding-container-side));
		min-width: 320px;
		border-radius: 18px;
		overflow: scroll;
	}
	.dialog-header {
		min-height: 40px;
	}
	.dialog-header > .close {
		display: none;
	}
	.dialog-body .message {
		font-size: 20px;
	}
}