/*
 * Palette and copy below come from the actual Figma exports in
 * ssn8976/exported-from-figma-design (page PDFs + cover art), and the
 * hex values supplied directly for SSN-8976.
 *
 * TODO: the design's typeface is "Garrison12 VF", but only images/PDFs
 * were exported (no .woff/.woff2 files). Until a webfont file is
 * sourced, this falls back to the system font stack below.
 */
:root {
	--color-text: #000000;
	--color-heading: #162F63;
	--color-navy: #0B2237;
	--color-text-on-navy: #F5F5F1;
	--color-divider: #CCBF80;
	--color-button-grad-start: #CCBF80;
	--color-button-grad-end: #CBBF7F;
	--color-button-text: #003065;
	--color-input-border: #898053;
	--color-accent-maroon: #87200D;
	--font-heading: "Garrison12 VF", Georgia, "Times New Roman", serif;
	--font-body: "Garrison12 VF", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

body {
	font-family: var(--font-body);
	color: var(--color-text);
}
a {
	color: var(--color-heading);
}

#header {
	color: var(--color-text-on-navy);
	background-color: var(--color-navy);
	padding: 20px 0px;
}
#header img {
	height: 36px;
}
#header a {
	float: right;
	margin-top: 2px;
	padding: 8px 20px;
	border-radius: 999px;
	background-color: var(--color-divider);
	color: var(--color-button-text) !important;
	font-weight: 700;
	font-size: 18px;
	text-decoration: none !important;
}

#hero {
	background-color: var(--color-navy);
	color: var(--color-text-on-navy);
	padding: 40px 0px;
	border-bottom: 4px solid var(--color-accent-maroon);
}
#hero h1 {
	font-family: var(--font-heading);
	font-size: 40px;
	line-height: 46px;
	font-weight: bold;
	color: inherit;
}
#hero p {
	margin-top: 10px;
	font-size: 18px;
	line-height: 24px;
}
#thankyou #header {
	border-bottom: 4px solid var(--color-accent-maroon);
}

#section1 {
	padding: 40px 0px;
	background-color: #F5F5F1;
}
#section1 h3 {
	font-family: var(--font-heading);
	font-size: 28px;
	line-height: 32px;
	color: var(--color-navy);
}
#section1 .eyebrow {
	font-size: 14px;
	color: var(--color-text);
}
#section1 form {
	width: 90%;
}
#section1 .row {
	margin: 0px 0px 20px;
	display: flex;
	justify-content: space-between;
}
#section1 .input-group {
	flex: 1;
	padding-left: 0px;
}
#section1 label {
	display: block;
	margin-bottom: 5px;
}
#section1 input {
	width: 95%;
	padding: 8px;
	border-radius: 4px;
	border: 1px solid var(--color-input-border);
	background-color: #FFFFFF;
}
#section1 .date-input {
	width: 45.8%;
	padding: 8px;
	border-radius: 4px;
	border: 1px solid var(--color-input-border);
}
#section1 .submit-row {
	text-align: center;
	margin-top: 20px;
}
#section1 .cover-art {
	display: block;
	max-width: 260px;
	margin: auto;
}
#section1 .disclaimer {
	font-size: 12px;
	margin-top: 10px;
	text-align: left;
}

.btn-guidebook {
	display: block;
	background: linear-gradient(180deg, var(--color-button-grad-start), var(--color-button-grad-end));
	color: var(--color-button-text) !important;
	font-weight: 700;
	padding: 14px 10px;
	height: 54px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
	text-align: center;
	text-decoration: none !important;
}

#section2 {
	padding: 50px 0px;
	border-top: 4px solid var(--color-divider);
}
#section2 h2 {
	font-family: var(--font-heading);
	font-size: 34px;
	line-height: 38px;
	color: var(--color-heading);
}
#section2 p {
	margin-top: 15px;
	font-size: 18px;
	line-height: 24px;
	max-width: 82%;
}
#section2 .valueprop {
	margin-top: 40px;
}
#section2 .valueprop h5 {
	margin-top: 15px;
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
	font-family: var(--font-heading);
	color: var(--color-heading);
}
#section2 .valueprop p {
	max-width: 100%;
	font-size: 16px;
	line-height: 22px;
}
#section2 .valueprop sup {
	font-size: 11px;
}
#section2 .valueprop .value-icon {
	height: 40px;
	width: 40px;
}

#section3 {
	background-color: #F2F1EC;
	padding: 50px 0px;
}
#section3 h2 {
	font-size: 34px;
	line-height: 38px;
	font-weight: 600;
	font-family: var(--font-heading);
	color: var(--color-heading);
}
#section3 p {
	font-size: 18px;
	line-height: 24px;
}
#section3 h4 {
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
	font-family: var(--font-heading);
	margin-top: 20px;
}
.custom-counter {
	margin: 20px 0 0;
	padding: 0;
	list-style-type: none;
}
.custom-counter li {
	counter-increment: step-counter;
	margin-bottom: 15px;
	padding-left: 45px;
	position: relative;
}
.custom-counter li::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	background-color: var(--color-navy);
	color: var(--color-text-on-navy);
	font-weight: bold;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50px;
}
.custom-counter h5 {
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	font-family: var(--font-heading);
	margin-bottom: 5px;
}
#section3 .column2 {
	text-align: center;
	margin: auto;
	display: block;
}
#section3 .cover-art {
	display: block;
	max-width: 220px;
	margin: 0 auto;
}
#section3 .table-of-contents {
	text-decoration: underline;
	font-size: 18px;
	line-height: 32px;
	color: var(--color-text);
	display: block;
	margin-top: 10px;
	margin-bottom: 15px;
	cursor: pointer;
}
#section3 .btn-guidebook {
	max-width: 465px;
	margin: 10px auto 0px;
}

#section4 {
	padding: 50px 0px;
	border-top: 4px solid var(--color-divider);
}
#section4 .column1 {
	text-align: center;
}
#section4 .value-icon {
	height: 56px;
	width: 56px;
}
#section4 h3 {
	font-family: var(--font-heading);
	font-size: 32px;
	line-height: 36px;
	font-weight: bold;
	margin-bottom: 15px;
	color: var(--color-navy);
}
#section4 a {
	color: var(--color-heading);
}

#footer {
	padding: 40px 0px;
	border-top: 4px solid var(--color-divider);
}
#footer h3 {
	text-transform: uppercase;
	font-size: 20px;
	line-height: 28px;
	font-weight: bold;
	margin-bottom: 15px;
}
#footer p {
	font-size: 12px;
	line-height: 17px;
	color: var(--color-text);
	margin-bottom: 10px;
}
#footer a {
	color: var(--color-heading) !important;
}
#footer-nav {
	padding: 0px 0px 30px;
}
#footer-nav .column2 {
	text-align: center;
	padding-top: 10px;
}
#footer-nav .column3 {
	text-align: center;
	font-size: 12px;
	line-height: 13px;
	color: var(--color-text);
}
#footer-nav a {
	color: var(--color-heading) !important;
	font-size: 15px;
	text-decoration: none;
	line-height: 24px;
	padding: 0px 10px;
}

#tableOfContentsModal .modal-title {
	font-family: var(--font-heading);
	font-size: 24px;
	color: var(--color-heading);
	font-weight: 700;
	border-bottom: 3px solid var(--color-divider);
	padding-bottom: 10px;
	margin-bottom: 10px;
	width: 100%;
}
.toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.toc-list li {
	display: flex;
	align-items: baseline;
	gap: 6px;
	padding: 6px 0;
	font-size: 15px;
}
.toc-list .toc-dots {
	flex: 1;
	border-bottom: 1px dotted #9a9a90;
	margin-bottom: 4px;
}

.desktop-only {
	display: initial;
}
.mobile-only {
	display: none;
}

@media (max-width: 600px) {
	#hero h1 {
		font-size: 30px;
		line-height: 34px;
	}
	#hero p {
		font-size: 16px;
		line-height: 22px;
	}
	#section1 {
		text-align: center;
	}
	#section1 form {
		width: 100%;
		text-align: left;
	}
	#section1 .row {
		flex-direction: column;
	}
	#section1 .input-group {
		margin-bottom: 10px;
	}
	#section1 input,
	#section1 .date-input {
		width: 100%;
	}
	#section2 p {
		max-width: 100%;
	}
	#section3 .column2 {
		margin-top: 30px;
	}
	body {
		padding-bottom: 70px;
	}
	#sticky-button {
		padding: 10px 20px;
		width: 90%;
		margin: auto;
		display: block;
		height: 50px;
		font-size: 16px;
		line-height: 18px;
		position: fixed;
		left: 5%;
		bottom: 10px;
		z-index: 1030;
	}
	.desktop-only {
		display: none !important;
	}
	.mobile-only {
		display: initial;
	}
}
@media (min-width: 601px) {
	#sticky-button {
		display: none;
	}
}

#thankyou #hero {
	padding: 50px 0px;
	background-color: #FFFFFF;
	color: var(--color-text);
	border-bottom: none;
}
#thankyou #hero h1 {
	color: var(--color-heading);
}
#thankyou #section2 {
	background-color: #F2F1EC;
	border-top: 4px solid var(--color-divider);
}
#thankyou #section2 h2 {
	color: var(--color-heading);
}
#thankyou .cover-art {
	display: block;
	max-width: 260px;
	margin: 0 auto 15px;
}
