@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;
	font-display: swap;
	src: url('/fonts/ibm-plex-mono-500-latin.woff2') format('woff2');
}

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

:root {
	--ink: #0a0a0b;
	--ink-raised: #121214;
	--paper: #f3f1ec;
	--muted: #aaa7a1;
	--line: #2d2d30;
	--red: #ef3038;
	--display: 'Manrope', Arial, sans-serif;
	--mono: 'IBM Plex Mono', monospace;
}

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

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

a {
	color: inherit;
}

button,
input {
	font: inherit;
}

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

.carousel {
	position: relative;
	height: 100vh;
	height: 100svh;
	overflow: hidden;
	background:
		radial-gradient(circle at 83% 17%, rgb(239 48 56 / 6%), transparent 27%),
		var(--ink);
}

.carousel__rule {
	position: absolute;
	top: clamp(20px, 3.5vh, 36px);
	right: clamp(22px, 4vw, 64px);
	left: clamp(22px, 4vw, 64px);
	z-index: 20;
	height: 1px;
	background: var(--line);
}

.carousel__rule::before {
	position: absolute;
	top: -3px;
	left: 0;
	width: 7px;
	height: 7px;
	background: var(--red);
	border-radius: 50%;
	content: '';
}

.carousel__stage {
	position: absolute;
	inset: 0;
	overflow: hidden;
	touch-action: pan-y;
}

.slide {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: center;
	padding: clamp(62px, 8vh, 92px) clamp(50px, 8vw, 138px) clamp(108px, 14vh, 138px);
	opacity: 0;
	pointer-events: none;
	transform: translateX(9vw);
	transition:
		opacity 360ms ease,
		transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.slide.is-active {
	z-index: 2;
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
}

.slide.is-before {
	transform: translateX(-9vw);
}

.slide__inner {
	width: min(100%, 1240px);
	margin-inline: auto;
}

.kicker,
.slide-label,
.subscribe-toast > p,
.subscribe-form__status {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.kicker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 clamp(28px, 5vh, 54px);
}

.kicker span,
.subscribe-toast > p span {
	display: block;
	width: 8px;
	height: 8px;
	background: var(--red);
	border-radius: 50%;
	box-shadow: 0 0 0 7px rgb(239 48 56 / 10%);
}

.wordmark {
	width: fit-content;
	margin: 0;
	font-size: clamp(80px, 11.6vw, 176px);
	font-weight: 800;
	letter-spacing: -0.06em;
	line-height: 0.77;
	text-transform: uppercase;
}

.wordmark > span {
	display: block;
}

.wordmark__top {
	position: relative;
	padding-right: 0.72em;
	letter-spacing: -0.04em;
}

.wordmark__top i {
	position: absolute;
	right: 0;
	bottom: 0.08em;
	display: grid;
	place-items: center;
	width: 2.5em;
	height: 2.5em;
	background: var(--red);
	color: #fff;
	font-family: var(--mono);
	font-size: 0.22em;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
	text-transform: lowercase;
}

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

.intro__footer {
	display: grid;
	grid-template-columns: minmax(0, 620px) auto;
	gap: 60px;
	align-items: end;
	margin-top: clamp(42px, 7vh, 76px);
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.intro__footer > p {
	margin: 0;
	color: #cbc8c2;
	font-size: clamp(16px, 1.45vw, 21px);
}

.intro__launch {
	text-align: right;
	text-transform: uppercase;
}

.intro__launch span {
	display: block;
	margin-bottom: 4px;
	color: var(--muted);
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.1em;
}

.intro__launch strong {
	font-size: 19px;
	letter-spacing: -0.02em;
}

.slide-label {
	margin: 0 0 clamp(26px, 5vh, 52px);
	color: var(--red);
}

.slide-label span {
	margin-inline: 7px;
	color: #5f5d60;
}

.about h2,
.hosts h2,
.launch h2 {
	margin: 0;
	font-size: clamp(54px, 7.5vw, 112px);
	font-weight: 700;
	letter-spacing: -0.065em;
	line-height: 0.94;
}

.about h2 {
	max-width: 1040px;
}

.about__lower {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(220px, 0.68fr);
	gap: clamp(28px, 5vw, 80px);
	align-items: start;
	margin-top: clamp(38px, 7vh, 72px);
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.about__lower > p {
	margin: 0;
	color: #bbb8b2;
	font-size: clamp(13px, 1.2vw, 16px);
}

.topics {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 7px 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.topics li {
	position: relative;
	padding-left: 12px;
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.topics li::before {
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 4px;
	height: 4px;
	background: var(--red);
	border-radius: 50%;
	content: '';
}

.hosts__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 60px;
	margin-bottom: clamp(30px, 5vh, 54px);
}

.hosts__heading .slide-label {
	margin-bottom: 20px;
}

.hosts__heading > p {
	max-width: 360px;
	margin: 0 0 4px;
	color: var(--muted);
	font-size: 14px;
}

.hosts__perspectives {
	display: block;
	font-size: 0.78em;
	white-space: nowrap;
}

.host-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.host-profile {
	display: grid;
	grid-template-columns: clamp(150px, 14vw, 208px) minmax(0, 1fr);
	gap: clamp(20px, 3vw, 38px);
	align-items: center;
	min-width: 0;
	margin: 0;
	padding: clamp(18px, 3vh, 30px) clamp(22px, 3.5vw, 52px) clamp(18px, 3vh, 30px) 0;
}

.host-profile + .host-profile {
	padding-right: 0;
	padding-left: clamp(22px, 3.5vw, 52px);
	border-left: 1px solid var(--line);
}

.host-profile__photo {
	overflow: hidden;
	aspect-ratio: 1;
	border: 1px solid #4a4a4e;
}

.host-profile__photo img {
	display: block;
	width: 100%;
	height: calc(100% + 6px);
	object-fit: cover;
	filter: saturate(0.86) contrast(1.03);
	transform: translateY(-3px);
}

.host-profile h3 {
	margin: 0 0 13px;
	font-size: clamp(25px, 2.6vw, 39px);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1;
}

.host-profile__copy > p {
	margin: 0;
	color: #aaa7a1;
	font-size: clamp(11px, 1vw, 13px);
	line-height: 1.55;
}

.host-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	margin-top: 17px;
}

.host-links a {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
}

.host-links a:hover,
.host-links a:focus-visible,
.host-links span {
	color: var(--red);
}

.host-links .business-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 34px;
}

.business-logo img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
}

.business-logo--venturex img,
.business-logo--accountants img {
	height: 28px;
}

.launch {
	text-align: center;
}

.launch .slide-label {
	margin-bottom: clamp(22px, 4vh, 42px);
}

.launch h2 {
	max-width: 1080px;
	margin-inline: auto;
	color: var(--paper);
	font-family: var(--mono);
	font-size: clamp(18px, 2.3vw, 32px);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.launch h2 time {
	color: var(--red);
}

.countdown {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: clamp(10px, 2vw, 30px);
	margin-top: clamp(24px, 4.5vh, 48px);
}

.countdown div {
	display: grid;
	flex: 0 0 clamp(78px, 9vw, 126px);
	width: clamp(78px, 9vw, 126px);
}

.countdown strong {
	display: block;
	color: var(--red);
	font-size: clamp(58px, 8vw, 116px);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	font-feature-settings: 'tnum' 1;
	letter-spacing: -0.08em;
	line-height: 0.84;
	text-align: center;
}

.countdown div span {
	margin-top: 12px;
	color: var(--muted);
	font-family: var(--mono);
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.countdown i {
	flex: 0 0 0.32em;
	width: 0.32em;
	color: #57555a;
	font-size: clamp(42px, 5vw, 72px);
	font-style: normal;
	font-weight: 500;
	line-height: 0.8;
	text-align: center;
}

.launch__intro {
	max-width: 580px;
	margin: clamp(20px, 3.5vh, 36px) auto 0;
	color: var(--muted);
	font-size: 15px;
}

.carousel-nav {
	position: absolute;
	bottom: clamp(16px, 2.5vh, 24px);
	left: 50%;
	z-index: 30;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) 58px;
	width: min(calc(100% - 32px), 760px);
	min-height: 60px;
	border: 1px solid #3a3a3e;
	background: rgb(13 13 15 / 94%);
	box-shadow: 0 18px 50px rgb(0 0 0 / 34%);
	transform: translateX(-50%);
	backdrop-filter: blur(12px);
}

.carousel-nav button {
	border: 0;
	border-radius: 0;
	color: var(--paper);
	cursor: pointer;
}

.carousel-nav__arrow {
	display: grid;
	place-items: center;
	background: transparent;
	font-size: 20px;
	transition: background 160ms ease, color 160ms ease;
}

.carousel-nav__arrow:first-child {
	border-right: 1px solid var(--line);
}

.carousel-nav__arrow:last-child {
	border-left: 1px solid var(--line);
}

.carousel-nav__arrow:hover:not(:disabled),
.carousel-nav__arrow:focus-visible {
	background: var(--paper);
	color: var(--ink);
}

.carousel-nav__arrow:disabled {
	color: #4e4c50;
	cursor: default;
}

.carousel-nav__pages {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.carousel-nav__page {
	padding: 8px;
	background: transparent;
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease;
}

.carousel-nav__page + .carousel-nav__page {
	border-left: 1px solid var(--line);
}

.carousel-nav__page span {
	display: block;
	margin-bottom: 2px;
	color: #706e72;
	font-size: 9px;
}

.carousel-nav__page:hover,
.carousel-nav__page:focus-visible {
	background: #202023;
}

.carousel-nav__page.is-active {
	background: var(--red);
	color: #fff;
}

.carousel-nav__page.is-active span {
	color: rgb(255 255 255 / 70%);
}

.subscribe-toast {
	position: fixed;
	top: clamp(50px, 6.5vh, 68px);
	right: clamp(22px, 4vw, 64px);
	z-index: 40;
	width: min(calc(100% - 44px), 430px);
	padding: 18px;
	border: 1px solid #404044;
	background: rgb(18 18 20 / 96%);
	box-shadow: 0 20px 70px rgb(0 0 0 / 40%);
	transition: opacity 220ms ease, transform 260ms ease;
	backdrop-filter: blur(14px);
}

.subscribe-toast.is-dismissed {
	opacity: 0;
	transform: translateY(-12px);
}

.subscribe-toast__close {
	position: absolute;
	top: 9px;
	right: 10px;
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #8b888d;
	cursor: pointer;
	font-size: 21px;
	line-height: 1;
}

.subscribe-toast__close:hover,
.subscribe-toast__close:focus-visible {
	color: var(--paper);
}

.subscribe-toast > p {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 34px 12px 0;
	font-size: 8px;
}

.subscribe-toast > p span {
	width: 6px;
	height: 6px;
	box-shadow: none;
}

.subscribe-form__controls {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	border: 1px solid #414145;
}

.subscribe-form input,
.subscribe-form button {
	min-height: 43px;
	border: 0;
	border-radius: 0;
}

.subscribe-form input {
	min-width: 0;
	padding: 0 13px;
	outline: 0;
	background: transparent;
	color: var(--paper);
	font-size: 13px;
}

.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 16px;
	background: var(--red);
	color: #fff;
	cursor: pointer;
	font-size: 8px;
	font-weight: 700;
	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 button span {
	margin-left: 5px;
}

.subscribe-form__status {
	min-height: 0;
	margin: 4px 0 0;
	font-size: 8px;
}

.subscribe-form__status:not(:empty) {
	min-height: 1.2em;
}

.subscribe-form__status[data-state='success'] {
	color: #b7e0c0;
}

.subscribe-form__status[data-state='error'] {
	color: #ff9b9b;
}

.turnstile-widget {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
}

@media (max-width: 900px) {
	.slide {
		padding-inline: clamp(26px, 6vw, 54px);
	}

	.hosts__heading > p {
		display: none;
	}

	.host-profile {
		grid-template-columns: 138px minmax(0, 1fr);
	}
}

@media (max-width: 640px) {
	.carousel__rule {
		top: 19px;
		right: 18px;
		left: 18px;
	}

	.slide {
		padding: 146px 22px 102px;
	}

	.wordmark {
		font-size: clamp(54px, 18vw, 74px);
		line-height: 0.79;
	}

	.kicker {
		margin-bottom: 26px;
		font-size: 8px;
	}

	.intro__footer {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 36px;
		padding-top: 16px;
	}

	.intro__footer > p {
		font-size: 13px;
	}

	.intro__launch {
		text-align: left;
	}

	.intro__launch strong {
		font-size: 14px;
	}

	.slide-label {
		margin-bottom: 22px;
		font-size: 8px;
	}

	.about h2,
	.hosts h2,
	.launch h2 {
		font-size: clamp(40px, 11.5vw, 52px);
	}

	.about__lower {
		grid-template-columns: 1fr 1fr;
		gap: 12px 18px;
		margin-top: 26px;
		padding-top: 16px;
	}

	.about__lower > p {
		font-size: 10px;
		line-height: 1.45;
	}

	.topics {
		grid-column: 1 / -1;
		grid-template-columns: repeat(3, 1fr);
		gap: 4px 9px;
	}

	.topics li {
		font-size: 7px;
	}

	.hosts__heading {
		margin-bottom: 19px;
	}

	.hosts__heading .slide-label {
		margin-bottom: 10px;
	}

	.host-list {
		grid-template-columns: 1fr;
	}

	.host-profile,
	.host-profile + .host-profile {
		grid-template-columns: 82px minmax(0, 1fr);
		gap: 14px;
		padding: 11px 0;
		border-left: 0;
	}

	.host-profile + .host-profile {
		border-top: 1px solid var(--line);
	}

	.host-profile h3 {
		margin-bottom: 5px;
		font-size: 21px;
	}

	.host-profile__copy > p {
		display: -webkit-box;
		overflow: hidden;
		font-size: 8px;
		line-height: 1.38;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.host-links {
		gap: 5px 9px;
		margin-top: 6px;
	}

	.host-links a {
		font-size: 8px;
	}

	.host-links .business-logo {
		height: 24px;
	}

	.business-logo--venturex img,
	.business-logo--accountants img {
		height: 20px;
	}

	.launch h2 {
		font-size: 14px;
	}

	.countdown {
		gap: 7px;
		margin-top: 27px;
	}

	.countdown strong {
		font-size: clamp(36px, 11.5vw, 46px);
	}

	.countdown div {
		flex-basis: 62px;
		width: 62px;
	}

	.countdown div span {
		margin-top: 8px;
		font-size: 6px;
	}

	.countdown i {
		font-size: 29px;
	}

	.launch__intro {
		margin-top: 18px;
		font-size: 12px;
	}

	.carousel-nav {
		bottom: 12px;
		grid-template-columns: 42px minmax(0, 1fr) 42px;
		width: calc(100% - 24px);
		min-height: 58px;
	}

	.carousel-nav__page {
		padding: 6px 2px;
		font-size: 9px;
	}

	.carousel-nav__page span {
		font-size: 7px;
	}

	.subscribe-toast {
		top: 34px;
		right: 18px;
		left: 18px;
		width: auto;
		padding: 13px;
	}

	.subscribe-toast > p {
		margin-bottom: 9px;
		font-size: 7px;
	}

	.subscribe-form input,
	.subscribe-form button {
		min-height: 38px;
	}

	.subscribe-form input {
		font-size: 11px;
	}

	.subscribe-form button {
		padding-inline: 12px;
		font-size: 7px;
	}
}

@media (max-height: 700px) and (min-width: 641px) {
	.slide {
		padding-block: 54px 92px;
	}

	.slide-label {
		margin-bottom: 18px;
	}

	.about h2,
	.hosts h2,
	.launch h2 {
		font-size: clamp(46px, 6vw, 78px);
	}

	.hosts__heading {
		margin-bottom: 20px;
	}

	.host-profile {
		grid-template-columns: 118px minmax(0, 1fr);
		padding-block: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.slide,
	.subscribe-toast {
		transition-duration: 0.01ms;
	}
}
