:root {
	--ph-midnight: #032f4a;
	--ph-warm-accent: #b86f5b;
	--ph-dusty-teal: #97b3b5;
	--ph-muted-rose: #d1b9b2;
	--ph-cohort-1: #eccfcf;
	--ph-cohort-1-contrast: #a46161;
	--ph-cohort-1-solid: #e3b9b9;
	--ph-cohort-2: #faf0ea;
	--ph-cohort-2-contrast: #b97954;
	--ph-cohort-2-solid: #f3dccf;
	--ph-cohort-3: #97b3b5;
	--ph-cohort-3-contrast: #528c90;
	--ph-cohort-3-solid: #97b3b5;
	--ph-cohort-4: #d1b9b2;
	--ph-cohort-4-contrast: #8e4f3c;
	--ph-cohort-4-solid: #d1b9b2;
	--ph-cohort-5: #b2cad1;
	--ph-cohort-5-contrast: #648c98;
	--ph-cohort-5-solid: #b2cad1;
	--ph-cohort-6: #4c6479;
	--ph-cohort-6-contrast: #2a3844;
	--ph-cohort-6-solid: #6c8092;
	--ph-cohort-7: #f0e2b6;
	--ph-cohort-7-contrast: #9c8129;
	--ph-cohort-7-solid: #eedb9d;
	--ph-font-script: 'Harlow Duo Script', cursive, ui-serif, serif;
	--ph-font-serif: 'Harlow Duo Serif', ui-serif, serif;
	--ph-font-sans-serif: 'Cabin', InterVariable, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
	--icon-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

:where(html) {
	font-family: var(--ph-font-sans-serif);
	font-feature-settings: 'liga' 1, 'calt' 1;
	font-variant-ligatures: common-ligatures;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

body {
	font-size: 16px;
	color: #121212;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

img,
picture,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

/* :target {
	scroll-margin-block: 6ex;
} */

body {
	font-size: 21px;
	font-size: 1.3125rem;
	font-weight: 300;
}

.top-button {
	position: fixed;
	z-index: 999;
	bottom: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.3);
	color: rgba(0, 0, 0, 0.5);
	padding: 5px 10px;
	border-radius: 100px;
	text-decoration: none;
	border: 1px solid #ededed;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 960px) {
	body {
		font-size: 19px;
		font-size: 1.1875rem;
	}

	.top-button {
		display: none;
	}
}

section {
	padding: 8% 5%;
}

@media (max-width: 960px) {
	section {
		padding: 20% 5%;
	}

	.sm\:pad-inline {
		padding: 5%;
	}
}

.pad-inline-0 {
	padding-inline: 0;
}

.container {
	max-width: 1080px;
	margin: auto;
}

.container-sm {
	max-width: 680px;
	margin: auto;
}

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.button {
	--button-color: white;
	--button-background-color: var(--ph-warm-accent);
	--button-border-color: var(--ph-warm-accent);

	color: var(--button-color);
	background: var(--button-background-color);
	border: 1.5px solid var(--button-border-color);
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 12px 24px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: -0.02em;
	transition: color 200ms, background 200ms, border 200ms, transform 200ms;
}

.button:hover {
	--button-background-color: white;
	--button-border-color: white;
	--button-color: black;
	cursor: pointer;
	transform: translateY(-2px);
}

.ghost.button {
	--button-color: black;
	--button-background-color: transparent;
	--button-border-color: rgba(0, 0, 0, 0.25);
}

.ghost.button:hover {
	--button-background-color: rgba(0, 0, 0, 0.1);
	--button-background-color: white;
	--button-border-color: white;
}

.white.button {
	--button-color: white;
	--button-background-color: rgba(255, 255, 255, 0.05);
	--button-border-color: white;
}

.white.button:hover {
	--button-background-color: rgba(255, 255, 255, 0.15);
	--button-background-color: white;
	--button-color: black;
}

.link.button {
	--button-color: var(--ph-warm-accent);
	--button-background-color: transparent;
	--button-border-color: transparent;
}

.link.button:hover {
	--button-color: #953d25;
}

.small.button {
	padding: 6px 12px;
}

.wide.button {
	width: 100%;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.size-sm {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.size-md {
	width: 40px;
	height: 40px;
}

.size-lg {
	width: 60px;
	height: 60px;
}

.size-xl {
	width: 80px;
	height: 80px;
}

.circle {
	border-radius: 100px;
}

.leader-card {
	text-align: center;
	padding: 20px 20px;
	border: 2px solid #ededed;
	border: 1px solid var(--ph-warm-accent);
	border-radius: 12px;
	background: white;
}

.leader-card img {
	margin: 0 auto 10px;
}

.leader-card p {
	margin-top: 5px;
}

.kicker {
	font-size: 15px;
	font-size: 0.9375rem;
	font-weight: 700;
	font-family: var(--ph-font-sans-serif);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-block-end: 20px;
	color: rgba(0, 0, 0, 0.5);
}

blockquote {
	border-left: 2px solid var(--ph-warm-accent);
	padding: 10px 20px;
	color: rgba(0, 0, 0, 0.65);
}

blockquote > * + * {
	margin-top: 20px;
}

blockquote p {
	font-style: italic;
}

blockquote cite {
	display: inline-flex;
	color: var(--ph-warm-accent);
	font-style: normal;
	font-size: 18px;
	font-weight: 700;
}

.script,
.ph-font-script {
	font-family: var(--ph-font-script) !important;
}

.serif,
.ph-font-serif {
	font-family: var(--ph-font-serif) !important;
}

.sans-serif,
.ph-font-sans-serif {
	font-family: var(--ph-font-sans-serif) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	letter-spacing: -0.025em;
	line-height: 1.2;
	font-weight: 400;
}

h1,
.h1 {
	font-size: 48px;
	font-size: 2.5rem;
	line-height: 1.4;
	font-family: var(--ph-font-serif);
	text-wrap: pretty;
}


h2,
.h2 {
	font-size: 48px;
	font-size: 3rem;
	font-family: var(--ph-font-serif);
}

@media (max-width: 600px) {
	h1, .h1 {
		font-size: 32px;
		font-size: 2rem;
	}

	h2,
	.h2 {
		font-size: 32px;
		font-size: 2rem;
		font-family: var(--ph-font-serif);
	}
}

h3,
.h3 {
	font-size: 32px;
	font-size: 2rem;
	font-family: var(--ph-font-serif);
}

h4,
.h4 {
	font-size: 20px;
	font-size: 1.25rem;
}

p {
	line-height: 1.5;
	text-wrap: pretty;
}

.meta {
	font-size: 1rem;
	line-height: 1.3;
}

.ch {
	max-width: 40ch;
}

.center .ch {
	margin-inline: auto;
}

.mx-auto {
	margin-inline: auto;
}

.tag {
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 5px 10px;
	border-radius: 100px;
	font-size: 11px;
}

.tag.midnight {
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: var(--ph-midnight);
	color: white;
	padding: 5px 10px;
	border-radius: 100px;
}

hr {
	display: block;
	border: none;
	height: 1px;
	width: 100%;
	background: rgba(255, 255, 255, 0.2);
	margin-block: 60px !important;
}

.pretty {
	text-wrap: pretty;
}

.balance {
	text-wrap: balance;
}

.flow > * + * {
	margin-top: 40px;
}

.flow-xl > * + * {
	margin-top: 120px;
}

.flow-lg > * + * {
	margin-top: 80px;
}

.flow-md > * + * {
	margin-top: 25px;
}

.flow-sm > * + * {
	margin-top: 10px;
}

header {
	background: white;
	padding: 6px 5%;
	border-bottom: 7px solid var(--ph-warm-accent);
	border-bottom: 7px solid rgba(184, 111, 91, 0.862);
}

header .container {
	max-width: 1440px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo,
header .logo img {
	display: block;
	width: 64px;
	height: 64px;
	flex-shrink: 0;
}

header ul {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
}

header li {
	padding: 0;
}

header a:not(.button) {
	text-decoration: none;
	color: inherit;
	color: rgba(0, 0, 0, 1);
}

header a:not(.button):hover {
	text-decoration: none;
	color: var(--ph-warm-accent);
}

header .button:hover {
	--button-background-color: black;
	--button-border-color: black;
	--button-color: white;
}

/* Container for the mobile nav */
.mobile-nav {
	display: none;
	position: relative;
	width: 100%;
}

.dropdown {
	position: relative;
}

/* Style the summary (the "button") */
.dropdown summary {
	list-style: none;
	cursor: pointer;
	padding: 0 20px 0 0;
	display: flex;
	justify-content: flex-end;
	gap: 6px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Specific fix for Safari/WebKit to hide the arrow */
.dropdown summary::-webkit-details-marker,
.dropdown summary::marker {
	display: none;
}

.dropdown summary::-moz-list-bullet {
	list-style-type: none;
}

.dropdown summary:after {
	position: absolute;
	right: 0;
	display: inline-block;
	width: 1rem;
	height: 1rem;
	transform: rotate(-90deg);
	mask: var(--icon-chevron) no-repeat center / contain;
	background-color: #aaa;
	content: "";
	transition: transform 200ms;
}

.dropdown summary:focus {
	outline: 0;
}

.dropdown[open] > summary:after {
	transform: rotate(0);
}

/* Style the dropdown list */
.dropdown > ul {
	position: absolute;
	top: 100%;
	width: 300px;
	max-width: 300px;
	background: white;
	border: 1px solid #ddd;
	margin: 15px 0 0 0;
	padding: 5px;
	list-style: none;
	z-index: 1000;
	display: flex;
	gap: 0;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.dropdown ul li {
	width: 100%;
}

.dropdown ul > li + li {
	border-top: 1px solid #eee;
}

.dropdown ul li a:not(.button) {
	display: block;
	padding: 15px;
	text-decoration: none;
	color: #333;
	border-radius: 5px;
	width: 100%;
}

.dropdown ul li a:not(.button):hover {
	background: rgba(0, 0, 0, 0.05);
}

.dropdown ul li:has(a.button) {
	padding: 10px;
}

.dropdown ul li a.button {
	width: 100%;
	justify-content: center;
}

header {
	font-size: 16px;
	font-size: 1rem;
}

@media (max-width: 960px) {

	/* Container for the mobile nav */
	.mobile-nav {
		position: relative;
		width: 100%;
		display: block;
	}

	.dropdown summary {
		position: relative;
		display: inline-flex;
	}

	.dropdown summary:after {
		right: 10px;
	}

	.dropdown ul {
		position: unset;
		width: 100%;
		z-index: unset;
	}

	.nav-dropdown .dropdown ul {
		border: none;
		padding: 0 0 0 15px;
		margin: 0;
	}

	/* Style the summary (the "button") */
	.nav-dropdown > summary {
		list-style: none;
		cursor: pointer;
		padding: 10px;
		display: flex;
		justify-content: flex-end;
		gap: 6px;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	}

	.nav-dropdown .icon-menu {
		display: block;
	}

	.nav-dropdown .icon-close {
		display: none;
	}

	.nav-dropdown[open] .icon-menu {
		display: none;
	}

	.nav-dropdown[open] .icon-close {
		display: block;
	}

	/* Specific fix for Safari/WebKit to hide the arrow */
	.nav-dropdown > summary::-webkit-details-marker {
		display: none;
	}

	/* Style the dropdown list */
	.nav-dropdown > ul {
		position: absolute;
		/* Detaches the menu from the flow so it floats */
		top: 100%;
		right: 0;
		width: 100%;
		max-width: 300px;
		background: white;
		border: 1px solid #ddd;
		margin: 15px 0 0 0;
		padding: 5px;
		list-style: none;
		z-index: 1000;
		display: flex;
		gap: 0;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.nav-dropdown ul li {
		width: 100%;
	}

	.nav-dropdown ul > li + li {
		border-top: 1px solid #eee;
	}

	.nav-dropdown ul li summary,
	.nav-dropdown ul li a:not(.button) {
		display: block;
		padding: 15px;
		text-decoration: none;
		color: #333;
		border-radius: 5px;
		width: 100%;
	}

	.nav-dropdown ul li summary:hover,
	.nav-dropdown ul li a:not(.button):hover {
		background: rgba(0, 0, 0, 0.05);
		cursor: pointer;
	}

	.nav-dropdown ul li:has(a.button) {
		padding: 10px;
	}

	.nav-dropdown ul li a.button {
		width: 100%;
		justify-content: center;
	}

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

.hero-video-section {
	position: relative;
	padding: 0;
}

.hero-video-background {
	position: absolute;
	inset: 0;
	background: black;
	z-index: -1;
}

.hero-video-wrapper {
	position: fixed;
	inset: 0;
	z-index: -1;
}

.hero-video-content {
	padding: 35dvh 5% 5dvh;
}

.hero-video-content .flow-sm {
	text-wrap: pretty;
	background: rgba(184, 111, 91, 0.862);
	/* background: rgba(151, 179, 181, 0.75); */
	/* background: rgba(3, 47, 74, 0.75); */
	text-align: center;
	color: white;
	padding-block: clamp(30px, 4vw, 50px);
	padding-inline: clamp(40px, 3.5vw + 28px, 50px);
	border-radius: 500px;
	max-width: 900px;
	margin: auto;
}

@media (max-width: 960px) {
	.hero-video-content {
		padding: 40dvh 0 0;
	}

	.hero-video-content .flow-sm {
		border-radius: 0;
	}
}

.hero-video-content h1 {
	font-size: 2.2rem;
	text-wrap: balance;
}

.hero-video-content h1 span {
	font-family: var(--ph-font-script);
	font-size: 1.1em;
	line-height: 1;
	padding: 10px 10px 10px 20px;
	vertical-align: text-bottom;
}

@media (max-width: 960px) {
	.hero-video-content h1 {
		font-size: 2rem;
	}
}

@media (max-width: 600px) {
	.hero-video-content h1 {
		font-size: 1.6rem;
	}
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 10%;
}

.hero-video-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, var(--slate-300), var(--midnight-50), var(--midnight-50));
	mix-blend-mode: multiply;
}

.scroll-fade-element {
	/* Positioning so it stays on screen while scrolling */
	/* Initial state (fully visible and sharp) */
	background-color: #000;
	/* Fade to black */
	--blur: 0px;
	--opacity: 1;

	/* Apply the variables using the CSS 'filter' property */
	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));
	/* Safari support */
	opacity: var(--opacity);

	/* Smooth transition for the scroll updates */
	transition: backdrop-filter 0.1s ease-out, opacity 0.1s ease-out;
}

.hstack {
	display: flex;
	gap: 10px;
}

.vstack {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

@media (max-width: 960px) {
	.sm\:hstack {
		display: flex;
		gap: 10px;
	}

	.sm\:vstack {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
}

.spacer,
.flex-1 {
	flex: 1;
}

.stretch {
	align-items: stretch;
}

.justify-center {
	justify-content: center;
}

.align-center {
	align-items: center;
}

.space-between {
	justify-content: space-between;
}

.hash-links {
	width: max-content;
	margin-inline: auto;
	display: flex;
	border-radius: 5px;
	overflow: clip;
}

.hash-links > * + * {
	border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hash-links a {
	padding: 12px 24px;
	margin: 0;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
}

.hash-links a:hover {
	background: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 960px) {
	.hash-links {
		display: none;
	}
}

.grid-1 {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 10px;
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.grid-5 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}

.grid-6 {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}

.grid-7 {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 10px;
}

@media (min-width: 601px) and (max-width: 960px) {
	.md\:grid-1 {
		grid-template-columns: repeat(1, 1fr);
	}

	.md\:grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.md\:grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.md\:grid-4 {
		grid-template-columns: repeat(4, 1fr);
	}

	.md\:grid-5 {
		grid-template-columns: repeat(5, 1fr);
	}

	.md\:grid-6 {
		grid-template-columns: repeat(6, 1fr);
	}

	.md\:grid-7 {
		grid-template-columns: repeat(7, 1fr);
	}

	.md\:col-span-1 {
		grid-column: span 1;
	}

	.md\:col-span-2 {
		grid-column: span 2;
	}

	.md\:col-span-3 {
		grid-column: span 3;
	}

	.md\:offset-1 {
		grid-column: 2 / span 2;
	}

	.md\:offset-2 {
		grid-column: 4 / span 2;
	}
}

@media (max-width: 600px) {
	.sm\:grid-1 {
		grid-template-columns: repeat(1, 1fr);
	}

	.sm\:grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.sm\:grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.sm\:grid-4 {
		grid-template-columns: repeat(4, 1fr);
	}

	.sm\:grid-5 {
		grid-template-columns: repeat(5, 1fr);
	}

	.sm\:grid-6 {
		grid-template-columns: repeat(6, 1fr);
	}

	.sm\:grid-7 {
		grid-template-columns: repeat(7, 1fr);
	}

	.sm\:col-span-1 {
		grid-column: span 1;
	}

	.sm\:col-span-2 {
		grid-column: span 2;
	}

	.sm\:col-span-3 {
		grid-column: span 3;
	}

	.sm\:offset-1 {
		grid-column: 2 / span 2;
	}

	.sm\:offset-2 {
		grid-column: 4 / span 2;
	}
}

.gap-0 {
	gap: 0;
}

.gap-xs {
	gap: 5px;
}

.gap-sm {
	gap: 10px;
}

.gap-md {
	gap: 20px;
}

.gap-lg {
	gap: 30px;
}

.coach-card {
	padding: 12px;
	border: 1.5px solid #ededed;
	border-radius: 12px;
	background: white;
}

.coach-card h3 {
	font-size: 24px;
	font-size: 1.5rem;
}

.optional {
	color: rgb(58, 168, 104);
	font-style: italic;
	font-weight: 600;
}

.text-green {
	color: rgb(58, 168, 104);
}

.text-green {
	color: rgb(58, 168, 104);
}

.info-card {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: start;
	gap: 10px;
	color: white;
	background: var(--ph-midnight);
	background: rgba(3, 47, 74, 0.86);
	border-radius: 12px;
	padding: 20px;
	/* border: 0.5px solid rgba(255, 255, 255, 0.15); */
	position: relative;
	overflow: clip;
	/* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.04); */
}

.info-card.optional {
	background: var(--ph-warm-accent);
}


.info-card svg {
	color: rgba(3, 47, 74, 0.8);
	color: rgba(255, 255, 255, 0.99);
}

.info-card h3 {
	font-size: 24px;
	font-size: 1.5rem;
	text-wrap: balance;
}

.info-card .size-bg {
	width: 200px;
	height: 200px;
	position: absolute;
	/* z-index: -1; */
	bottom: -32px;
	right: -32px;
	color: var(--ph-dusty-teal);
	color: rgba(255, 255, 255, 0.05);
}

.alert {
	display: flex;
	gap: 10px;
	padding: 18px 22px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	color: black;
	align-items: center;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid white;
	font-weight: 500;
}

.alert svg {
	color: var(--ph-midnight);
}

.pricing-card {
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	position: relative;
}

.pricing-card > div {
	padding: 20px;
}

.pricing-card.recommended {
	border: 3px solid var(--ph-midnight);
}

.pricing-card.recommended > div {
	padding: 40px 20px 20px 20px;
}

.pricing-card.recommended:before {
	content: "RECOMMENDED";
	position: absolute;
	color: white;
	background: var(--ph-midnight);
	padding: 5px;
	width: 90%;
	left: 5%;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

.pricing-card h2 .pre {
	font-size: 14px;
	font-family: 'Cabin', ui-sans-serif, sans-serif;
	color: var(--ph-warm-accent);
	letter-spacing: 0.035em;
	display: block;
}

.pricing-card .meta,
.pricing-card .muted {
	color: rgba(0, 0, 0, 0.45);
}

.checklist {
	list-style: none;
	padding-left: 0;
}

.checklist .check,
.checklist .plus {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 0.5rem;
}

ul.checklist li.check::before,
ul.checklist li.plus::before {
	content: "✓";
	color: inherit;
	display: inline-block;
	width: 1.5em;
	/* Creates consistent spacing */
	margin-left: -1.5em;
}

ul.checklist li.plus::before {
	content: "+";
	margin-left: -1.4em;
	color: inherit;
}

.stat {
	padding: 30px 20px;
	text-align: center;
	background: rgba(0, 0, 0, 0.045);
	border-radius: 5px;
}

.stat .meta {
	color: rgba(0, 0, 0, 0.45);
	margin-top: 10px;
}

.cohort-1 {
	--cohort-accent: var(--ph-cohort-1);
	--cohort-contrast: var(--ph-cohort-1-contrast);
	--cohort-solid: var(--ph-cohort-1-solid);
}

.cohort-2 {
	--cohort-accent: var(--ph-cohort-2);
	--cohort-contrast: var(--ph-cohort-2-contrast);
	--cohort-solid: var(--ph-cohort-2-solid);
}

.cohort-3 {
	--cohort-accent: var(--ph-cohort-3);
	--cohort-contrast: var(--ph-cohort-3-contrast);
	--cohort-solid: var(--ph-cohort-3-solid);
	--cohort-text: white;
}

.cohort-4 {
	--cohort-accent: var(--ph-cohort-4);
	--cohort-contrast: var(--ph-cohort-4-contrast);
	--cohort-solid: var(--ph-cohort-4-solid);
	--cohort-text: white;
}

.cohort-5 {
	--cohort-accent: var(--ph-cohort-5);
	--cohort-contrast: var(--ph-cohort-5-contrast);
	--cohort-solid: var(--ph-cohort-5-solid);
	--cohort-text: white;
}

.cohort-6 {
	--cohort-accent: var(--ph-cohort-6);
	--cohort-contrast: var(--ph-cohort-6-contrast);
	--cohort-solid: var(--ph-cohort-6-solid);
	--cohort-text: white;
}

.cohort-7 {
	--cohort-accent: var(--ph-cohort-7);
	--cohort-contrast: var(--ph-cohort-7-contrast);
	--cohort-solid: var(--ph-cohort-7-solid);
}

.cohort-tint.button {
	--button-color: var(--cohort-text, var(--cohort-contrast));
	--button-background-color: var(--cohort-accent);
	--button-border-color: var(--cohort-contrast);
}

.cohort-tint.button:hover {
	--button-color: white;
	--button-background-color: black;
	--button-border-color: black;
}

.cohort-solid.button {
	font-family: var(--ph-font-serif);
	font-size: 16px;
	--button-color: black;
	--button-background-color: white;
	--button-border-color: rgba(0, 0, 0, 0.1);
	box-shadow: inset 500px 0 0 -494px var(--cohort-accent);
}

.cohort-solid.button:hover {
	--button-color: black;
	--button-background-color: white;
	--button-border-color: rgba(0, 0, 0, 0.1);
	box-shadow:
		inset 500px 0 0 -494px var(--cohort-accent),
		0 5px 25px -15px rgba(0, 0, 0, 0.5);
	;
}

details.illuminate {
	display: block;
	width: 100%;
	background: white;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	position: relative;
	box-shadow: inset 500px 0 0 -488px var(--cohort-accent);
	transition: transform 200ms, box-shadow 200ms;
}

details.illuminate:not([open]):hover {
	transform: translateY(-3px);
	box-shadow: inset 500px 0 0 -488px var(--cohort-accent), 0 16px 32px rgba(0, 0, 0, 0.05);
}

details.illuminate summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 30px 50px 30px 30px;
	line-height: 1;
	list-style-type: none;
	cursor: pointer;
	transition: color 300ms;
}

details.illuminate summary p {
	color: var(--ph-warm-accent);
	font-style: italic;
}

details.illuminate summary::-webkit-details-marker {
	display: none;
}

details.illuminate summary::marker {
	display: none;
}

details.illuminate summary::-moz-list-bullet {
	list-style-type: none;
}

details.illuminate summary:after {
	position: absolute;
	right: 30px;

	display: block;
	width: 1rem;
	height: 1rem;
	transform: rotate(-90deg);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-position: right center;
	background-size: 1rem auto;
	background-repeat: no-repeat;
	content: "";
	transition: transform 300ms;
}

details.illuminate summary:focus {
	outline: 0;
}

details.illuminate[open] > summary:after {
	transform: rotate(0);
}

details.illuminate > div {
	padding: 0 30px 30px;
}

details.illuminate .pre {
	font-size: 12px;
	display: inline-flex;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	margin-right: 10px;
}

details.illuminate .ghost.button:hover {
	--button-background-color: black;
	--button-border-color: black;
	--button-color: white;
}

@media (max-width: 600px) {
	details.illuminate > summary {
		flex-direction: column;
		gap: 5px;
		align-items: start !important;
		justify-content: start !important;
	}

	details.illuminate > summary p {
		margin-top: -5px;
	}

	.sm\:flex-wrap {
		flex-wrap: wrap;
	}

	.sm\:w-100 {
		width: 100%;
	}
}

details.faq {
	display: block;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
	font-weight: 500;
}

details.faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 30px 20px 30px 10px;
	font-weight: 800;
	line-height: 1;
	list-style-type: none;
	cursor: pointer;
	transition: color 300ms;
}

details.faq summary p {
	color: var(--ph-warm-accent);
	font-style: italic;
}

details.faq summary::-webkit-details-marker {
	display: none;
}

details.faq summary::marker {
	display: none;
}

details.faq summary::-moz-list-bullet {
	list-style-type: none;
}

details.faq summary:after {
	position: absolute;
	right: 10px;

	display: block;
	color: white;
	width: 1rem;
	height: 1rem;
	transform: rotate(-90deg);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='white' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 4.5v15m7.5-7.5h-15' /%3E%3C/svg%3E%0A");
	background-position: right center;
	background-size: 1rem auto;
	background-repeat: no-repeat;
	content: "";
	transition: transform 300ms;
}

details.faq summary:focus {
	outline: 0;
}

details.faq[open] > summary:after {
	transform: rotate(-45deg);
}

details.faq > div {
	padding: 0 30px 30px;
}

details.faq .pre {
	font-size: 12px;
	display: inline-flex;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	margin-right: 10px;
}

@media (max-width: 600px) {
	details.faq > summary {
		flex-direction: column;
		gap: 5px;
		align-items: start !important;
		justify-content: start !important;
	}

	details.faq > summary p {
		margin-top: -5px;
	}

	.sm\:flex-wrap {
		flex-wrap: wrap;
	}

	.sm\:w-100 {
		width: 100%;
	}
}

.quote-card {
	background: #f1f1f1;
	padding: 26px;
}

.bg-midnight {
	background: var(--ph-midnight);
	color: rgba(255, 255, 255, 0.7);
}

.bg-midnight--wash-1 {
	background:
		radial-gradient(circle at 15% 20%, rgba(23, 92, 124, 0.65) 0%, transparent 32%),
		radial-gradient(circle at 85% 15%, rgba(0, 138, 167, 0.35) 0%, transparent 30%),
		radial-gradient(circle at 70% 80%, rgba(4, 58, 88, 0.85) 0%, transparent 38%),
		radial-gradient(circle at 20% 85%, rgba(86, 139, 163, 0.28) 0%, transparent 35%),
		linear-gradient(135deg, #032f4a 0%, #021f33 100%);
}

.bg-midnight--wash-2 {
	background:
		radial-gradient(ellipse at 50% 0%, rgba(37, 103, 132, 0.55), transparent 45%),
		radial-gradient(ellipse at 0% 100%, rgba(0, 91, 120, 0.45), transparent 40%),
		radial-gradient(ellipse at 100% 100%, rgba(9, 65, 96, 0.65), transparent 42%),
		#032f4a;
}

.bg-midnight--wash-3 {
	background:
		radial-gradient(circle at 50% 50%, rgba(44, 125, 158, 0.35), transparent 28%),
		radial-gradient(circle at 30% 25%, rgba(0, 184, 203, 0.18), transparent 35%),
		radial-gradient(circle at 75% 70%, rgba(111, 170, 190, 0.2), transparent 40%),
		#032f4a;
}

.bg-midnight h1,
.bg-midnight h2,
.bg-midnight h3,
.bg-midnight h4 {
	color: white;
}

.bg-midnight blockquote {
	color: rgba(255, 255, 255, 0.65);
}

.bg-midnight .ghost.button {
	--button-color: white;
	--button-background-color: transparent;
	--button-border-color: rgba(255, 255, 255, 0.5);
}

.bg-midnight .ghost.button:hover {
	--button-background-color: rgba(255, 255, 255, 0.1);
	--button-background-color: white;
	--button-border-color: white;
	--button-color: black;
}

.bg-dusty-teal {
	background: var(--ph-dusty-teal);
	color: rgba(255, 255, 255, 0.8);
}

.bg-dusty-teal--wash-1 {
	background:
		radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.38) 0%, transparent 30%),
		radial-gradient(circle at 82% 12%, rgba(173, 213, 216, 0.45) 0%, transparent 34%),
		radial-gradient(circle at 72% 78%, rgba(109, 145, 149, 0.42) 0%, transparent 38%),
		radial-gradient(circle at 12% 88%, rgba(199, 224, 226, 0.28) 0%, transparent 36%),
		linear-gradient(135deg, #97b3b5 0%, #6f8f92 100%);
}

.bg-dusty-teal--wash-2 {
	background:
		radial-gradient(ellipse at top, rgba(255, 255, 255, 0.3), transparent 46%),
		radial-gradient(ellipse at bottom left, rgba(140, 180, 184, 0.45), transparent 40%),
		radial-gradient(ellipse at bottom right, rgba(92, 126, 130, 0.42), transparent 42%),
		#97b3b5;
}

.bg-dusty-teal--wash-3 {
	background:
		radial-gradient(circle at center, rgba(255, 255, 255, 0.22), transparent 28%),
		radial-gradient(circle at 28% 24%, rgba(188, 223, 225, 0.32), transparent 35%),
		radial-gradient(circle at 78% 72%, rgba(116, 150, 154, 0.3), transparent 42%),
		#97b3b5;
}

.bg-dusty-teal--wash-4 {
	background:
		radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.42), transparent 36%),
		radial-gradient(circle at 10% 70%, rgba(174, 208, 211, 0.38), transparent 42%),
		radial-gradient(circle at 90% 80%, rgba(120, 150, 154, 0.32), transparent 40%),
		linear-gradient(to bottom right, #97b3b5, #7d999c);
	filter: saturate(110%);
}

.bg-dusty-teal--wash-5 {
	background:
		radial-gradient(circle at 20% 18%, rgba(46, 78, 84, 0.32) 0%, transparent 32%),
		radial-gradient(circle at 82% 14%, rgba(58, 92, 98, 0.28) 0%, transparent 34%),
		radial-gradient(circle at 72% 78%, rgba(31, 56, 61, 0.38) 0%, transparent 40%),
		linear-gradient(135deg, #97b3b5 0%, #6f8d90 100%);
}

.bg-dusty-teal--wash-6 {
	background:
		radial-gradient(circle at 50% 0%, rgba(44, 70, 75, 0.24), transparent 42%),
		radial-gradient(circle at 10% 80%, rgba(52, 81, 86, 0.30), transparent 40%),
		radial-gradient(circle at 90% 88%, rgba(25, 45, 49, 0.34), transparent 42%),
		linear-gradient(to bottom right, #97b3b5, #627d80);
}

.bg-dusty-teal--wash-7 {
	background:
		radial-gradient(circle at center, rgba(22, 38, 42, 0.26), transparent 34%),
		radial-gradient(circle at 30% 25%, rgba(54, 86, 91, 0.24), transparent 38%),
		radial-gradient(circle at 78% 72%, rgba(36, 58, 62, 0.30), transparent 42%),
		#97b3b5;
}

.bg-dusty-teal--wash-8 {
	background:
		radial-gradient(ellipse at top left, rgba(48, 76, 81, 0.28), transparent 38%),
		radial-gradient(ellipse at top right, rgba(30, 52, 56, 0.22), transparent 34%),
		radial-gradient(ellipse at bottom center, rgba(20, 36, 39, 0.30), transparent 42%),
		linear-gradient(180deg, #97b3b5 0%, #5e787b 100%);
}

.bg-dusty-teal--wash-9 {
	background:
		radial-gradient(circle at 15% 15%, rgba(15, 28, 31, 0.22), transparent 28%),
		radial-gradient(circle at 85% 20%, rgba(45, 73, 78, 0.26), transparent 34%),
		radial-gradient(circle at 50% 85%, rgba(24, 42, 46, 0.34), transparent 42%),
		linear-gradient(to bottom, #97b3b5, #52696c);
}

.bg-dusty-teal h1,
.bg-dusty-teal h2,
.bg-dusty-teal h3,
.bg-dusty-teal h4 {
	color: white;
}

.bg-muted-rose {
	background: var(--ph-muted-rose);
	color: #4A2E28;
}

.bg-muted-rose--wash-1 {
	background:
		radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.32) 0%, transparent 30%),
		radial-gradient(circle at 82% 14%, rgba(186, 145, 135, 0.18) 0%, transparent 34%),
		radial-gradient(circle at 72% 78%, rgba(160, 126, 118, 0.14) 0%, transparent 38%),
		linear-gradient(135deg, #d1b9b2 0%, #c2a79f 100%);
}

.bg-muted-rose--wash-2 {
	background:
		radial-gradient(circle at center, rgba(255, 255, 255, 0.22), transparent 34%),
		radial-gradient(circle at 28% 24%, rgba(184, 111, 91, 0.14), transparent 36%),
		radial-gradient(circle at 78% 72%, rgba(184, 111, 91, 0.10), transparent 42%),
		#d1b9b2;
}

.bg-muted-rose--wash-3 {
	background:
		radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.28), transparent 40%),
		radial-gradient(circle at 12% 78%, rgba(184, 111, 91, 0.12), transparent 42%),
		radial-gradient(circle at 90% 88%, rgba(184, 111, 91, 0.08), transparent 40%),
		linear-gradient(to bottom right, #d1b9b2, #c4aba4);
}

.bg-muted-rose--wash-4 {
	background:
		radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.24), transparent 38%),
		radial-gradient(ellipse at top right, rgba(184, 111, 91, 0.10), transparent 34%),
		radial-gradient(ellipse at bottom center, rgba(184, 111, 91, 0.08), transparent 40%),
		#d1b9b2;
	backdrop-filter: blur(2px);
}

.bg-muted-rose h1,
.bg-muted-rose h2,
.bg-muted-rose h3,
.bg-muted-rose h4 {
	color: var(--ph-midnight);
}

.bg-white {
	background-image: linear-gradient(to bottom, white, #f6f8fb);
}

.bg-white--wash-1 {
	background:
		radial-gradient(ellipse at top left, rgba(184, 111, 91, 0.14), transparent 38%),
		radial-gradient(ellipse at top right, rgba(184, 111, 91, 0.08), transparent 34%),
		radial-gradient(ellipse at bottom center, rgba(184, 111, 91, 0.10), transparent 40%),
		#fff;
	backdrop-filter: blur(2px);
}

.bg-white--wash-2 {
	background:
		radial-gradient(circle at 50% 50%, rgba(184, 111, 91, 0.10), transparent 45%),
		white;
	background-attachment: fixed;
}

.bg-light {
	background: #f1f1f1;
}

.text-warm-accent {
	color: var(--ph-warm-accent);
}

.text-dusty-teal {
	color: var(--ph-dusty-teal);
}

.text-muted-rose {
	color: var(--ph-muted-rose);
}

.text-midnight {
	color: var(--ph-midnight);
}

.text-white {
	color: white !important;
}

.text-muted {
	color: rgba(0, 0, 0, 0.5);
}

footer {
	background: black;
	padding: 30px 5%;
}

footer p,
footer a {
	color: rgba(255, 255, 255, 0.5);
}

footer a {
	text-decoration: none;
}

footer a:hover {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
}

.reel {
	--container: min(1080px, 90%);
	--container-padding: calc(50% - var(--container)/2);
	--container-width: auto;
	--container-max-width: 1080px;

	position: relative;
	width: 100%;
	scroll-snap-type: x mandatory;
	overscroll-behavior-x: contain;
	overflow-x: auto;
	scrollbar-width: none;
	scroll-padding: var(--container-padding);
}

.reel::-webkit-scrollbar {
	width: 0;
	height: 0;
	background: rgba(0, 0, 0, 0)
}

.reel-container {
	width: min(var(--container-max-width), var(--container-width));
	min-width: fit-content;
	padding: 0 calc(var(--container-padding) * 3) 0 var(--container-padding);
}

.reel ul {
	list-style: none;
	margin: 0;
	padding: 1.875rem 0;
	display: flex;
	gap: 8rem;
}

.reel-item {
	scroll-snap-align: start;
	scroll-snap-stop: always;
	flex-shrink: 0;
	position: relative;
	width: 900px;
	border-radius: 22px;
	overflow: clip;

	transition: scale 200ms ease-in-out;
}

.reel-item:hover {
	scale: 1.02;
}

.reel img {
	flex-shrink: 0;
	width: 100%;
	aspect-ratio: var(--aspect-ratio-1);
	object-fit: cover;
}

.reel [class*="reel-content"] {
	padding: 2rem;
}

.reel h3 {
	line-height: 1.4;
}

@media (max-width: 960px) {

	.reel ul {
		gap: 2rem;
	}

	.reel-item {
		max-width: 80dvw;
	}

	.reel-item h3 {
		font-size: 28px;
	}
}