* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
	font-family: "Manrope", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #10244a;
	background: radial-gradient(circle at 12% 18%, #eff5ff 0%, #f8fbff 30%, #f5f9ff 60%, #f2f7ff 100%);
}

a {
	color: inherit;
}

.site-shell {
	overflow-x: hidden;
}

.hero {
	position: relative;
	isolation: isolate;
	min-height: 88svh;
	display: grid;
	grid-template-columns: 1fr minmax(320px, 44vw);
	align-items: center;
	padding: 7rem 6vw 4rem;
	overflow: hidden;
	background: #eaf3ff;
}

.hero-bg-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center 48%;
	filter: saturate(1.16) contrast(1.03) brightness(1.12) hue-rotate(4deg);
	opacity: 0.9;
	transform: scale(1.08);
	pointer-events: none;
	animation: heroPan 26s ease-in-out infinite alternate;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(102deg, rgba(246, 251, 255, 0.94) 2%, rgba(232, 244, 255, 0.8) 40%, rgba(181, 217, 255, 0.34) 72%, rgba(133, 188, 255, 0.18) 100%),
		radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.12) 52%, rgba(255, 255, 255, 0));
	pointer-events: none;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 680px;
	padding-bottom: 0.6rem;
}

.hero-role {
	margin: 0;
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2f63d4;
}

.hero h1 {
	margin: 0.5rem 0 0;
	font-size: clamp(2.8rem, 8vw, 6rem);
	line-height: 0.95;
	font-family: "Exo 2", "Manrope", "Inter", sans-serif;
	font-weight: 800;
	letter-spacing: 0.035em;
	color: #0f2248;
	text-shadow: 0 10px 24px rgba(255, 255, 255, 0.55);
}

.hero h2 {
	margin: 0.9rem 0 0;
	font-size: clamp(1.15rem, 2.8vw, 2rem);
	font-weight: 500;
	color: #2b4886;
}

.hero-domain {
	margin: 1.4rem 0 0;
	font-size: 1rem;
	color: #3f5f96;
}

.hero-image {
	position: absolute;
	right: 3vw;
	top: 11vh;
	z-index: 2;
	width: min(40vw, 600px);
	height: min(62svh, 520px);
	max-width: 100%;
	object-fit: cover;
	border-radius: 2.2rem;
	box-shadow: 0 28px 54px rgba(21, 68, 148, 0.22);
	animation: floatIn 8s ease-in-out infinite;
}

.section {
	width: min(1120px, 90vw);
	margin: 4rem auto 0;
	padding: 2.2rem;
	border-radius: 0;
}

.glass {
	background: linear-gradient(130deg, rgba(255, 255, 255, 0.78), rgba(243, 250, 255, 0.64));
	border: 1px solid rgba(255, 255, 255, 0.85);
	box-shadow: 0 20px 40px rgba(17, 72, 168, 0.08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.section h3 {
	margin: 0 0 1.2rem;
	font-size: clamp(1.55rem, 2.5vw, 2.25rem);
	color: #0f2a58;
	text-align: center;
}

.album-layout {
	display: grid;
	gap: 1.4rem;
	grid-template-columns: minmax(230px, 340px) 1fr;
	align-items: start;
}

.album-cover {
	width: 100%;
	border-radius: 1.5rem;
	box-shadow: 0 18px 40px rgba(37, 74, 145, 0.25);
}

.track-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(200px, 1fr));
	gap: 0.85rem;
}

.track-list li {
	padding: 0.75rem 0.9rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.64);
	box-shadow: 0 8px 20px rgba(35, 79, 154, 0.14);
}

.track-list span {
	display: block;
	font-size: 0.82rem;
	color: #4f6da6;
}

.track-list strong {
	font-size: 1rem;
	color: #1e376b;
}

.platform-grid {
	margin-top: 1.8rem;
	display: grid;
	grid-template-columns: repeat(4, minmax(160px, 1fr));
	gap: 0.95rem;
}

.platform-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.62rem;
	text-decoration: none;
	border: 0;
	width: 100%;
	min-height: 68px;
	padding: 0.7rem 1rem;
	border-radius: 1rem;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	background: #ffffff;
	color: #163a7b;
	box-shadow: 0 8px 18px rgba(25, 76, 161, 0.16);
	overflow: hidden;
	transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.platform-btn:hover {
	transform: translateY(-4px) scale(1.01);
	box-shadow: 0 18px 34px rgba(29, 71, 143, 0.22);
	background: #f4f8ff;
}

.platform-btn::after {
	content: "";
	position: absolute;
	top: -120%;
	left: -34%;
	width: 34%;
	height: 320%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
	transform: rotate(20deg);
	transition: left 420ms ease;
}

.platform-btn:hover::after {
	left: 120%;
}

.platform-btn.featured {
	grid-column: span 2;
	min-height: 82px;
	font-size: 1.15rem;
	background: linear-gradient(110deg, #1db954, #2dd56a);
	box-shadow: 0 16px 34px rgba(19, 122, 58, 0.32);
	color: #ffffff;
}

.platform-btn.featured img {
	filter: brightness(0);
}

.platform-btn img,
.social-btn img {
	width: 24px;
	height: 24px;
	border-radius: 999px;
}

.section p {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.7;
	color: #224278;
}

.social-row {
	margin-top: 1.2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.social-title {
	margin: 1.8rem 0 0.5rem;
	text-align: center;
	font-size: 0.98rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #49669b;
}

.social-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.58rem;
	text-decoration: none;
	border-radius: 999px;
	border: 0;
	background: #ffffff;
	color: #15366f;
	padding: 0.58rem 1rem;
	font-weight: 600;
	box-shadow: 0 8px 18px rgba(29, 71, 143, 0.12);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.social-btn:hover {
	transform: translateY(-3px);
	background: #f4f8ff;
	box-shadow: 0 14px 26px rgba(29, 71, 143, 0.2);
}

.contact {
	text-align: center;
}

.contact .contact-email {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.8rem;
	font-size: 1rem;
	font-weight: 700;
}

.contact-email svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.footer {
	width: min(1120px, 90vw);
	margin: 3rem auto 2.2rem;
	border-radius: 0;
	padding: 0.8rem;
	text-align: center;
}

.footer p {
	margin: 0.28rem 0;
	color: #24447e;
}

@keyframes floatIn {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

@keyframes heroPan {
	0% {
		transform: scale(1.04) translate3d(0, 0, 0);
	}
	100% {
		transform: scale(1.08) translate3d(-1.8%, -1.2%, 0);
	}
}

@media (max-width: 980px) {
	.hero {
		grid-template-columns: 1fr;
		gap: 2rem;
		min-height: auto;
		padding: 5.5rem 5vw 2.2rem;
	}

	.hero-overlay {
		background-image:
			linear-gradient(180deg, rgba(247, 252, 255, 0.9) 0%, rgba(232, 244, 255, 0.72) 48%, rgba(180, 215, 255, 0.34) 100%),
			radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.05) 56%, rgba(255, 255, 255, 0));
	}

	.hero-image {
		position: relative;
		width: 100%;
		max-width: 520px;
		height: min(46svh, 360px);
		border-radius: 1.4rem;
		box-shadow: 0 24px 50px rgba(29, 71, 143, 0.22);
		right: 0;
		top: 0;
		justify-self: center;
	}

	.album-layout {
		grid-template-columns: 1fr;
	}

	.track-list {
		grid-template-columns: 1fr;
	}

	.platform-grid {
		grid-template-columns: repeat(2, minmax(150px, 1fr));
	}
}

@media (max-width: 620px) {
	.section,
	.footer {
		width: min(1120px, 94vw);
	}

	.section {
		padding: 1.35rem;
		border-radius: 1.35rem;
	}

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

	.platform-btn.featured {
		grid-column: span 1;
	}

	.hero h1 {
		line-height: 1;
		letter-spacing: 0.02em;
	}

	.hero h2 {
		line-height: 1.28;
	}

	.hero-role,
	.hero-domain {
		font-size: 0.94rem;
	}
}

@media (max-width: 420px) {
	.hero {
		padding-top: 5rem;
	}

	.hero-image {
		height: min(40svh, 300px);
	}
}

/* latin */
@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(font/xn7gYHE41ni1AdIRggexSg.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url(font/xn7gYHE41ni1AdIRggexSg.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
	font-family: 'Exo 2';
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url(font/7cHmv4okm5zmbtYoK-4.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}