@font-face {
	font-family: "Lucidity";
	src:
		local("Lucidity Condensed"),
		local("Lucidity-Condensed"),
		url("Lucidity-Condensed.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

:root {
	--bg: #08090b;
	--surface: #111318;
	--line: #292d35;
	--muted: #9297a3;
	--white: #f2f3f5;
	--cyan: #00d9f5;
	--pink: #f5005b;
	--lime: #b9ff00;
	--brand: Lucidity;
	--primary: Arial;
	--secondary: Helvetica;
	--default: sans-serif;
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--bg);
	color: var(--white);
	font-family: var(--primary), var(--secondary), var(--default);
	overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font: inherit;
}
.wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 28px;
}

.nav {
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--line);
	position: relative;
	z-index: 2;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}
.mini-logo {
	width: 36px;
	height: 36px;
	border: 1px solid #6d747d;
	border-radius: 50%;
	display: grid;
	place-items: center;
	position: relative;
	flex: 0 0 auto;
}
/*.mini-logo::before {
	content: "";
	width: 18px;
	height: 18px;
	border: 1px solid #6d747d;
	border-radius: 50%;
}
.mini-logo::after {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	border: 1px solid #6d747d;
	border-radius: 50%;
}*/
.wordmark {
	font-size: 13px;
	letter-spacing: 0.2em;
	font-weight: 700;
	font-family: var(--brand);
}
.wordmark span {
	color: var(--white);
}
.navlinks {
	display: flex;
	gap: 28px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--muted);
}
.navlinks a:hover {
	color: var(--cyan);
}
.menu {
	display: none;
	background: transparent;
	border: 1px solid var(--line);
	color: var(--white);
	padding: 8px 11px;
	cursor: pointer;
}

.hero {
	min-height: 650px;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 40px;
	position: relative;
}
.hero::before {
	content: "";
	position: absolute;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	border: 1px solid #1d2229;
	right: -170px;
	top: 80px;
	pointer-events: none;
}
.kicker {
	color: var(--cyan);
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.hero h1 {
	font-size: clamp(58px, 9vw, 132px);
	line-height: 0.83;
	letter-spacing: -0.085em;
	margin: 0;
	font-weight: 800;
	text-transform: uppercase;
	max-width: 700px;
}
.hero h1 .cyan {
	color: var(--cyan);
}
.hero h1 .pink {
	color: var(--pink);
}
.hero-sub {
	max-width: 410px;
	margin: 35px 0 0;
	color: #b0b4bd;
	font-size: 15px;
	line-height: 1.65;
}
.hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: wrap;
}
.btn {
	display: inline-block;
	padding: 13px 19px;
	border: 1px solid var(--white);
	color: var(--white);
	background: transparent;
	font-size: 11px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.2s;
}
.btn:hover {
	background: var(--white);
	color: var(--bg);
}
.btn.filled {
	background: var(--cyan);
	border-color: var(--cyan);
	color: #001116;
}
.btn.filled:hover {
	background: var(--white);
	border-color: var(--white);
}

.disc {
	width: min(370px, 80vw);
	aspect-ratio: 1;
	border-radius: 50%;
	margin: auto;
	background: #0d1014;
	border: 1px solid #7b838e;
	position: relative;
	box-shadow:
		0 0 0 17px #08090b,
		0 0 0 18px #252a31;
	animation: spin 30s linear infinite;
}
/*.disc::before {
	content: "";
	position: absolute;
	inset: 22%;
	border: 1px solid #69717a;
	border-radius: 50%;
}
.disc::after {
	content: "";
	position: absolute;
	width: 29px;
	height: 29px;
	border: 1px solid #69717a;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: var(--bg);
}*/
/*.disc-ring {
	position: absolute;
	inset: 6%;
	border: 1px dashed #293039;
	border-radius: 50%;
}*/
/*.disc-text {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	text-align: center;
}
.disc-text strong {
	font-size: clamp(23px, 4vw, 37px);
	letter-spacing: 0.15em;
	line-height: 1.15;
	color: var(--cyan);
	transform: rotate(-14deg);
}
.disc-text em {
	font-size: 12px;
	letter-spacing: 0.34em;
	color: var(--pink);
	font-style: normal;
	transform: rotate(10deg);
	margin-top: 80px;
}*/
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.ticker {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	overflow: hidden;
	white-space: nowrap;
}
.ticker-track {
	display: inline-block;
	padding: 17px 0;
	animation: marquee 20s linear infinite;
	font-size: 12px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}
.ticker-track span {
	margin: 0 34px;
}
.ticker-track .c {
	color: var(--cyan);
}
.ticker-track .p {
	color: var(--pink);
}
.ticker-track .l {
	color: var(--lime);
}
@keyframes marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-35%);
	}
}

.section {
	padding: 105px 0;
	border-bottom: 1px solid var(--line);
}
.section-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 20px;
	margin-bottom: 38px;
}
.section-label {
	color: var(--muted);
	font-size: 10px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.section h2 {
	font-size: clamp(35px, 5vw, 65px);
	letter-spacing: -0.06em;
	margin: 0;
	text-transform: uppercase;
	line-height: 0.9;
}
.section h2 .accent {
	color: var(--pink);
}
.link {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--cyan);
	border-bottom: 1px solid var(--cyan);
	padding-bottom: 5px;
	white-space: nowrap;
}

.artists {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.artist {
	min-height: 300px;
	background: var(--surface);
	border: 1px solid var(--line);
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	transition:
		transform 0.25s,
		border-color 0.25s;
}
.artist:hover {
	transform: translateY(-6px);
	border-color: #5b626e;
}
.artist:nth-child(2) {
	background: #121014;
}
.artist:nth-child(3) {
	background: #10140e;
}
.artist-number {
	font-size: 10px;
	color: var(--muted);
}
.artist-shape {
	position: absolute;
	right: -40px;
	top: 35px;
	width: 180px;
	height: 180px;
	border: 1px solid #343943;
	border-radius: 50%;
}
.artist:nth-child(2) .artist-shape {
	border-radius: 0;
	transform: rotate(28deg);
	border-color: #44253a;
}
.artist:nth-child(3) .artist-shape {
	border-radius: 35%;
	border-color: #374620;
	transform: rotate(45deg);
}
.artist h3 {
	font-size: clamp(30px, 4vw, 47px);
	margin: 0;
	letter-spacing: -0.07em;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}
.artist p {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 12px;
}
.artist-tag {
	color: var(--cyan);
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}

.releases {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 15px;
}
.release-feature {
	border: 1px solid var(--line);
	min-height: 390px;
	padding: 27px;
	background: #0e1217;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}
.release-feature::after {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	border: 1px solid #263c43;
	border-radius: 50%;
	right: -80px;
	bottom: -100px;
	box-shadow:
		0 0 0 30px #101820,
		0 0 0 31px #263c43;
}
.release-meta {
	display: flex;
	justify-content: space-between;
	color: var(--muted);
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}
.release-feature h3 {
	font-size: clamp(42px, 6vw, 78px);
	line-height: 0.85;
	letter-spacing: -0.08em;
	max-width: 460px;
	margin: 0;
	position: relative;
	z-index: 1;
}
.release-feature h3 span {
	color: var(--cyan);
}
.release-bottom {
	display: flex;
	align-items: end;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
.release-artist {
	font-size: 14px;
	color: #c3c7ce;
}
.release-artist small {
	color: var(--muted);
	font-size: 11px;
}
.play {
	width: 48px;
	height: 48px;
	border: 1px solid var(--cyan);
	background: transparent;
	color: var(--cyan);
	border-radius: 50%;
	cursor: pointer;
	display: grid;
	place-items: center;
	font-size: 17px;
}
.play:hover {
	background: var(--cyan);
	color: #001116;
}
.release-list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--line);
}
.release-row {
	flex: 1;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
	display: grid;
	grid-template-columns: 42px 1fr auto;
	gap: 14px;
	align-items: center;
}
.release-row .num,
.release-row .year {
	color: var(--muted);
	font-size: 11px;
}
.release-row h4 {
	margin: 0;
	font-size: 20px;
	letter-spacing: -0.04em;
	font-weight: 500;
}
.release-row p {
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 11px;
}
.release-row .year {
	font-size: 10px;
}

.manifesto {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 80px;
	align-items: start;
}
.manifesto h2 {
	font-size: clamp(42px, 6vw, 82px);
	letter-spacing: -0.08em;
	line-height: 0.85;
	margin: 0;
	text-transform: uppercase;
}
.manifesto h2 span {
	color: var(--lime);
}
.manifesto-copy {
	color: #b4b8c0;
	font-size: clamp(19px, 2.5vw, 29px);
	line-height: 1.35;
	letter-spacing: -0.035em;
	max-width: 590px;
}
.manifesto-copy p {
	margin: 0 0 25px;
}
.manifesto-copy .small {
	font-size: 13px;
	line-height: 1.7;
	color: var(--muted);
	max-width: 460px;
	letter-spacing: 0;
}

.footer {
	padding: 45px 0 30px;
}
.footer-top {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	align-items: start;
}
.footer h2 {
	margin: 0;
	font-size: clamp(35px, 5vw, 65px);
	letter-spacing: -0.07em;
	line-height: 0.9;
	text-transform: uppercase;
}
.footer h2 span {
	color: var(--pink);
}
.footer-info {
	text-align: right;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.9;
}
.footer-info a {
	color: var(--cyan);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 70px;
	padding-top: 15px;
	border-top: 1px solid var(--line);
	color: #555b65;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	gap: 15px;
}

.toast {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%, 20px);
	background: var(--cyan);
	color: #001116;
	padding: 13px 20px;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0;
	pointer-events: none;
	transition: 0.25s;
	z-index: 20;
}
.toast.show {
	opacity: 1;
	transform: translate(-50%, 0);
}

@media (max-width: 760px) {
	.wrap {
		padding: 0 18px;
	}
	.navlinks {
		display: none;
	}
	.menu {
		display: block;
	}
	.navlinks.open {
		display: flex;
		position: absolute;
		top: 77px;
		left: 0;
		right: 0;
		background: var(--bg);
		border-bottom: 1px solid var(--line);
		padding: 20px 18px;
		flex-direction: column;
		gap: 18px;
	}
	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
		/*padding: 85px 0 100px;*/
		padding: 85px 10px 100px;
	}
	.hero::before {
		display: none;
	}
	.disc {
		width: min(280px, 75vw);
		margin-top: 25px;
	}
	.artists {
		grid-template-columns: 1fr;
	}
	.artist {
		min-height: 230px;
	}
	.releases {
		grid-template-columns: 1fr;
	}
	.release-feature {
		min-height: 350px;
	}
	.manifesto {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.section {
		/*padding: 70px 0;*/
		padding: 70px 10px;
	}
	.section-head {
		align-items: start;
		flex-direction: column;
	}
	.footer-top {
		flex-direction: column;
	}
	.footer-info {
		text-align: left;
	}
	.footer-bottom {
		margin-top: 50px;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.disc,
	.ticker-track {
		animation: none;
	}
	.artist {
		transition: none;
	}
}

@media (min-width: 760px) {
	.hero,
	.section,
	.footer {
		padding-left: 10px;
		padding-right: 10px;
	}
}

.color-cyan {
	color: var(--cyan);
}
.color-pink {
	color: var(--pink);
}
.color-lime {
	color: var(--lime);
}
