:root {
	--slr-bg: #1b1a1e;
	--slr-surface: #232228;
	--slr-text: #f4f1ec;
	--slr-dim: #c9c5bd;
	--slr-muted: #8e8a82;
	--slr-line: rgba(255,255,255,.1);
	--slr-accent: #deff1a;
	--slr-accent-ink: #1b1a1e;
	--slr-display: "Anton", "Arial Black", sans-serif;
	--slr-body: "IBM Plex Sans", system-ui, sans-serif;
}

body.home,
body.front-page {
	background: var(--slr-bg);
	color: var(--slr-text);
}

.slr-site {
	background: var(--slr-bg);
}

body:not(.home):not(.front-page) .slr-site {
	background: #fff;
}

.slr-shell {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.slr-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(27,26,30,.9);
	backdrop-filter: saturate(140%) blur(14px);
	border-bottom: 1px solid rgba(255,255,255,.06);
	transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
	overflow: visible;
}

.slr-header .slr-shell {
	max-width: 1440px !important;
	padding-left: 40px !important;
	padding-right: 40px !important;
}

.slr-header.is-stuck {
	background: rgba(27,26,30,.96);
	border-bottom-color: rgba(255,255,255,.12);
	box-shadow: 0 14px 40px rgba(0,0,0,.22);
}

.slr-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 82px;
	width: 100%;
	overflow: visible;
}

.slr-header-left {
	display: flex;
	align-items: center;
	gap: 24px;
	min-width: 0;
}

.slr-header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-left: auto;
}

.slr-header-socials {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.slr-header-socials a {
	width: 34px;
	height: 34px;
	border: 1px solid var(--slr-line);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
}

.slr-header-socials a:hover {
	background: var(--slr-accent);
	color: var(--slr-accent-ink);
	border-color: var(--slr-accent);
}

.slr-brandmark {
	display: inline-flex;
	align-items: center;
}

.slr-brandmark img {
	width: auto;
	height: clamp(58px, 5vw, 76px) !important;
	max-height: none !important;
	max-width: none !important;
	display: block;
	filter: brightness(0) invert(1);
	transform: scale(2);
	transform-origin: left center;
	transition: filter .25s ease, transform .25s ease, height .25s ease;
}

.slr-header.is-stuck .slr-brandmark img {
	height: clamp(54px, 4.4vw, 68px) !important;
	transform: scale(1.85);
}

.slr-menu-toggle {
	width: 52px !important;
	height: 52px !important;
	min-width: 52px;
	border-radius: 999px;
	border: 1px solid var(--slr-line) !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent !important;
	color: var(--slr-text) !important;
	cursor: pointer;
	padding: 0;
	flex: 0 0 auto;
}

.slr-menu-toggle span,
.slr-menu-toggle span::before,
.slr-menu-toggle span::after {
	content: "";
	display: block;
	width: 26px;
	height: 3px;
	border-radius: 2px;
	background: currentColor !important;
	position: relative;
	transition: transform .25s ease, top .25s ease, bottom .25s ease;
}

.slr-menu-toggle span::before,
.slr-menu-toggle span::after {
	position: absolute;
	left: 0;
}

.slr-menu-toggle span::before { top: -9px; }
.slr-menu-toggle span::after { bottom: -9px; }
.slr-menu-toggle.is-open span { background: transparent !important; }
.slr-menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.slr-menu-toggle.is-open span::after { bottom: 0; transform: rotate(-45deg); }

.slr-nav-desktop {
	display: none;
}

.slr-nav .slr-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 14px;
}

.slr-nav a {
	color: var(--slr-dim);
	text-decoration: none;
	font: 600 14px/1 var(--slr-body);
}

.slr-nav a:hover {
	color: var(--slr-text);
}

.slr-nav-mobile {
	display: none;
	position: fixed;
	inset: 104px 0 auto 0;
	max-height: calc(100vh - 104px);
	overflow: auto;
	background: var(--slr-bg);
	border-top: 1px solid var(--slr-line);
	padding: 28px 40px 38px;
}

.slr-nav-mobile.is-open {
	display: block;
}

.slr-nav-mobile .slr-menu {
	align-items: flex-start;
	flex-direction: column;
	gap: 18px;
}

.slr-nav-mobile .sub-menu {
	list-style: none;
	margin: 10px 0 0 18px;
	padding: 0;
	display: grid;
	gap: 8px;
}

.slr-nav-mobile .sub-menu a {
	color: var(--slr-muted);
	font-size: 13px;
}

.slr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 999px;
	padding: 15px 24px;
	font: 700 14px/1 var(--slr-body);
	letter-spacing: .04em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	border: 1px solid var(--slr-line);
	color: var(--slr-text);
	transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease, filter .22s ease;
}

.slr-btn-primary {
	background: var(--slr-accent);
	color: var(--slr-accent-ink);
	border-color: var(--slr-accent);
}

.slr-btn-ghost {
	background: transparent;
	color: var(--slr-text);
}

.slr-btn:hover {
	transform: translateY(-2px);
}

.slr-btn-primary:hover {
	filter: brightness(1.05);
}

.slr-btn-ghost:hover {
	border-color: var(--slr-text);
}

.slr-site-content {
	width: 100%;
}

body.home .slr-site-content,
body.front-page .slr-site-content {
	padding: 0;
}

.slr-home-main {
	font-family: var(--slr-body);
	background: var(--slr-bg);
	color: var(--slr-text);
	overflow: hidden;
}

.slr-display {
	font-family: var(--slr-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0;
	line-height: .88;
}

.slr-display em {
	font-style: italic;
	color: var(--slr-accent);
}

.slr-hero {
	padding-top: 0;
}

.slr-hero-grid {
	display: grid;
	grid-template-columns: minmax(360px,.94fr) minmax(460px,1.06fr);
	gap: 44px;
	align-items: start;
	min-height: calc(100vh - 88px);
	padding-top: clamp(16px,2.5vh,32px);
}

.slr-hero-title {
	margin: 0;
	font-size: clamp(56px, 8vw, 128px);
}

.slr-hero-title > span {
	display: block;
}

.slr-hero-title-typed .slr-cycling-line,
.slr-hero.is-living .slr-hero-title-typed .slr-line {
	color: var(--slr-accent);
}

.slr-hero.is-living .slr-hero-title-typed {
	animation: none;
}

.slr-typewriter {
	display: inline-grid;
	grid-template-areas: "word";
	min-width: max-content;
}

.slr-typewriter-ghost,
.slr-typewriter-visible {
	grid-area: word;
}

.slr-typewriter-ghost {
	visibility: hidden;
}

.slr-typewriter-visible {
	display: inline-flex;
	align-items: baseline;
}

.slr-typewriter-caret {
	display: inline-block;
	width: .06em;
	height: .82em;
	margin-left: .05em;
	background: currentColor;
	transform: translateY(.06em);
	animation: slr-caret-blink 1s steps(1) infinite;
}

.slr-hero-title .slr-line {
	opacity: 0;
	transform: translateY(26px);
	animation: slr-line-rise .9s cubic-bezier(.2,.7,.2,1) both;
}

.slr-hero-title .slr-line:nth-child(1) { animation-delay: .15s; }
.slr-hero-title .slr-line:nth-child(2) { animation-delay: .30s; }
.slr-hero-title .slr-line:nth-child(3) { animation-delay: .45s; }

.slr-accent {
	color: var(--slr-accent);
}

.slr-hero-copy p {
	max-width: 500px;
	margin: 72px 0 0;
	color: var(--slr-dim);
	font-size: 17px;
	line-height: 1.55;
}

.slr-hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 36px;
}

.slr-hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	margin-top: 48px;
}

.slr-hero-stats strong {
	display: block;
	font-family: var(--slr-display);
	font-size: 38px;
	line-height: 1;
}

.slr-hero-stats span {
	display: block;
	margin-top: 8px;
	color: var(--slr-muted);
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.slr-hero-portrait {
	position: relative;
	min-height: clamp(560px,66vh,720px);
}

.slr-hero-portrait img {
	display: block;
	width: 138%;
	max-width: none;
	margin-left: -28%;
	margin-top: -96px;
	height: auto;
	transition: transform .35s ease;
}

.slr-hero-portrait:hover img {
	transform: translateY(-8px) scale(1.015);
}

.slr-badge {
	position: absolute;
	top: 24px;
	right: 12px;
	background: var(--slr-accent);
	color: var(--slr-accent-ink);
	padding: 14px 18px;
	font-family: var(--slr-display);
	font-size: 22px;
	line-height: 1;
	text-transform: uppercase;
	transform: rotate(-4deg);
	box-shadow: 0 14px 40px rgba(0,0,0,.18);
}

.slr-marquee {
	border-block: 1px solid var(--slr-line);
	overflow: hidden;
	margin-top: 40px;
}

.slr-marquee div {
	display: flex;
	gap: 52px;
	width: max-content;
	padding: 24px 28px;
	animation: slr-marquee 38s linear infinite;
}

.slr-marquee span {
	font-family: var(--slr-display);
	text-transform: uppercase;
	font-size: 34px;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 28px;
}

.slr-marquee i {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--slr-accent);
	display: inline-block;
}

@keyframes slr-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes slr-caret-blink {
	0%, 49% { opacity: 1; }
	50%, 100% { opacity: 0; }
}

@keyframes slr-line-rise {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.slr-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
	transition-delay: var(--slr-reveal-delay, 0ms);
}

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

.slr-section {
	padding-top: 48px;
	padding-bottom: 48px;
}

.slr-section-head {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: end;
	margin-bottom: 44px;
}

.slr-section-head h2,
.slr-radio h2,
.slr-cta h2 {
	margin: 14px 0 0;
	font-size: clamp(42px, 6vw, 88px);
}

.slr-section-head p,
.slr-radio p,
.slr-cta p {
	color: var(--slr-dim);
	font-size: 17px;
	line-height: 1.55;
	margin: 0;
}

.slr-eyebrow,
.slr-pill {
	color: var(--slr-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.slr-topic-grid,
.slr-post-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0,1fr));
	gap: 16px;
}

.slr-post-grid {
	grid-template-columns: repeat(3, minmax(0,1fr));
	gap: 24px;
}

.slr-topic-card,
.slr-post-card a {
	display: block;
	background: var(--slr-surface);
	border: 1px solid var(--slr-line);
	color: var(--slr-text);
	text-decoration: none;
	overflow: hidden;
	transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.slr-post-card a {
	padding: 24px;
	min-height: 220px;
}

.slr-topic-card:hover,
.slr-post-card a:hover {
	transform: translateY(-6px);
	border-color: var(--slr-accent);
}

.slr-topic-thumb {
	aspect-ratio: 3 / 4;
	position: relative;
	overflow: hidden;
}

.slr-topic-bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

.slr-topic-card:hover .slr-topic-bg {
	transform: scale(1.06);
}

.slr-topic-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.65) 100%);
}

.slr-topic-card-1 .slr-topic-bg { background: linear-gradient(135deg, #4a3f32 0%, #1f1a14 100%); }
.slr-topic-card-2 .slr-topic-bg { background: linear-gradient(135deg, #5c3a28 0%, #2a1a10 100%); }
.slr-topic-card-3 .slr-topic-bg { background: linear-gradient(135deg, #2f4541 0%, #15201e 100%); }
.slr-topic-card-4 .slr-topic-bg { background: linear-gradient(135deg, #3f2a3f 0%, #1a0f1a 100%); }

.slr-topic-num {
	position: absolute;
	top: 16px;
	left: 18px;
	z-index: 2;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--slr-text);
	opacity: .86;
}

.slr-topic-meta {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	color: #fff;
}

.slr-topic-meta div {
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	opacity: .82;
	margin-bottom: 10px;
}

.slr-topic-body {
	padding: 18px 20px 22px;
}

.slr-topic-meta h3,
.slr-post-card h3 {
	margin: 0;
	font-family: var(--slr-body);
	font-size: 24px;
	font-weight: 650;
	line-height: 1.1;
}

.slr-topic-body p,
.slr-post-card p {
	color: var(--slr-dim);
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.5;
}

.slr-topic-body span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--slr-text);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.slr-about-grid,
.slr-radio {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 64px;
	align-items: center;
}

.slr-about-image {
	position: relative;
}

.slr-about-image img {
	width: 100%;
	display: block;
}

.slr-about-image span {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: var(--slr-bg);
	color: var(--slr-text);
	padding: 10px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.slr-about-copy p {
	max-width: 560px;
	color: var(--slr-dim);
	font-size: 17px;
	line-height: 1.6;
}

.slr-about-copy .slr-note {
	color: var(--slr-muted);
	font-size: 14px;
	font-style: italic;
}

.slr-creds {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin: 28px 0 32px;
}

.slr-creds strong {
	display: block;
	font-family: var(--slr-display);
	font-size: 34px;
	line-height: 1;
}

.slr-creds span {
	display: block;
	margin-top: 8px;
	color: var(--slr-muted);
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.slr-logo-row {
	display: grid;
	grid-template-columns: repeat(5, minmax(0,1fr));
	gap: 24px;
	border-top: 1px solid var(--slr-line);
	border-bottom: 1px solid var(--slr-line);
	padding: 28px 0;
}

.slr-logo-row span {
	font-family: var(--slr-display);
	text-align: center;
	font-size: 22px;
	opacity: .65;
	text-transform: uppercase;
	transition: opacity .2s ease, transform .2s ease;
}

.slr-logo-row span:hover {
	opacity: 1;
	transform: translateY(-2px);
}

.slr-radio {
	border: 1px solid var(--slr-line);
	padding: 48px;
}

.slr-radio-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.slr-radio .slr-btn {
	margin-top: 28px;
}

.slr-radio img {
	width: min(380px,100%);
	justify-self: center;
}

.slr-post-thumb {
	aspect-ratio: 4 / 3;
	background: #2c2b33;
	margin: -24px -24px 20px;
	overflow: hidden;
}

.slr-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.slr-post-card span {
	color: var(--slr-accent);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.slr-cta {
	position: relative;
	background: var(--slr-accent);
	color: var(--slr-accent-ink);
	padding: 80px 56px;
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 48px;
	align-items: center;
	overflow: hidden;
}

.slr-cta p {
	color: rgba(27,26,30,.78);
}

.slr-cta .slr-display em {
	color: var(--slr-accent-ink);
}

.slr-cta .slr-btn-primary {
	background: var(--slr-accent-ink);
	color: var(--slr-accent);
	border-color: var(--slr-accent-ink);
	justify-self: start;
}

.slr-cta .slr-btn-ghost {
	color: var(--slr-accent-ink);
	border-color: rgba(0,0,0,.18);
}

.slr-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.slr-cta-note {
	margin-top: 14px;
	font-size: 13px;
	opacity: .8;
}

.slr-cta-deco {
	position: absolute;
	right: -80px;
	top: -80px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	border: 1px solid currentColor;
	opacity: .15;
	pointer-events: none;
}

.slr-cta-deco-2 {
	right: -40px;
	top: -40px;
	width: 240px;
	height: 240px;
}

#colophon.slr-footer,
.slr-footer {
	background: var(--slr-bg) !important;
	color: var(--slr-text) !important;
	border-top: 1px solid var(--slr-line) !important;
	padding: 48px 0 28px;
}

.slr-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr .7fr .7fr 1fr;
	gap: 42px;
	margin-bottom: 44px;
}

.slr-footer-brand img {
	height: 150px;
	width: auto;
	filter: brightness(0) invert(1);
	display: block;
	margin-bottom: 14px;
}

#colophon.slr-footer p,
#colophon.slr-footer .slr-footer-menu a,
.slr-footer p,
.slr-footer-menu a {
	color: var(--slr-dim);
	font-size: 15px;
	line-height: 1.5;
}

#colophon.slr-footer h4,
.slr-footer h4 {
	margin: 0 0 18px;
	color: var(--slr-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.slr-footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.slr-footer-menu a {
	text-decoration: none;
}

.slr-socials {
	display: flex;
	gap: 10px;
}

.slr-socials a,
.slr-to-top {
	width: 40px;
	height: 40px;
	border: 1px solid var(--slr-line);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--slr-text);
	text-decoration: none;
	background: transparent;
}

#colophon.slr-footer .slr-footer-bottom,
.slr-footer-bottom {
	border-top: 1px solid var(--slr-line);
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	color: var(--slr-muted);
	font-size: 13px;
}

#colophon.slr-footer .slr-footer-bottom a,
.slr-footer-bottom a {
	color: var(--slr-muted);
	text-decoration: none;
}

.slr-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: var(--slr-surface);
	z-index: 90;
	cursor: pointer;
}

@media (max-width: 1100px) {
	.slr-nav-desktop { display: none; }
	.slr-topic-grid,
	.slr-post-grid,
	.slr-footer-grid {
		grid-template-columns: repeat(2, minmax(0,1fr));
	}
	.slr-logo-row {
		grid-template-columns: repeat(2, minmax(0,1fr));
	}
	.slr-hero-grid,
	.slr-section-head,
	.slr-about-grid,
	.slr-radio,
	.slr-cta {
		grid-template-columns: 1fr;
	}
	.slr-hero-portrait img {
		width: 100%;
		margin: 0;
	}
}

@media (max-width: 720px) {
	.slr-shell { padding: 0 20px; }
	.slr-header-inner { min-height: 74px; }
	.slr-brandmark img { height: 52px !important; transform: scale(1.45); }
	.slr-btn { padding: 13px 16px; font-size: 12px; }
	.slr-header-actions { gap: 8px; }
	.slr-header-socials { display: none; }
	.slr-hero-grid {
		--mobile-hero-pair-height: clamp(172px, 46vw, 230px);
		position: relative;
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(128px, 42%);
		column-gap: 12px;
		align-items: stretch;
		min-height: auto;
		padding-top: 24px;
		overflow: visible;
	}
	.slr-hero-copy {
		display: contents;
	}
	.slr-hero-title { order: 1; }
	.slr-hero-copy p { order: 3; }
	.slr-hero-actions { order: 4; }
	.slr-hero-stats { order: 5; }
	.slr-hero-title {
		grid-column: 1;
		grid-row: 1;
		max-width: none;
		height: var(--mobile-hero-pair-height);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		font-size: clamp(44px, 15vw, 72px);
		align-self: stretch;
	}
	.slr-hero-copy p {
		grid-column: 1 / -1;
		margin-top: 36px;
	}
	.slr-hero-actions,
	.slr-hero-stats {
		grid-column: 1 / -1;
	}
	.slr-hero-portrait {
		position: relative;
		top: auto;
		right: auto;
		z-index: 1;
		width: 100%;
		height: var(--mobile-hero-pair-height);
		min-height: 0;
		margin: 0;
		pointer-events: none;
		order: 2;
		grid-column: 2;
		grid-row: 1;
		align-self: stretch;
		display: flex;
		align-items: stretch;
	}
	.slr-hero-portrait img {
		width: 150%;
		max-width: none;
		margin: 0 0 0 -38%;
		height: 100%;
		object-fit: contain;
		object-position: center bottom;
	}
	.slr-badge {
		display: none;
	}
	.slr-topic-grid,
	.slr-post-grid,
	.slr-logo-row,
	.slr-footer-grid {
		grid-template-columns: 1fr;
	}
	.slr-section { padding-top: 36px; padding-bottom: 36px; }
	.slr-radio,
	.slr-cta {
		padding: 32px 24px;
	}
}
