/* @font-face {
    font-family: "Manrope Regular";
    src: url("Manrope[wght].woff2");
    font-weight: 200 800;
} */

:root {
	--flow: 1em;

	--color-brand: #0b2447;

	--color-dk: #19376d;
	--color-md: #576cbc;
	--color-lt: #a5d7e8;

	--color-pop-teal: #3b9797;
	--color-pop-pink: #ea2264;
	--color-pop-orange: #f78d60;

	--color-muted-1: #e19898;
	--color-muted-2: #a2678a;
	--color-muted-3: #4d3c77;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.flow * + * {
	margin-block-start: var(--flow);
}

img {
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}
a img {
	display: block;
}
figure {
	line-height: 0;
}
figure a:after {
	display: none;
}
.icon svg {
	width: 1em;
	height: 1em;
	transform: translateY(.125em);
}

html {
	font-size: 1em;
	line-height: 1.5;
	min-height: 100vh;
}

body {
	font-family: "Manrope Regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-size: calc( 1rem + .125vw );
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	transition: background-color .2s ease;
}

main {
	flex: 1 0 auto;
}
header,
footer {
	flex-shrink: 0;
}

textarea,
select,
input {
	font-size: inherit;
	font-family: inherit;
	padding: .5rem .75rem;
	border-radius: 4px;
	box-shadow: none;
	max-width: 100%;
	display: inline-block;
	border: 1px solid;
	background: #fff;
}
fieldset {
	border: 0;
}

address {
	display: inline;
}

ul {
	list-style-position: inside;
}
ul.tighter {
	--flow: .75em;
}
nav ul {
	list-style-type: none;
}

.content-width {
	padding-left: 1em;
	padding-right: 1em;
	width: 100%;
	max-width: 66rem;
	margin-left: auto;
	margin-right: auto;
}

header > section,
main > section,
footer > section {
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}

.horiz {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--flow);
}
.flow .horiz > * {
	margin-block-start: 0; /* don't use --flow for cascading reasons */
}

.text-smaller {
	font-size: .75em;
}
.text-center {
	text-align: center;
}
.hidden {
	display: none;
}
.muted {
	opacity: .5;
}
.strike {
	text-decoration: line-through;
}

::selection {
	background: var(--color-brand);
	color: #fff;
	text-shadow: none;
}

a {
	color: var(--color-dk);
	text-decoration: none;
	position: relative;
	padding: 0 .25em;
}
a:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: .125em;
	background-color: currentColor;
	transform-origin: center right;
	transform: scaleX(0);
	transition: transform .3s ease-out;
}
a:hover:after,
a:focus:after,
a.active:after {
	transform: scaleX(1);
	transform-origin: center left;
}
button,
.button {
	font-size: inherit;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	padding: .375em 1.375em;
	border-radius: 1em;
	background-color: var(--color-dk);
	color: #fff;
	transition: background-color .3s ease-out;
}
button:hover,
button:focus,
.button:hover,
.button:focus {
	background-color: var(--color-md);
}

h1, h2, h3, h4, dt,
.colorized-dark {
	color: var(--color-dk);
}
.colorized-medium {
	color: var(--color-md);
}
.colorized-light {
	color: var(--color-lt);
}

hr {
	background-color: var(--color-lt);
	height: 2px;
	border: 0;
}

.announcement-bar {
	background: var(--color-md);
	color: #fff;
	padding: .375em 0;
}
.announcement-bar a {
	color: var(--color-brand);
}

header {
	background: var(--color-brand);
}
.logo {
	width: 100%;
	max-width: 15em;
	margin: 0 auto;
	fill: #fff;
}

.main-nav {
	position: sticky;
	top: 0;
	font-weight: bold;
	background: var(--color-brand);
	padding: .375em 1em;
	z-index: 1;
}
.main-nav a {
	color: #fff;
}

dl {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: .75em;
	--flow: 0;
}
dt {
	font-weight: bold;
}

#pricing .horiz {
	align-items: stretch;
	justify-content: center;
}

.price-box {
	--box-color: var(--color-lt);
	border: 4px solid var(--box-color);
	border-radius: 1em;
	padding: 1em;
	flex: 1 0 90%;
}
.price-box h4 {
	text-align: center;
	margin: -1em -1em 0 -1em;
	background: var(--box-color);
	border-radius: .8em .8em 0 0;
	padding: .75em 0;
	font-size: 1em;
}

.price {
	font-size: 200%;
	font-weight: bold;
	color: var(--color-dk);
}

.price-box.color-pop {
	--box-color: var(--color-pop-pink);
	position: relative;
	background: #fff;
	background-clip: padding-box;
	border-color: transparent;
	border-top-width: calc(3em + 4px);
}
.price-box.color-pop:before {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: -1;
	margin: calc(-3em - 4px) -4px -4px -4px;
	border-radius: inherit;
	background: linear-gradient(120deg, var(--color-pop-pink), var(--color-pop-orange));
	background-size: 300% 100%;
	animation: color-pulse 4s ease infinite alternate;
}
.price-box.color-pop h4 {
	background: transparent;
	color: #fff;
	margin: -4em 0 1em 0;
}
.price-box.color-pop .button {
	background: linear-gradient(120deg, var(--color-pop-orange), var(--color-pop-pink), var(--color-pop-teal), var(--color-pop-teal));
	background-size: 300%;
	transition: background-position .3s ease-out;
}
.price-box.color-pop .button:hover {
	background-position: 100%;
}

footer {
	background: var(--color-lt);
}

@keyframes color-pulse {
	to {
		background-position: 100%;
	}
}

@media (min-width: 42em) {
	:root {
		--flow: 1.5em;
	}

	.price-box {
		flex: 1 0 40%;
		max-width: 25em;
	}
}

@media (min-width: 68em) {
	.content-width {
		padding-left: 0;
		padding-right: 0;
	}
}