:root {
	--bg: #050505;
	--bg-raised: #10100f;
	--ink: #f6f1e9;
	--muted: #aaa39a;
	--line: rgba(246, 241, 233, 0.16);
	--blue: #1476ff;
	--amber: #f5a11b;
	--pink: #ff3d66;
	--green: #36d98a;
	--max: 1180px;
	--pad: 20px;
	--header: 72px;
	--body-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
	--display-font: "Europa Grotesk Nr 2 SH UltraBold", "EuropaGroteskSH-UltraBold", Impact, Haettenschweiler,
		"Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color-scheme: dark;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--body-font);
	letter-spacing: 0;
}

body::selection {
	background: var(--amber);
	color: #090909;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

button {
	font: inherit;
}

.skip-link {
	position: fixed;
	left: 16px;
	top: 12px;
	z-index: 20;
	padding: 10px 14px;
	background: var(--ink);
	color: var(--bg);
	font-size: 0.9rem;
	font-weight: 800;
	transform: translateY(-140%);
	transition: transform 180ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header);
	padding: 16px var(--pad);
	border-bottom: 1px solid transparent;
	background: linear-gradient(180deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0));
	transition:
		background 180ms ease,
		border-color 180ms ease;
}

.site-header.is-scrolled {
	border-color: var(--line);
	background: rgba(5, 5, 5, 0.655);
	backdrop-filter: blur(18px);
}

.brand-mark,
.nav-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
}

.brand-mark {
	width: 42px;
	border: 1px solid var(--line);
	background: rgba(246, 241, 233, 0.08);
	font-size: 0.88rem;
	font-weight: 900;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-links a {
	padding: 0 14px;
	color: rgba(246, 241, 233, 0.78);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
	color: var(--ink);
}

.hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: 88svh;
	overflow: hidden;
	border-bottom: 1px solid var(--line);
	isolation: isolate;
}

.hero__media,
.hero__shade {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 55% 42%;
	transform: scale(1.02);
	will-change: transform;
}

.hero__shade {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.7) 42%, rgba(5, 5, 5, 0.22) 100%),
		linear-gradient(180deg, rgba(5, 5, 5, 0.15) 0%, rgba(5, 5, 5, 0.26) 45%, rgba(5, 5, 5, 0.92) 100%);
}

.hero__content {
	width: min(100%, var(--max));
	margin: 0 auto;
	padding: 128px var(--pad) 58px;
}

.hero__name,
.hero__role,
.section-kicker,
.social-card__number,
.social-card__meta {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	color: var(--muted);
}

.hero__name {
	margin-top: 12px;
	color: rgba(246, 241, 233, 0.68);
}

h1,
h2 {
	margin: 0;
	font-family: var(--display-font);
	font-weight: 900;
	line-height: 0.86;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1 {
	max-width: 760px;
	font-size: 4.8rem;
}

h2 {
	font-size: 3.4rem;
}

.hero__role {
	margin-top: 18px;
	color: var(--ink);
	font-size: 0.95rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.button,
.icon-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	cursor: pointer;
	font-weight: 900;
	text-transform: uppercase;
	transition:
		transform 160ms ease,
		background 160ms ease,
		color 160ms ease,
		border-color 160ms ease;
}

.button {
	min-height: 48px;
	padding: 0 18px;
	font-size: 0.78rem;
}

.button--primary {
	border-color: var(--amber);
	background: var(--amber);
	color: #090909;
}

.button--ghost {
	background: rgba(246, 241, 233, 0.08);
	color: var(--ink);
}

.button:hover,
.button:focus-visible,
.icon-button:hover,
.icon-button:focus-visible {
	transform: translateY(-2px);
}

.button:focus-visible,
.icon-button:focus-visible,
.social-card:focus-visible,
.brand-mark:focus-visible,
.nav-links a:focus-visible,
.site-footer a:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 4px;
}

.section-band {
	padding: 82px var(--pad);
	border-bottom: 1px solid var(--line);
	scroll-margin-top: var(--header);
}

.section-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 34px;
	width: min(100%, var(--max));
	margin: 0 auto;
}

.section-copy {
	display: grid;
	align-content: start;
	gap: 20px;
	max-width: 620px;
}

.section-copy p:not(.section-kicker) {
	margin: 0;
	color: rgba(246, 241, 233, 0.74);
	font-size: 1.04rem;
	line-height: 1.55;
}

.section-copy .button {
	width: fit-content;
	margin-top: 8px;
}

.showcase {
	position: relative;
	overflow: hidden;
	padding-top: 0;
	padding-bottom: 0;
	border-bottom: 0;
	background: #e5e5e3;
	isolation: isolate;
}

.showcase .section-grid {
	position: relative;
	z-index: 1;
	grid-template-columns: minmax(0, 560px);
	justify-items: center;
	align-items: end;
	gap: 8px;
	text-align: center;
}

.showcase .section-copy {
	position: relative;
	z-index: 2;
	justify-items: center;
	gap: 12px;
	max-width: 560px;
	padding-bottom: 0;
	color: #111;
}

.showcase__wordmark {
	width: min(100%, 430px);
	height: auto;
	margin-top: 8px;
	margin-bottom: 4px;
}

.showcase .section-copy p {
	color: rgba(17, 17, 17, 0.78);
	max-width: 36rem;
}

.showcase .section-copy .button {
	justify-self: center;
	width: fit-content;
	margin-top: 0;
}

.showcase .button--primary {
	border-color: #e52733;
	background: #e52733;
	color: #050505;
}

.showcase .button--primary:hover,
.showcase .button--primary:focus-visible {
	border-color: #050505;
	background: #050505;
	color: #fff;
}

.showcase__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.showcase__fg {
	position: relative;
	z-index: 1;
	width: min(92%, 430px);
	max-height: 430px;
	margin-bottom: -1px;
	margin-top: -4px;
	margin-left: auto;
	margin-right: auto;
	object-fit: contain;
	object-position: center bottom;
	justify-self: center;
	align-self: end;
	pointer-events: none;
}

.socials {
	overflow: hidden;
	background: #080807;
}

.socials__intro {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	align-items: end;
	width: min(100%, var(--max));
	margin: 0 auto 28px;
}

.socials__intro h2 {
	grid-column: 1;
	font-size: 2.85rem;
	white-space: nowrap;
}

.social-controls {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	gap: 8px;
	align-self: end;
}

.icon-button {
	width: 46px;
	height: 46px;
	background: rgba(246, 241, 233, 0.08);
	color: var(--ink);
	font-size: 1.2rem;
}

.social-track-wrap {
	width: min(100%, var(--max));
	margin: 0 auto;
}

.social-progress {
	height: 2px;
	margin-bottom: 18px;
	background: rgba(246, 241, 233, 0.14);
}

.social-progress span {
	display: block;
	width: 20%;
	height: 100%;
	background: linear-gradient(90deg, var(--amber), var(--blue), var(--pink));
	transform-origin: left center;
}

.social-track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding: 2px;
	padding: 2px 0 24px;
	cursor: grab;
	-webkit-overflow-scrolling: touch;
}

.social-track:active {
	cursor: grabbing;
}

.social-track::-webkit-scrollbar {
	height: 10px;
}

.social-track::-webkit-scrollbar-track {
	background: rgba(246, 241, 233, 0.1);
}

.social-track::-webkit-scrollbar-thumb {
	background: rgba(246, 241, 233, 0.38);
}

.social-card {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr auto auto;
	flex: 0 0 70%;
	min-height: 286px;
	padding: 18px;
	overflow: hidden;
	scroll-snap-align: start;
	border: 1px solid rgba(246, 241, 233, 0.15);
	background: #10100f;
	transition:
		transform 180ms ease,
		border-color 180ms ease;
	isolation: isolate;
}

.social-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	border-top: 6px solid var(--accent);
	opacity: 0.96;
	pointer-events: none;
	z-index: 3;
}

.social-card::after {
	content: "";
	position: absolute;
	inset: auto 16px 16px auto;
	width: 52px;
	height: 52px;
	border-right: 2px solid var(--accent);
	border-bottom: 2px solid var(--accent);
	pointer-events: none;
}

.social-card:hover {
	transform: translateY(-6px);
	border-color: color-mix(in srgb, var(--accent), white 12%);
}

.social-card__image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
	pointer-events: none;
}

.social-card__image--top {
	object-position: center top;
}

.social-card__fade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(5, 5, 5, 0.06) 0%, rgba(5, 5, 5, 0.18) 44%, rgba(5, 5, 5, 0.88) 76%, rgba(5, 5, 5, 0.98) 100%),
		linear-gradient(180deg, rgba(5, 5, 5, 0.32) 0%, rgba(5, 5, 5, 0.08) 24%, rgba(5, 5, 5, 0.1) 54%, rgba(5, 5, 5, 0.7) 100%);
	pointer-events: none;
}

.social-card__number,
.social-card__meta {
	color: var(--accent);
}

.social-card__number {
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.social-card__graphic {
	position: absolute;
	top: 22px;
	right: 20px;
	color: color-mix(in srgb, var(--accent), transparent 42%);
	font-family: var(--display-font);
	font-size: 4.2rem;
	font-weight: 900;
	line-height: 0.82;
	pointer-events: none;
	z-index: 2;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.social-card__name {
	align-self: end;
	max-width: calc(100% - 12px);
	font-family: var(--display-font);
	font-size: 2.55rem;
	font-weight: 900;
	line-height: 0.86;
	text-transform: uppercase;
	word-break: break-word;
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.social-card__handle {
	margin-top: 16px;
	color: rgba(246, 241, 233, 0.72);
	font-size: 1rem;
	font-weight: 800;
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.social-card__meta {
	margin-top: 28px;
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 28px var(--pad);
	color: rgba(246, 241, 233, 0.66);
}

.site-footer p,
.site-footer a {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--ink);
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 520ms ease,
		transform 520ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (min-width: 720px) {
	:root {
		--pad: 34px;
	}

	h1 {
		font-size: 7.5rem;
	}

	h2 {
		font-size: 4.9rem;
	}

	.hero__content {
		padding-bottom: 72px;
	}

	.section-band {
		padding-top: 104px;
		padding-bottom: 104px;
	}

	.showcase {
		padding-top: 0;
		padding-bottom: 0;
	}

	.section-grid {
		grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
		align-items: center;
	}

	.showcase .section-grid {
		grid-template-columns: minmax(0, 500px) minmax(230px, 1fr);
		gap: 14px;
		align-items: end;
	}

	.showcase .section-copy {
		padding-bottom: 62px;
	}

	.showcase__wordmark {
		width: min(100%, 420px);
	}

	.showcase__fg {
		width: min(100%, 470px);
		max-height: 480px;
	}

	.social-card {
		flex-basis: 38%;
		min-height: 318px;
		padding: 20px;
	}

	.socials__intro h2 {
		font-size: 4.45rem;
	}

	.social-card__graphic {
		font-size: 5rem;
	}

	.social-card__name {
		font-size: 3rem;
	}
}

@media (min-width: 1080px) {
	h1 {
		font-size: 10rem;
	}

	h2 {
		font-size: 5.95rem;
	}

	.hero__content {
		padding-bottom: 82px;
	}

	.hero__role {
		font-size: 1.08rem;
	}

	.social-card {
		flex-basis: 30%;
		min-height: 340px;
	}

	.socials__intro h2 {
		font-size: 5.2rem;
	}

	.showcase .section-grid {
		grid-template-columns: minmax(0, 540px) minmax(300px, 1fr);
		gap: 18px;
	}

	.showcase .section-copy {
		padding-bottom: 76px;
	}

	.showcase__wordmark {
		width: min(100%, 500px);
	}

	.showcase__fg {
		width: min(100%, 560px);
		max-height: 540px;
	}
}

@media (min-width: 1400px) {
	h1 {
		font-size: 12rem;
	}
}

@media (max-width: 520px) {
	:root {
		--header: 64px;
	}

	.site-header {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.nav-links a {
		padding: 0 10px;
	}

	.hero {
		min-height: 86svh;
	}

	.hero__media img {
		object-position: 64% 40%;
	}

	.hero__shade {
		background:
			linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.62) 58%, rgba(5, 5, 5, 0.22) 100%),
			linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.36) 44%, rgba(5, 5, 5, 0.96) 100%);
	}

	.hero__content {
		padding-top: 118px;
		padding-bottom: 42px;
	}

	h1 {
		font-size: 4rem;
	}

	h2 {
		font-size: 2.9rem;
	}

	.hero__actions {
		display: grid;
	}

	.button {
		width: 100%;
	}

	.showcase {
		padding-top: 0;
		padding-bottom: 0;
	}

	.showcase .section-grid {
		justify-items: center;
		gap: 4px;
		text-align: center;
	}

	.showcase .section-copy {
		justify-items: center;
		gap: 10px;
		padding-bottom: 0;
	}

	.showcase__wordmark {
		width: min(100%, 330px);
		margin-top: 6px;
		margin-bottom: 2px;
	}

	.showcase .section-copy p {
		max-width: 100%;
	}

	.showcase .section-copy .button {
		justify-self: center;
		width: fit-content;
		margin-top: 0;
	}

	.showcase__fg {
		width: min(92%, 330px);
		max-height: 300px;
		margin-top: -4px;
		margin-left: auto;
		margin-right: auto;
		object-position: center bottom;
		justify-self: center;
	}

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

	.socials__intro h2 {
		font-size: 2.6rem;
	}

	.social-controls {
		grid-column: 1;
		grid-row: auto;
	}

	.social-card {
		flex-basis: 76%;
		min-height: 276px;
	}

	.social-card__graphic {
		font-size: 3.5rem;
	}

	.social-card__name {
		font-size: 2.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.hero__media img {
		transform: none !important;
	}
}
