:root {
	--bg: #08101c;
	--bg-deep: #03070d;
	--card: rgba(8, 18, 30, 0.7);
	--card-soft: rgba(19, 31, 48, 0.55);
	--line: rgba(144, 178, 216, 0.28);
	--line-strong: rgba(255, 153, 77, 0.5);
	--text: #f4f8ff;
	--muted: #b5c3d6;
	--accent: #ff7a00;
	--accent-alt: #00d1b2;
	--radius-xl: 30px;
	--radius-lg: 20px;
	--radius-md: 14px;
	--shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
	--container: min(1120px, 100% - 28px);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Sora", sans-serif;
	background: radial-gradient(circle at 8% 10%, #1a355a 0%, transparent 40%),
		radial-gradient(circle at 85% 18%, #5a1c3b 0%, transparent 44%),
		radial-gradient(circle at 55% 85%, #173c3c 0%, transparent 30%),
		linear-gradient(152deg, var(--bg) 0%, var(--bg-deep) 70%);
	color: var(--text);
	min-height: 100vh;
	overflow-x: hidden;
	padding: 0 0 94px;
}

.ambient-layer {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -1;
	overflow: hidden;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	opacity: 0.36;
	transition: transform 0.3s ease-out;
}

.orb-a {
	width: 440px;
	height: 440px;
	left: -120px;
	top: 80px;
	background: radial-gradient(circle, rgba(255, 122, 0, 0.8) 0%, rgba(255, 122, 0, 0) 66%);
}

.orb-b {
	width: 390px;
	height: 390px;
	right: -140px;
	top: 160px;
	background: radial-gradient(circle, rgba(0, 209, 178, 0.74) 0%, rgba(0, 209, 178, 0) 68%);
}

.orb-c {
	width: 360px;
	height: 360px;
	left: 38%;
	bottom: -150px;
	background: radial-gradient(circle, rgba(74, 116, 255, 0.62) 0%, rgba(74, 116, 255, 0) 72%);
}

.grid-fx {
	position: absolute;
	inset: 0;
	opacity: 0.2;
	background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
	background-size: 58px 58px;
	mask-image: radial-gradient(circle at center, black 36%, transparent 85%);
}

.app-header {
	position: sticky;
	top: 0;
	z-index: 25;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px clamp(14px, 4vw, 34px);
	backdrop-filter: blur(14px);
	background: rgba(4, 9, 16, 0.62);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background 0.25s ease, border-color 0.25s ease;
}

.app-header.scrolled {
	background: rgba(2, 7, 14, 0.85);
	border-color: rgba(255, 122, 0, 0.35);
}

.brand-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(255, 122, 0, 0.04));
	border: 1px solid rgba(255, 122, 0, 0.45);
}

.dot-live {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.16);
	animation: pulse 1.5s infinite;
}

.header-logo-circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 122, 0, 0.55);
	flex-shrink: 0;
}

.header-nav {
	display: none;
	gap: 16px;
}

.header-nav a {
	text-decoration: none;
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.btn-mini {
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 700;
	color: #111;
	padding: 10px 16px;
	border-radius: 999px;
	background: linear-gradient(94deg, #ffd885 0%, #ff7a00 100%);
	box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
}

main {
	width: var(--container);
	margin: 22px auto 0;
}

.section {
	margin-bottom: 18px;
	padding: 20px;
	border-radius: var(--radius-xl);
	background: linear-gradient(140deg, rgba(17, 32, 50, 0.72), rgba(5, 12, 22, 0.72));
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	backdrop-filter: blur(7px);
}

.hero {
	position: relative;
	overflow: hidden;
	border-color: rgba(255, 122, 0, 0.33);
	background: linear-gradient(125deg, rgba(22, 35, 52, 0.95), rgba(8, 14, 25, 0.9));
}

.hero::after {
	content: "";
	position: absolute;
	inset: auto -120px -180px auto;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 122, 0, 0.25) 0%, rgba(255, 122, 0, 0) 72%);
	pointer-events: none;
}

.hero-grid {
	display: grid;
	gap: 16px;
}

.kicker,
.eyebrow,
.tag {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.71rem;
	font-weight: 700;
	color: #9fd8ff;
}

h1,
h2,
h3,
h4,
p {
	margin: 0;
}

h1 {
	display: grid;
	gap: 2px;
	margin: 14px 0 12px;
	font-family: "Bebas Neue", sans-serif;
	letter-spacing: 0.04em;
	line-height: 0.9;
}

h1 span {
	font-size: clamp(4.3rem, 15vw, 9rem);
	color: #fcfaff;
	text-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
}

h1 strong {
	font-size: clamp(1.05rem, 3.5vw, 1.8rem);
	color: #ffd3a8;
	font-family: "Sora", sans-serif;
	font-weight: 700;
	letter-spacing: 0.19em;
	line-height: 1.2;
}

.hero-copy {
	max-width: 62ch;
	font-size: 0.96rem;
	line-height: 1.72;
	color: var(--muted);
}

.hero-actions,
.music-actions,
.socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hero-actions {
	margin-top: 20px;
}

.btn {
	text-decoration: none;
	padding: 12px 17px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	color: #101216;
	background: linear-gradient(95deg, #ffc26b, #ff7a00);
	box-shadow: 0 8px 22px rgba(255, 122, 0, 0.36);
}

.btn-secondary {
	color: var(--text);
	border: 1px solid rgba(151, 189, 232, 0.37);
	background: rgba(255, 255, 255, 0.02);
}

.hero-panel {
	padding: 14px;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(0, 209, 178, 0.35);
	background: linear-gradient(140deg, rgba(0, 209, 178, 0.14), rgba(255, 122, 0, 0.06));
}

.panel-title {
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	color: #8ef4e5;
	margin-bottom: 9px;
}

.hero-panel ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.hero-panel li {
	font-size: 0.86rem;
	color: var(--muted);
}

.hero-panel span {
	color: #fff;
	font-weight: 700;
	margin-right: 6px;
}

.ticker {
	margin-top: 18px;
	padding-top: 14px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.ticker span {
	padding: 7px 12px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #d2deed;
	background: rgba(6, 14, 26, 0.6);
	border: 1px solid rgba(117, 149, 184, 0.3);
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 10px;
	margin-bottom: 14px;
}

h2 {
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(2rem, 6vw, 2.8rem);
	letter-spacing: 0.07em;
	line-height: 0.92;
	margin-top: 3px;
}

.inline-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 700;
	color: #ffd6b2;
}

.music-head {
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 16px;
}

.music-head-copy {
	display: grid;
	gap: 6px;
}

.music-head-subtitle {
	margin: 0;
	max-width: 52ch;
	font-size: 0.86rem;
	line-height: 1.5;
	color: var(--muted);
}

.music-head-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-end;
	min-width: 210px;
	flex-shrink: 0;
}

.inline-link-soft {
	padding: 8px 11px;
	border-radius: 999px;
	border: 1px solid rgba(151, 189, 232, 0.34);
	background: rgba(10, 22, 36, 0.58);
	color: #d7e3f5;
}

.featured-track {
	background: linear-gradient(130deg, rgba(255, 122, 0, 0.22), rgba(17, 33, 56, 0.7));
	border: 1px solid var(--line-strong);
	padding: 18px 20px;
}

.featured-track h3,
.soundcloud-block h3 {
	font-size: clamp(1.95rem, 4.8vw, 2.35rem);
	line-height: 0.95;
	margin-top: 6px;
	margin-bottom: 6px;
}

.featured-track p,
.soundcloud-block p {
	line-height: 1.28;
}

.soundcloud-block {
	padding: 18px 20px;
}

.music-card {
	border-radius: var(--radius-lg);
	padding: 14px;
	margin-bottom: 10px;
	border: 1px solid var(--line);
	background: var(--card);
}

.soundcloud-block p,
.more-tracks-panel p,
.bio-copy,
.track-list p,
.shows-list p,
.contact-card p,
.video-card p,
.video-card span {
	color: var(--muted);
}

.soundcloud-block p {
	margin-bottom: 12px;
	line-height: 1.5;
	max-width: 34ch;
}

.music-layout {
	display: grid;
	gap: 14px;
	margin-bottom: 10px;
}

.soundcloud-embed {
	width: 100%;
	height: 320px;
	border: 0;
	border-radius: 12px;
	background: #0b121d;
}

.soundcloud-note {
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--muted);
	margin: 0 0 10px;
}

.soundcloud-redirect {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #101318;
	padding: 11px 14px;
	border-radius: 999px;
	background: linear-gradient(95deg, #ffd48d, #ff7a00);
	box-shadow: 0 8px 20px rgba(255, 122, 0, 0.34);
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	font-size: 0.8rem;
	color: var(--text);
	border-radius: 999px;
	border: 1px solid var(--line);
	padding: 8px 12px;
	background: var(--card-soft);
}

.soundcloud-logo {
	width: 16px;
	height: 10px;
	flex-shrink: 0;
}

.social-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: currentColor;
}

.track-list .music-card {
	display: grid;
	grid-template-columns: 40px 1fr auto;
	gap: 10px;
	align-items: center;
	background: linear-gradient(140deg, rgba(10, 20, 32, 0.82), rgba(7, 13, 24, 0.82));
}

.track-list span {
	font-size: 0.84rem;
	font-weight: 700;
	color: #8fa5c0;
}

.track-list h4 {
	font-size: 0.96rem;
	margin-bottom: 4px;
}

.track-list p {
	font-size: 0.84rem;
}

.play-btn {
	border: 0;
	padding: 9px 13px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #dffff8;
	background: rgba(0, 209, 178, 0.2);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.play-btn:hover {
	transform: translateY(-1px);
	background: rgba(0, 209, 178, 0.3);
}

.play-btn.is-playing {
	color: #0c0e11;
	background: linear-gradient(94deg, #ffc26b, #ff7a00);
}

.track-list .play-btn {
	justify-self: end;
	align-self: center;
}

.show-more-btn {
	width: 100%;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(151, 189, 232, 0.37);
	background: linear-gradient(135deg, rgba(14, 27, 44, 0.85), rgba(10, 18, 31, 0.85));
	color: var(--text);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	cursor: pointer;
	margin: 2px 0 10px;
}

.show-more-btn:hover {
	border-color: rgba(255, 122, 0, 0.6);
}

.show-more-btn.is-open {
	border-color: rgba(255, 122, 0, 0.68);
	background: linear-gradient(120deg, rgba(255, 122, 0, 0.22), rgba(12, 24, 38, 0.9));
}

.more-tracks-panel {
	margin-top: 6px;
	padding: 18px;
	border-color: rgba(255, 122, 0, 0.5);
	background: linear-gradient(135deg, rgba(28, 40, 58, 0.92), rgba(11, 19, 32, 0.94));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.more-tracks-panel h3 {
	margin: 6px 0 8px;
	font-size: clamp(1.1rem, 2.4vw, 1.28rem);
	line-height: 1.25;
}

.more-tracks-panel .tag {
	color: #ffd5ad;
}

.more-tracks-panel > p {
	margin: 0 0 12px;
	font-size: 0.9rem;
	line-height: 1.55;
}

.more-tracks-panel .soundcloud-redirect {
	width: 100%;
	justify-content: center;
}

.more-track-list {
	margin: 12px 0 14px;
	display: grid;
	gap: 8px;
	max-height: 430px;
	overflow: auto;
	padding-right: 6px;
	mask-image: linear-gradient(to bottom, black 92%, transparent 100%);
}

.more-track-list .music-card {
	margin-bottom: 0;
	border-color: rgba(144, 178, 216, 0.34);
}

.more-track-list::-webkit-scrollbar {
	width: 8px;
}

.more-track-list::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.06);
	border-radius: 999px;
}

.more-track-list::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, rgba(255, 122, 0, 0.85), rgba(0, 209, 178, 0.8));
	border-radius: 999px;
}

.more-tracks-embed {
	height: 380px;
}

.now-playing-card {
	margin-bottom: 0;
	background: linear-gradient(135deg, rgba(0, 209, 178, 0.18), rgba(15, 28, 45, 0.88));
	border-color: rgba(0, 209, 178, 0.36);
}

.now-playing-head {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 12px;
	align-items: center;
	margin-bottom: 12px;
}

.now-playing-artwork {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: linear-gradient(140deg, rgba(255, 122, 0, 0.35), rgba(0, 209, 178, 0.35));
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
}

.now-playing-card h3 {
	font-size: 1.1rem;
	line-height: 1.22;
}

.soundcloud-player-mini {
	width: 100%;
	height: 122px;
	border: 0;
	border-radius: 12px;
	background: #0b121d;
}

.video-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.video-card {
	padding: 16px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	background: linear-gradient(130deg, rgba(0, 209, 178, 0.15), rgba(16, 31, 47, 0.85));
}

.video-card h3 {
	margin: 6px 0;
	font-size: 1.1rem;
}

.bio-copy {
	line-height: 1.76;
}

.press-points {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.press-points span {
	font-size: 0.78rem;
	padding: 7px 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--card-soft);
}

.shows-list article {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 13px;
	margin-bottom: 8px;
	border-radius: var(--radius-md);
	border: 1px solid rgba(151, 189, 232, 0.3);
	background: linear-gradient(130deg, rgba(10, 20, 31, 0.85), rgba(15, 28, 44, 0.7));
}

.shows-list h3 {
	font-size: 1.03rem;
}

.shows-list p {
	font-size: 0.82rem;
	margin-top: 5px;
}

.ticket-link {
	text-decoration: none;
	font-size: 0.78rem;
	font-weight: 800;
	color: #101319;
	padding: 8px 11px;
	border-radius: 999px;
	background: linear-gradient(95deg, #d8e4f6, #fbfeff);
}

.contact-card {
	border-radius: var(--radius-lg);
	padding: 16px;
	border: 1px solid var(--line);
	background: linear-gradient(130deg, rgba(14, 26, 42, 0.95), rgba(5, 11, 20, 0.95));
}

.contact-card p {
	margin-bottom: 12px;
}

.contact-card a {
	display: inline-block;
	text-decoration: none;
	color: #eaf3ff;
	margin: 0 12px 8px 0;
	font-size: 0.94rem;
}

.socials a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.82rem;
	padding: 7px 10px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--card-soft);
}

.bottom-nav {
	position: fixed;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	z-index: 30;
	width: min(95%, 760px);
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	padding: 6px;
	border-radius: 16px;
	border: 1px solid rgba(150, 185, 225, 0.35);
	background: rgba(5, 12, 22, 0.86);
	backdrop-filter: blur(10px);
}

.bottom-nav a {
	text-decoration: none;
	text-align: center;
	font-size: 0.73rem;
	font-weight: 700;
	padding: 10px 6px;
	border-radius: 10px;
	color: var(--muted);
	transition: background 0.2s ease, color 0.2s ease;
}

.bottom-nav a.active {
	color: #111520;
	background: linear-gradient(95deg, #e4edfb, #f7fbff);
}

.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.3);
	}
	100% {
		box-shadow: 0 0 0 10px rgba(255, 122, 0, 0);
	}
}

@media (min-width: 900px) {
	main {
		margin-top: 26px;
	}

	.app-header {
		padding-left: clamp(18px, 4vw, 46px);
		padding-right: clamp(18px, 4vw, 46px);
	}

	.header-nav {
		display: flex;
	}

	.section {
		padding: 28px;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
		align-items: end;
	}

	.hero-panel {
		margin-bottom: 8px;
	}

	.music-layout {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	}

	.video-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.more-tracks-panel {
		padding: 20px;
	}

	.more-tracks-panel .soundcloud-redirect {
		width: fit-content;
	}

	.more-track-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-height: 520px;
	}

	.soundcloud-embed {
		height: 384px;
	}

	.more-tracks-embed {
		height: 440px;
	}
}

@media (max-width: 600px) {
	body {
		padding-bottom: 102px;
	}

	.section {
		padding: 18px;
		border-radius: 24px;
	}

	.section-head {
		align-items: center;
	}

	.music-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.music-head-actions {
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
	}

	.track-list .music-card {
		grid-template-columns: 1fr auto;
		gap: 6px;
	}

	.track-list span {
		display: none;
	}

	.play-btn {
		justify-self: end;
	}

	.shows-list article {
		align-items: flex-start;
		flex-direction: column;
	}

	.ticket-link {
		margin-top: 4px;
	}

	.bottom-nav a {
		font-size: 0.69rem;
		padding: 9px 4px;
	}
}

@media (max-width: 860px) {
	.music-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.music-head-actions {
		min-width: 0;
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
	}

	.featured-track,
	.soundcloud-block {
		padding: 16px;
	}
}
