@charset "UTF-8";


/*-------------------------------
 Hero Section
-------------------------------*/
.heroSec {
	position: relative;
	height: 680px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
}
.heroSec__orbLayer {
	position: absolute;
	inset: 0;
	opacity: 0.5;
	overflow: hidden;
	pointer-events: none;
}
.heroSec__orb {
	position: absolute;
	filter: blur(80px);
	opacity: 0.1;
	border-radius: 50%;
	animation: heroPulse 8s cubic-bezier(0.4, 0, 0.6, 1) infinite backwards;
}
.heroSec__orb--red {
	width: 400px;
	height: 400px;
	background: var(--c_red01);
	top: -100px;
	right: -50px;
}
.heroSec__orb--purple {
	width: 500px;
	height: 500px;
	background: var(--c_purple01);
	bottom: -150px;
	left: -100px;
	animation-delay: 3s;
}
.heroSec__orb--pink {
	width: 300px;
	height: 300px;
	background: var(--c_pink01);
	top: 20%;
	left: 30%;
	opacity: 0.2;
	animation-delay: 6s;
}
@keyframes heroPulse {
	0%, 100% {
		opacity: 0.1;
		transform: scale(0.9);
	}
	50% {
		opacity: 0.7;
		transform: scale(1.1);
	}
}

.heroSec .l-inner {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.heroSec__title {
	font-size: 64px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 24px;
	color: var(--c_white);
}
.heroSec__title--gradient {
	background: linear-gradient(90deg, var(--c_red01), var(--c_pink01), var(--c_purple01));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: inline-block;
}
.heroSec__description {
	font-size: 20px;
	color: var(--t_white0106);
	line-height: 1.6;
	margin-bottom: 40px;
	max-width: 800px;
}

.heroSec__cta {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 60px;
}
.heroSec__features {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}
.heroSec__featureTag {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
	border: 1px solid var(--t_white0101);
	padding: 10px 19px;
	border-radius: 99px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--c_white);
}
.heroSec__featureIcon--red { color: var(--c_red01); }
.heroSec__featureIcon--purple { color: var(--c_purple01); }
.heroSec__featureIcon--pink { color: var(--c_pink01); }

@media screen and (max-width:1200px) {
	.heroSec {
		height: clamp(500px, 56.6667vw, 800px);
	}
	.heroSec__orb {
		filter: blur(80px);
	}
	.heroSec__orb--red {
		width: 33.3333vw;
		height: 33.3333vw;
		top: -8.3333vw;
		right: -4.1667vw;
	}
	.heroSec__orb--purple {
		width: 41.6667vw;
		height: 41.6667vw;
		bottom: -12.5vw;
		left: -8.3333vw;
	}
	.heroSec__orb--pink {
		width: 25vw;
		height: 25vw;
	}
	.heroSec__title {
		font-size: 5.3333vw;
		margin-bottom: 2vw;
	}
	.heroSec__description {
		font-size: 1.6667vw;
		margin-bottom: 3.3333vw;
	}
	.heroSec__cta {
		gap: 1.6667vw;
		margin-bottom: 5vw;
	}
	.heroSec__features {
		gap: 1.3333vw;
	}
	.heroSec__featureTag {
		backdrop-filter: blur(8px);
		padding: 0.8333vw 1.5833vw;
		gap: 0.6667vw;
		font-size: 1.1667vw;
	}
}

@media (max-width: 768px) {
	.heroSec {
		height: auto;
		padding: 100px 0 60px;
	}
	.heroSec__title {
		font-size: 36px;
		margin-bottom: 24px;
		padding: 0 10px;
		font-feature-settings: "palt";
	}
	.heroSec__title--gradient {
		display: block; 
		margin-top: 8px;
	}
	.heroSec__description {
		font-size: 16px;
		margin-bottom: 32px;
		padding: 0 20px;
		max-width: 100%;
	}
	.heroSec__cta {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		margin-bottom: 40px;
		width: 100%;
	}
	.heroSec__features {
		gap: 8px;
		padding: 0 16px;
	}
	.heroSec__featureTag {
		padding: 8px 20px;
		font-size: 14px;
		gap: 6px;
	}
	.heroSec__orbLayer {
		opacity: 0.8;
	}
	.heroSec__orb--red {
		width: 300px;
		height: 300px;
		top: -100px;
		left: -20%;
		filter: blur(60px);
		opacity: 0.2;
	}
	.heroSec__orb--purple {
		width: 450px;
		height: 450px;
		top: 50%;
		left: 50%;
		filter: blur(80px);
		opacity: 0.15;
	}
	.heroSec__orb--pink {
		width: 250px;
		height: 250px;
		top: 30%;
		left: 20%;
		filter: blur(50px);
		opacity: 0.2;
	}
}



/*-------------------------------
 Stats Section
-------------------------------*/
.statsSec {
	padding: 80px 0;
	background-color: var(--c_black01);
	border-top: 1px solid var(--t_white0101);
	border-bottom: 1px solid var(--t_white0101);
}
.statsSec__grid {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}
.statsSec__item {
	flex: 1;
	text-align: center;
}
.statsSec__number {
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 12px;
	letter-spacing: -1px;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: inline-block;
}

.statsSec__number--redPink {
	background-image: linear-gradient(90deg, var(--c_red01), var(--c_pink01));
}
.statsSec__number--purplePink {
	background-image: linear-gradient(90deg, var(--c_purple03), var(--c_pink01));
}
.statsSec__number--orangeRed {
	background-image: linear-gradient(90deg, var(--c_orange01), var(--c_red01));
}
.statsSec__number--greenEmerald {
	background-image: linear-gradient(90deg, var(--c_green01), var(--c_green02));
}
.statsSec__label {
	font-size: 14px;
	font-weight: 600;
	color: var(--t_white0106);
	letter-spacing: 0.05em;
}

@media screen and (max-width:1200px) {
	.statsSec {
		padding: 6.6667vw 0;
	}
	.statsSec__grid {
		gap: 3.3333vw;
	}
	.statsSec__number {
		font-size: 4vw;
		margin-bottom: 1vw;
	}
	.statsSec__label {
		font-size: 1.1667vw;
		letter-spacing: 0.05em;
	}
}

@media (max-width: 768px) {
	.statsSec {
		padding: 40px 0;
	}
	.statsSec__grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 20px;
	}
	.statsSec__item {
		flex: none;
	}
	.statsSec__number {
		font-size: 28px;
		margin-bottom: 8px;
	}
	.statsSec__label {
		font-size: 12px;
		font-weight: 400;
	}
}



/*-------------------------------
/* Music Group (Grid System)
-------------------------------*/
.featuredSec,
.newReleaseSec,
.rankingSec {
	padding: 100px 0;
	background-color: var(--c_black01);
}
.newReleaseSec {
	background: var(--c_black02);
}

@media screen and (max-width:1200px) {
	.featuredSec,
	.newReleaseSec,
	.rankingSec {
		padding: 8.3333vw 0;
	}
}

@media (max-width: 768px) {
	.featuredSec,
	.newReleaseSec,
	.rankingSec {
		padding: 60px 0;
	}
}



/*-------------------------------
/* Scene Section
-------------------------------*/
.sceneSec {
	padding: 100px 0;
	background: var(--c_black02);
}
.sceneSec__title {
	font-size: 32px;
	font-weight: 800;
	color: var(--c_white);
	text-align: center;
	margin-bottom: 60px;
}
.sceneSec__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.sceneSec__card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
}
.sceneSec__imageWrap {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.sceneSec__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.sceneSec__card:hover .sceneSec__img {
	transform: scale(1.1);
}
.sceneSec__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient( to top, var(--t_black0108) 0%, var(--t_black0102) 60%, transparent 100% );
	display: flex;
	align-items: flex-end;
	padding: 24px;
}
.sceneSec__cardTitle {
	font-size: 20px;
	font-weight: 700;
	color: var(--c_white);
	margin-bottom: 8px;
}
.sceneSec__cardText {
	font-size: 14px;
	color: var(--t_white0107);
	line-height: 1.5;
}

@media screen and (max-width:1200px) {
	.sceneSec {
		padding: 8.3333vw 0;
	}
	.sceneSec__title {
		font-size: 2.6667vw;
		margin-bottom: 5vw;
	}
	.sceneSec__grid {
		gap: 2vw;
	}
	.sceneSec__card {
		border-radius: 1.3333vw;
	}
	.sceneSec__overlay {
		padding: 2vw;
	}
	.sceneSec__cardTitle {
		font-size: 1.6667vw;
		margin-bottom: 0.6667vw;
	}
	.sceneSec__cardText {
		font-size: 1.1667vw;
	}
}

@media (max-width: 768px) {
	.sceneSec {
		padding: 60px 0;
	}
	.sceneSec__title {
		font-size: 28px;
		margin-bottom: 40px;
	}
	.sceneSec__grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 10px;
	}
	.sceneSec__card {
		border-radius: 15px;
	}
	.sceneSec__imageWrap {
		aspect-ratio: 4 / 3;
	}
	.sceneSec__overlay {
		padding: 20px 15px;
	}
	.sceneSec__cardTitle {
		font-size: 24px;
		margin-bottom: 10px;
	}
	.sceneSec__cardText {
		font-size: 14px;
	}
}


