@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 500 800;
	font-display: swap;
	src: url('/fonts/manrope-latin.woff2') format('woff2');
}

@font-face {
	font-family: 'IBM Plex Mono';
	font-style: normal;
	font-weight: 500 600;
	font-display: swap;
	src: url('/fonts/ibm-plex-mono-600-latin.woff2') format('woff2');
}

:root {
	--ink: #0a0a0b;
	--panel: #131315;
	--paper: #f3f1ec;
	--muted: #aaa7a1;
	--line: #303034;
	--red: #ef3038;
	--spotify: #1ed760;
	--apple: #a855f7;
	--spotify-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%3E%3Cpath%20d%3D'M12%201.8A10.2%2010.2%200%201%200%2012%2022.2%2010.2%2010.2%200%200%200%2012%201.8Zm4.68%2014.7a.64.64%200%200%201-.88.21c-2.4-1.47-5.43-1.8-8.99-.98a.64.64%200%201%201-.29-1.25c3.9-.9%207.25-.52%209.95%201.13.3.18.4.58.21.88Zm1.25-2.78a.8.8%200%200%201-1.1.27c-2.75-1.69-6.94-2.18-10.2-1.2a.8.8%200%201%201-.47-1.54c3.72-1.12%208.34-.57%2011.5%201.37.38.23.5.73.27%201.1Zm.11-2.9C14.75%208.86%209.3%208.67%206.16%209.6a.96.96%200%201%201-.55-1.84c3.6-1.08%209.64-.85%2013.42%201.4a.96.96%200%200%201-.99%201.65Z'%2F%3E%3C%2Fsvg%3E");
	--apple-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%3E%3Cpath%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.8'%20stroke-linecap%3D'round'%20d%3D'M8.4%2016.1a6.2%206.2%200%201%201%207.2%200M5.9%2018.6a9.2%209.2%200%201%201%2012.2%200'%2F%3E%3Ccircle%20cx%3D'12'%20cy%3D'10'%20r%3D'2.25'%2F%3E%3Cpath%20d%3D'M9.6%2014.6a2.4%202.4%200%200%201%204.8%200l-.72%206.05a1.7%201.7%200%200%201-3.36%200z'%2F%3E%3C%2Fsvg%3E");
	--display: 'Manrope', Arial, sans-serif;
	--mono: 'IBM Plex Mono', monospace;
	--pad: clamp(22px, 4vw, 64px);
	--content: 1280px;
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body {
	margin: 0;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--display);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: inherit; }
button, input { font: inherit; }

.wrap {
	width: min(100%, calc(var(--content) + 2 * var(--pad)));
	margin-inline: auto;
	padding-inline: var(--pad);
}

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100;
	padding: 10px 14px;
	background: var(--paper);
	color: var(--ink);
	transform: translateY(-150%);
}

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

.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 50;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	min-height: 80px;
	padding-inline: var(--pad);
	border-bottom: 1px solid var(--line);
	background: rgb(10 10 11 / 94%);
	box-shadow: 0 12px 40px rgb(0 0 0 / 22%);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-100%);
	transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
	backdrop-filter: blur(14px);
}

.site-header.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.site-logo {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -0.07em;
	line-height: 1;
	text-decoration: none;
}

.site-logo span { color: var(--red); }

.site-header nav {
	display: flex;
	justify-content: center;
	gap: clamp(25px, 4vw, 55px);
}

.site-header nav a,
.header-platform,
.host__links a,
.site-footer a,
.site-footer p {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-header nav a { color: #d1cec8; }
.site-header a:hover, .site-header a:focus-visible, .host__links a:hover, .host__links a:focus-visible, .site-footer a:hover, .site-footer a:focus-visible { color: var(--red); }

.header-listen {
	display: flex;
	justify-self: end;
	gap: 8px;
}

.header-platform {
	display: block;
	width: 129px;
	height: 41px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	font-size: 0;
}

.header-platform::before {
	display: none;
}

.header-spotify { background-image: url('/spotify-listen-badge.png'); }

.header-spotify svg { display: none; }

.header-apple { background-image: url('/apple-podcasts-listen-badge.png?v=20260825-2'); }

.hero {
	display: grid;
	grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(55px, 8vw, 120px);
	align-items: center;
	min-height: 100svh;
	padding-block: clamp(70px, 9vw, 120px);
}

.show-art {
	position: relative;
	display: grid;
	width: 100%;
	aspect-ratio: 1;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 12%, rgb(239 48 56 / 12%), transparent 38%),
		linear-gradient(145deg, #09090a 30%, #151517);
	border: 1px solid #222225;
}

.show-art::after {
	position: absolute;
	inset: 5%;
	border: 1px solid rgb(255 255 255 / 4%);
	content: '';
}

.show-art > span {
	font-size: clamp(140px, 19vw, 280px);
	font-weight: 800;
	letter-spacing: -0.1em;
	line-height: 1;
}

.show-art b { color: var(--red); }

.hero h1 {
	margin: 0 0 30px;
	font-size: clamp(66px, 8vw, 116px);
	font-weight: 800;
	letter-spacing: -0.07em;
	line-height: 0.82;
	text-transform: uppercase;
}

.hero h1 span {
	display: inline-grid;
	width: 2.3em;
	height: 2.3em;
	place-items: center;
	background: var(--red);
	color: #fff;
	font-family: var(--mono);
	font-size: 0.2em;
	letter-spacing: 0;
	vertical-align: 0.3em;
	text-transform: lowercase;
}

.hero h1 b { color: var(--red); }

.hero__description {
	max-width: 620px;
	margin: 0 0 10px;
	color: #cfccc5;
	font-size: clamp(18px, 1.6vw, 23px);
	line-height: 1.45;
}

.spotify-button,
.apple-button {
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	font-size: 0;
	text-decoration: none;
}

.spotify-button::before,
.apple-button::before {
	display: block;
	width: 34px;
	height: 34px;
	content: '';
	transition: background 160ms ease, transform 160ms ease;
}

.spotify-button::before {
	background: var(--spotify);
	-webkit-mask: var(--spotify-icon) center / contain no-repeat;
	mask: var(--spotify-icon) center / contain no-repeat;
}

.spotify-button svg { display: none; }

.apple-button::before {
	background: var(--apple);
	-webkit-mask: var(--apple-icon) center / contain no-repeat;
	mask: var(--apple-icon) center / contain no-repeat;
}

.spotify-button:hover::before,
.spotify-button:focus-visible::before,
.apple-button:hover::before,
.apple-button:focus-visible::before { transform: scale(1.1); }

.substack-button {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	padding: 0 16px;
	border: 1px solid #77747a;
	color: var(--paper);
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color 160ms ease, color 160ms ease;
}

.substack-button:hover, .substack-button:focus-visible {
	border-color: #ff6719;
	color: #ff8a4d;
}

.hero__schedule {
	margin: 0 0 30px;
	color: #d0cdc6;
	font-size: clamp(12px, 1.1vw, 15px);
	font-weight: 500;
	line-height: 1.45;
}

.hero__schedule span {
	display: inline;
	color: inherit;
	font-weight: inherit;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.listen-badge {
	display: flex;
	width: 145px;
	height: 46px;
	align-items: center;
	text-decoration: none;
}

.listen-badge--spotify {
	gap: 10px;
	padding: 0 13px;
	border: 1px solid #a6a6a6;
	border-radius: 7px;
	background: #000;
	color: #fff;
}

.listen-badge--spotify svg {
	width: 25px;
	height: 25px;
	flex: none;
	fill: var(--spotify);
}

.listen-badge--spotify span {
	display: flex;
	flex-direction: column;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 0.95;
}

.listen-badge--spotify small {
	margin-bottom: 3px;
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.015em;
	line-height: 1;
}

.listen-badge--apple img {
	display: block;
	width: 100%;
	height: 100%;
}

@media (max-width: 350px) {
	.listen-badge { width: 133px; height: 42.2px; }
}

.section { padding-block: clamp(68px, 8vw, 105px); }

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: clamp(14px, 2vw, 26px);
	margin-bottom: clamp(40px, 5vw, 64px);
}

.section-heading::before,
.section-heading::after {
	height: 1px;
	background: var(--line);
	content: '';
}

.section h2 {
	margin: 0;
	font-size: clamp(46px, 6vw, 82px);
	font-weight: 700;
	letter-spacing: -0.06em;
	line-height: 0.98;
}

.section-heading h2 {
	padding: 10px clamp(16px, 2vw, 26px) 12px;
	border: 1px solid var(--line);
	background: var(--panel);
	font-size: clamp(38px, 4.5vw, 62px);
	white-space: nowrap;
}

.spotify-embed {
	width: 100%;
}

.spotify-video {
	width: 100%;
	max-width: 520px;
	justify-self: end;
	aspect-ratio: 16 / 9;
}

.spotify-video iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 12px;
}

.spotify-embed iframe {
	display: block;
	border: 0;
	border-radius: 12px;
}

.about__copy {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: clamp(40px, 6vw, 90px);
}

.about__text { display: grid; align-content: start; gap: 24px; }
.about__text p { margin: 0; }
.about__lead { color: #d0cdc6; font-size: clamp(19px, 2vw, 27px); line-height: 1.45; }
.about__text > p:last-child { color: var(--muted); font-size: 17px; }

.host-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(32px, 4vw, 56px);
}

.host {
	--host-divider-gap: clamp(24px, 3vw, 38px);
	display: grid;
	grid-template-columns: calc(180px + var(--host-divider-gap)) minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
	min-width: 0;
	padding: clamp(28px, 3vw, 40px);
	background: var(--panel);
	border: 1px solid var(--line);
}

.host__media {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 22px;
	padding-right: var(--host-divider-gap);
	border-right: 1px solid var(--line);
}

.host__photo {
	width: 180px;
	height: auto;
	object-fit: contain;
	filter: saturate(0.82) contrast(1.04);
}

.host:nth-child(2) .host__photo { clip-path: inset(0 0 1px 0); }

.host__copy {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	padding-left: var(--host-divider-gap);
}
.host__heading { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.host h3 { margin: 0; font-size: clamp(30px, 2.7vw, 40px); letter-spacing: -0.055em; line-height: 1; white-space: nowrap; }
.host__copy > p { margin: 0; color: var(--muted); font-size: 17px; }
.host__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 34px;
}

.host__learn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 17px;
	text-decoration: none;
}

.host__learn {
	border: 1px solid #5a5a60;
	background: transparent;
	color: var(--paper);
	transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.host__linkedin {
	display: grid;
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	place-items: center;
	padding: 0;
	color: var(--paper);
	text-decoration: none;
	transition: color 160ms ease;
}

.host__linkedin-icon {
	display: block;
	width: 18px;
	height: 18px;
	background: currentColor;
	-webkit-mask: url('/linkedin-in-white.png') center / contain no-repeat;
	mask: url('/linkedin-in-white.png') center / contain no-repeat;
}

.host__links .host__learn:hover,
.host__links .host__learn:focus-visible {
	border-color: var(--red);
	background: var(--red);
	color: white;
}

.host__linkedin:hover,
.host__linkedin:focus-visible { color: #0a66c2; }

.host__business {
	display: inline-flex;
	width: 180px;
	height: 48px;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.host__business img {
	display: block;
	width: auto;
	object-fit: contain;
}

.host__business--venturex {
	gap: 10px;
	color: var(--paper);
}

.venturex-mark {
	display: block;
	width: 60px;
	height: 40px;
	flex: 0 0 auto;
	background: var(--paper);
	-webkit-mask: url('/venturex-logo-white.png') center / contain no-repeat;
	mask: url('/venturex-logo-white.png') center / contain no-repeat;
	transition: background 160ms ease;
}

.venturex-tagline {
	display: flex;
	flex-direction: column;
	font-family: var(--display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.25;
	white-space: nowrap;
}

.host__business--venturex:hover .venturex-mark,
.host__business--venturex:focus-visible .venturex-mark { background: #ffd42a; }

.host__business--touchpoint img {
	width: auto;
	height: 48px;
	filter: grayscale(1) brightness(0) invert(1);
	transition: filter 160ms ease;
}

.host__business--touchpoint:hover img,
.host__business--touchpoint:focus-visible img { filter: none; }
.host__links a:hover, .host__links a:focus-visible { color: var(--red); }

.subscribe {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
	gap: clamp(60px, 10vw, 160px);
	align-items: end;
	border-top: 1px solid var(--line);
}

.subscribe h2 { max-width: 700px; }
.subscribe h2 span { display: block; }
.subscribe > div > p:last-child { margin: 25px 0 0; color: var(--muted); }

.subscribe-form label,
.subscribe-form__status {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.subscribe-form label { display: block; margin-bottom: 11px; }
.subscribe-form__controls { display: grid; grid-template-columns: minmax(0, 1fr) auto; border: 1px solid #414145; }
.subscribe-form input, .subscribe-form button { min-height: 56px; border: 0; border-radius: 0; }
.subscribe-form input { min-width: 0; padding: 0 16px; outline: 0; background: var(--panel); color: var(--paper); }
.subscribe-form input::placeholder { color: #706e72; }
.subscribe-form input:focus-visible { box-shadow: inset 0 0 0 2px var(--paper); }
.subscribe-form button { padding: 0 20px; background: var(--red); color: white; cursor: pointer; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.subscribe-form button:hover, .subscribe-form button:focus-visible { background: var(--paper); color: var(--ink); }
.subscribe-form button:disabled { cursor: wait; opacity: 0.68; }
.subscribe-form__status { min-height: 1.5em; margin: 8px 0 0; }
.subscribe-form__status[data-state='success'] { color: #86dba0; }
.subscribe-form__status[data-state='error'] { color: #ff9b9b; }
.turnstile-widget { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

.site-footer {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 35px;
	min-height: 130px;
	border-top: 1px solid var(--line);
}

.site-footer .site-logo--footer {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	font-family: var(--display);
	font-size: 31px;
	font-weight: 800;
	letter-spacing: -0.07em;
	text-transform: none;
}

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

.site-footer__brand-social { align-items: center; gap: 10px !important; }

.footer-social {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
}

.footer-social > span {
	display: block;
	width: 22px;
	height: 22px;
	background: var(--paper);
	transition: background 160ms ease;
}

.footer-social__apple {
	-webkit-mask: var(--apple-icon) center / contain no-repeat;
	mask: var(--apple-icon) center / contain no-repeat;
}

.footer-social:hover .footer-social__spotify,
.footer-social:focus-visible .footer-social__spotify { background: #1ed760; }

.footer-social:hover .footer-social__apple,
.footer-social:focus-visible .footer-social__apple { background: var(--apple); }

.footer-social:hover .footer-social__linkedin,
.footer-social:focus-visible .footer-social__linkedin { background: #0a66c2; }

.footer-social:hover .footer-social__substack,
.footer-social:focus-visible .footer-social__substack { background: #ff6719; }

.footer-social__spotify {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.8A10.2 10.2 0 1 0 12 22.2 10.2 10.2 0 0 0 12 1.8Zm4.68 14.7a.64.64 0 0 1-.88.21c-2.4-1.47-5.43-1.8-8.99-.98a.64.64 0 1 1-.29-1.25c3.9-.9 7.25-.52 9.95 1.13.3.18.4.58.21.88Zm1.25-2.78a.8.8 0 0 1-1.1.27c-2.75-1.69-6.94-2.18-10.2-1.2a.8.8 0 1 1-.47-1.54c3.72-1.12 8.34-.57 11.5 1.37.38.23.5.73.27 1.1Zm.11-2.9C14.75 8.86 9.3 8.67 6.16 9.6a.96.96 0 1 1-.55-1.84c3.6-1.08 9.64-.85 13.42 1.4a.96.96 0 0 1-.99 1.65Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.8A10.2 10.2 0 1 0 12 22.2 10.2 10.2 0 0 0 12 1.8Zm4.68 14.7a.64.64 0 0 1-.88.21c-2.4-1.47-5.43-1.8-8.99-.98a.64.64 0 1 1-.29-1.25c3.9-.9 7.25-.52 9.95 1.13.3.18.4.58.21.88Zm1.25-2.78a.8.8 0 0 1-1.1.27c-2.75-1.69-6.94-2.18-10.2-1.2a.8.8 0 1 1-.47-1.54c3.72-1.12 8.34-.57 11.5 1.37.38.23.5.73.27 1.1Zm.11-2.9C14.75 8.86 9.3 8.67 6.16 9.6a.96.96 0 1 1-.55-1.84c3.6-1.08 9.64-.85 13.42 1.4a.96.96 0 0 1-.99 1.65Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-social__linkedin {
	-webkit-mask: url('/linkedin-in-white.png') center / contain no-repeat;
	mask: url('/linkedin-in-white.png') center / contain no-repeat;
}

.footer-social__substack {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 32h448v64H0zm0 128h448v64H0zm0 128h448v224L224 384 0 512z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 32h448v64H0zm0 128h448v64H0zm0 128h448v224L224 384 0 512z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer > div { display: flex; gap: 26px; }
.site-footer p { margin: 0; color: #666369; text-align: right; }
.site-footer__meta { justify-content: flex-end; align-items: center; gap: 16px !important; }
.site-footer__meta a { color: #77747a; }

.legal-page {
	min-height: calc(100svh - 130px);
	padding-top: 170px;
	padding-bottom: 120px;
}

.legal-page__header {
	max-width: 900px;
	margin-bottom: 75px;
	padding-bottom: 45px;
	border-bottom: 1px solid var(--line);
}

.legal-page h1 {
	margin: 0 0 22px;
	font-size: clamp(58px, 8vw, 104px);
	font-weight: 700;
	letter-spacing: -0.065em;
	line-height: 0.95;
}

.legal-page__updated {
	margin: 0;
	color: var(--muted);
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.legal-copy {
	max-width: 800px;
	margin-left: clamp(0px, 12vw, 180px);
}

.legal-copy section + section { margin-top: 50px; }
.legal-copy h2 { margin: 0 0 14px; font-size: clamp(25px, 3vw, 36px); letter-spacing: -0.035em; }
.legal-copy p, .legal-copy li { color: #bbb8b2; font-size: 17px; }
.legal-copy p { margin: 0 0 16px; }
.legal-copy ul { margin: 0; padding-left: 22px; }
.legal-copy li + li { margin-top: 9px; }
.legal-copy a { text-underline-offset: 3px; }
.legal-copy a:hover, .legal-copy a:focus-visible { color: var(--red); }

.js [data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 600ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-revealed {
	opacity: 1;
	transform: translateY(0);
}

.js .host:nth-child(2) { transition-delay: 100ms; }

@media (max-width: 900px) {
	.site-header nav { display: none; }
	.site-header { grid-template-columns: 1fr auto; }
	.site-header--legal {
		grid-template-rows: auto auto;
		row-gap: 7px;
		padding-block: 10px;
	}
	.site-header--legal nav {
		display: flex;
		grid-column: 1 / -1;
		grid-row: 2;
		justify-content: flex-start;
		gap: clamp(16px, 5vw, 34px);
	}
	.hero { grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr); gap: 45px; }
	.hero h1 { font-size: clamp(54px, 8.5vw, 78px); }
	.about__copy { margin-left: 0; }
	.host-list { grid-template-columns: 1fr; }
	.subscribe { grid-template-columns: 1fr; }
	.subscribe-form { max-width: 600px; }
}

@media (max-width: 680px) {
	:root { --pad: 20px; }
	.site-header { min-height: 68px; }
	.header-platform { width: 113px; height: 36px; }
	.hero { grid-template-columns: 1fr; min-height: auto; padding-block: 75px; }
	.show-art { display: none; }
	.show-art > span { font-size: clamp(150px, 55vw, 230px); }
	.hero h1 { font-size: clamp(53px, 17vw, 76px); }
	.hero__description { font-size: 17px; }
	.hero__actions { gap: 14px; }
	.hero__schedule { font-size: clamp(11px, 3vw, 13px); }
	.section { padding-block: 28px 80px; }
	.about { padding-top: 0; }
	.section h2 { font-size: clamp(30px, 9vw, 60px); white-space: nowrap; }
	.listen h2 { font-size: clamp(23px, 7.6vw, 60px); }
	.subscribe h2 { font-size: clamp(31px, 9.5vw, 60px); white-space: normal; }
	.about__copy { grid-template-columns: 1fr; gap: 30px; }
	.host-list { grid-template-columns: 1fr; }
	.host { grid-template-columns: 1fr; gap: 24px; padding: 22px; }
	.host__media { width: 100%; align-items: flex-start; padding-right: 0; padding-bottom: 24px; border-right: 0; border-bottom: 1px solid var(--line); }
	.host__photo { width: 120px; height: auto; }
	.host__business { justify-content: flex-start; }
	.host__copy { padding-left: 0; border-left: 0; }
	.subscribe-form__controls { grid-template-columns: 1fr; }
	.subscribe-form button { min-height: 48px; }
	.site-footer { grid-template-columns: 1fr; padding-block: 35px; }
	.site-footer > div { gap: 15px; }
	.site-footer p { text-align: left; }
	.site-footer__meta { flex-wrap: wrap; justify-content: flex-start; }
	.legal-page { padding-top: 130px; padding-bottom: 80px; }
	.legal-page__header { margin-bottom: 55px; }
	.legal-copy { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.site-header, .js [data-reveal] { transition: none; }
	.js [data-reveal] { opacity: 1; transform: none; }
}
