/* North Star Policy — Landing page */

/* -------------------------------------------------------------------------- */
/* Entrance animation system                                                  */
/* `.nsp-anim` fades + rises into place. `.nsp-anim--fade` is opacity-only,   */
/* for elements that already own a transform (e.g. the gold form panel).      */
/* Triggered by adding `.is-visible` via IntersectionObserver in landing.js.  */
/* Stagger via inline `style="--nsp-anim-delay: 200ms"`.                      */
/* -------------------------------------------------------------------------- */
.nsp-anim,
.nsp-anim--fade {
	opacity: 0;
}
.nsp-anim {
	transform: translateY(24px);
}
.nsp-anim.is-visible {
	animation: nsp-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: var(--nsp-anim-delay, 0ms);
}
.nsp-anim--fade.is-visible {
	animation: nsp-fade 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: var(--nsp-anim-delay, 0ms);
}
@keyframes nsp-rise {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes nsp-fade {
	to {
		opacity: 1;
	}
}
@media (prefers-reduced-motion: reduce) {
	.nsp-anim,
	.nsp-anim--fade {
		opacity: 1;
		transform: none;
		animation: none !important;
	}
}

:root {
	--nsp-navy: #234D8C;
	--nsp-navy-light: #3260AB;
	--nsp-navy-deep: #1A3A6B;
	--nsp-gold: #F3C94D;
	--nsp-gold-dark: #B78D2E;
	--nsp-gray: #F6F6F6;
	--nsp-gray-border: #DDDDDD;
	--nsp-text: #234D8C;
	--nsp-eyebrow: #425F66;
	--nsp-muted: rgba(0, 0, 0, 0.39);
	--nsp-white: #FFFFFF;
	--nsp-max: 1200px;
	--nsp-pad: clamp(1.5rem, 7vw, 6rem);
	--nsp-shadow:
		1.815px 5.445px 6.806px rgba(0,0,0,0.12),
		8.167px 22.686px 12.25px rgba(0,0,0,0.11),
		18.149px 50.817px 16.334px rgba(0,0,0,0.06),
		32.668px 90.744px 19.51px rgba(0,0,0,0.02),
		51.724px 141.56px 21.325px rgba(0,0,0,0);
	/* Tight, low-opacity resting shadow — just enough to ground the panel. */
	--nsp-shadow-half:
		0 2px 4px rgba(0,0,0,0.04),
		0 6px 10px rgba(0,0,0,0.03);
	--nsp-font-display: "Roboto Flex", "Roboto", "Helvetica Neue", Arial, sans-serif;
	--nsp-font-body: "Roboto Flex", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

body.landing-page {
	margin: 0;
	font-family: var(--nsp-font-body);
	font-variation-settings: "wdth" 100;
	color: var(--nsp-text);
	background: var(--nsp-white);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body.landing-page a:visited {
	color: inherit;
}

body.landing-page .nsp-landing * {
	box-sizing: border-box;
}

.nsp-landing img { max-width: 100%; height: auto; display: block; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Shared */
.nsp-eyebrow {
	font-family: var(--nsp-font-body);
	font-size: 13.5px;
	letter-spacing: 0.5625px;
	font-weight: 600;
	color: var(--nsp-eyebrow);
	margin: 0 0 1.3rem;
	text-transform: uppercase;
	line-height: 1;
}

.nsp-btn,
.nsp-btn:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--nsp-font-display);
	font-weight: 600;
	font-size: 15.86px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	padding: 18px 30px;
	border: 0.83px solid transparent;
	text-decoration: none;
	transition: filter 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
	cursor: pointer;
	color: var(--nsp-white);
	height: 54.7px;
}
.nsp-btn--gold {
	background-image: linear-gradient(165.37deg, #F3C94D 36.5%, #B78D2E 86.4%);
	background-color: var(--nsp-gold);
	width: 270px;
	color: var(--nsp-white);
}
.nsp-btn--gold:hover,
.nsp-btn--gold:focus-visible {
	background-image: none;
	background-color: var(--nsp-navy);
	color: var(--nsp-white);
	border-color: var(--nsp-gold);
	filter: none;
}
.nsp-btn--outline,
.nsp-btn--outline:visited {
	width: 219px;
	background: transparent;
	color: var(--nsp-white);
	border: 0.83px solid var(--nsp-white);
	opacity: 1;
}
.nsp-btn--outline:hover,
.nsp-btn--outline:focus-visible {
	background: var(--nsp-white);
	color: var(--nsp-navy);
	border-color: var(--nsp-white);
}

/* HERO */
.nsp-hero {
	background-color: var(--nsp-navy);
	/* --nsp-hero-bg is set inline from the ACF hero_bg field. */
	background-image: var(--nsp-hero-bg, url("../img/hero-bg.webp"));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--nsp-white);
	position: relative;
	overflow: hidden;
}
.nsp-hero__inner {
	max-width: var(--nsp-max);
	margin: 0 auto;
	padding: 5rem var(--nsp-pad) 6rem;
	display: grid;
	grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
	grid-template-rows: auto 1fr;
	row-gap: 4rem;
	column-gap: 2rem;
	min-height: 730px;
	position: relative;
}
.nsp-hero__logo {
	grid-column: 1 / 2;
	grid-row: 1 / 2;
	display: inline-block;
}
.nsp-hero__logo img {
	width: 193px;
	height: auto;
	display: block;
}
.nsp-hero__copy {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
	align-self: start;
	max-width: 560px;
	position: relative;
	z-index: 2;
}
.nsp-hero__copy h1 {
	font-family: var(--nsp-font-display);
	font-weight: 700;
	font-size: clamp(2.5rem, 5vw, 66px);
	line-height: 1.105;
	letter-spacing: 0;
	text-transform: uppercase;
	margin: 0 0 4rem;
	color: var(--nsp-white);
}
.nsp-hero__copy h1 span {
	display: block;
}
.nsp-hero__ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: nowrap;
}
.nsp-hero__map {
	grid-column: 2 / 3;
	grid-row: 1 / 3;
	align-self: center;
	justify-self: end;
	width: 460px;
	max-width: none;
	margin-bottom: 0;
	z-index: 1;
	pointer-events: none;
}
.nsp-hero__map .nsp-mn {
	width: 100%;
	max-width: none;
	display: block;
	transform: scale(1.2) translate(18%, 0);
	transform-origin: right center;
}
.nsp-mn { width: 100%; height: auto; display: block; }

/* MISSION */
.nsp-mission {
	background: var(--nsp-white);
	padding: 6rem var(--nsp-pad);
}
.nsp-mission__inner {
	max-width: var(--nsp-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}
.nsp-mission__images {
	position: relative;
	padding: 30px 30px 30px 30px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.nsp-mission__img {
	margin: 0;
	position: relative;
	aspect-ratio: 490 / 254;
	width: 100%;
	max-width: 490px;
}
.nsp-mission__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12.125px;
	display: block;
	position: relative;
	z-index: 1;
	box-shadow: var(--nsp-shadow);
}
.nsp-mission__img::before {
	content: "";
	position: absolute;
	width: 70%;
	height: 78%;
	border: 2px solid var(--nsp-gold);
	border-radius: 12.13px;
	z-index: 0;
}
.nsp-mission__img--top::before {
	top: -25px;
	right: -29px;
}
.nsp-mission__img--bottom::before {
	bottom: -26px;
	left: -27px;
}
.nsp-mission__copy h2 {
	font-family: var(--nsp-font-display);
	font-weight: 500;
	font-size: clamp(1.75rem, 3.6vw, 47.81px);
	line-height: 1.255;
	letter-spacing: -0.6px;
	color: var(--nsp-navy);
	text-transform: uppercase;
	margin: 0 0 21px;
}
.nsp-mission__copy p {
	color: var(--nsp-navy);
	font-size: 16px;
	line-height: 23.925px;
	letter-spacing: -0.165px;
	margin: 0 0 1.5rem;
}
.nsp-mission__lede {
	font-weight: 800;
}

/* JOIN */
.nsp-join {
	background: var(--nsp-gray);
	border-top: 1px solid var(--nsp-gray-border);
	border-bottom: 1px solid var(--nsp-gray-border);
	padding: 6rem var(--nsp-pad);
}
.nsp-join__inner {
	max-width: var(--nsp-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.nsp-join__copy h2 {
	font-family: var(--nsp-font-display);
	font-weight: 400;
	font-size: clamp(1.75rem, 3.6vw, 47.81px);
	line-height: 1.255;
	letter-spacing: -0.6px;
	color: var(--nsp-navy);
	text-transform: uppercase;
	margin: 0 0 19px;
	max-width: 490px;
}
.nsp-join__copy p {
	color: var(--nsp-navy);
	font-size: 16px;
	line-height: 22.5px;
	letter-spacing: -0.3px;
	margin: 0 0 26px;
	max-width: 490px;
}
.nsp-join__contact {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--nsp-font-display);
	font-size: 12.75px;
	font-weight: 600;
	letter-spacing: 0.6375px;
	color: var(--nsp-navy);
	text-decoration: none;
	border: 0;
	border-bottom: 1px solid var(--nsp-navy);
	background: transparent;
	padding: 0 0 9px;
	text-transform: uppercase;
	cursor: pointer;
}
.nsp-join__contact-arrow {
	width: 18.75px;
	height: 13.5px;
	display: block;
}

.nsp-form {
	background-image: linear-gradient(127.8deg, #F3C94D 36.5%, #B78D2E 86.4%);
	padding: clamp(32px, 6vw, 76px) clamp(28px, 6vw, 83px);
	display: flex;
	flex-direction: column;
	gap: 10px;
	aspect-ratio: 1 / 1;
	max-width: 558px;
	margin-left: auto;
	box-shadow: var(--nsp-shadow-half);
	transform: scale(0.95);
	transform-origin: center;
	transition: transform 0.35s ease, box-shadow 0.45s ease;
}
.nsp-form:hover,
.nsp-form.is-emphasized {
	transform: scale(1);
	box-shadow: var(--nsp-shadow);
}
.nsp-form__field input {
	width: 100%;
	/* Translucent navy ensures WCAG-passing contrast for white text and placeholders on the gold gradient. */
	background: rgba(26, 58, 107, 0.35);
	border: 1px solid var(--nsp-white);
	padding: 26px 27px;
	height: 65px;
	color: var(--nsp-white);
	font-family: inherit;
	font-size: 14px;
	letter-spacing: 0.3px;
	font-weight: 400;
}
.nsp-form__field input::placeholder {
	color: rgba(255, 255, 255, 0.92);
	opacity: 1;
	text-transform: none;
	font-size: 12.75px;
	letter-spacing: 0.6375px;
}
.nsp-form__field input:focus {
	outline: none;
	background: rgba(26, 58, 107, 0.45);
	border-color: var(--nsp-white);
}
.nsp-form__field input:focus-visible,
.nsp-form .gform_footer input[type="submit"]:focus-visible,
.nsp-form__submit:focus-visible,
.nsp-form__consent input[type="checkbox"]:focus-visible,
.nsp-btn:focus-visible,
.nsp-footer__privacy:focus-visible,
.nsp-join__contact:focus-visible {
	outline: 3px solid var(--nsp-white);
	outline-offset: 3px;
}
.nsp-form__submit {
	background-image: linear-gradient(14.4deg, #234D8C 18.28%, #3260AB 68.29%);
	background-color: var(--nsp-navy);
	color: var(--nsp-white);
	border: 1px solid transparent;
	height: 62px;
	font-family: var(--nsp-font-display);
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
	margin-top: 0;
}
.nsp-form__submit:hover:not(:disabled),
.nsp-form__submit:focus-visible:not(:disabled) {
	background-image: none;
	background-color: var(--nsp-white);
	color: var(--nsp-navy);
	border-color: var(--nsp-white);
	filter: none;
}
.nsp-form__submit:disabled,
.nsp-form__static:has(:invalid) .nsp-form__submit {
	opacity: 0.45;
	cursor: not-allowed;
}

/* Tooltip shown when hovering the gold panel while its submit is disabled. */
.nsp-form::after,
.nsp-form::before {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	z-index: 5;
}
.nsp-form::after {
	content: "Please complete the required fields to enable submit.";
	position: absolute;
	left: 50%;
	bottom: calc( 100% + 14px );
	transform: translateX( -50% );
	background: rgba( 26, 58, 107, 0.95 );
	color: var( --nsp-white );
	font-family: var( --nsp-font-body );
	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.2px;
	padding: 9px 14px;
	border-radius: 3px;
	max-width: 280px;
	width: max-content;
	text-align: center;
	text-transform: none;
}
.nsp-form::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: calc( 100% + 8px );
	transform: translateX( -50% );
	border: 6px solid transparent;
	border-top-color: rgba( 26, 58, 107, 0.95 );
}
.nsp-form:has( [type="submit"]:disabled:hover )::after,
.nsp-form:has( [type="submit"]:disabled:hover )::before {
	opacity: 1;
}
.nsp-form__disclaimer {
	font-family: var(--nsp-font-body);
	font-weight: 300;
	font-size: 11.75px;
	line-height: 13.5px;
	letter-spacing: 0.6375px;
	color: rgba(255,255,255,0.7);
	text-align: center;
	margin: 19px 0 0;
}
.nsp-form__consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 8px;
	cursor: pointer;
	font-family: var(--nsp-font-body);
	font-weight: 300;
	font-size: 11.75px;
	line-height: 1.45;
	letter-spacing: 0.3px;
	color: rgba(255,255,255,0.85);
}
.nsp-form__consent input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 1px;
	border: 1px solid var(--nsp-white);
	background: rgba(255,255,255,0.1);
	cursor: pointer;
	position: relative;
}
.nsp-form__consent input[type="checkbox"]:checked {
	background: var(--nsp-white);
}
.nsp-form__consent input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 0;
	width: 5px;
	height: 10px;
	border: solid var(--nsp-navy);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.nsp-form__consent a {
	color: var(--nsp-white);
	text-decoration: underline;
}

/* Gravity Forms styling override — matches the design's gold form */
.nsp-form .gform_wrapper { width: 100%; }
.nsp-form .gform_wrapper .gform_fields {
	display: flex;
	flex-direction: column;
	gap: 10px;
	grid-template-columns: 1fr;
	grid-row-gap: 10px;
}
.nsp-form .gfield { padding: 0; margin: 0; }
/* Visually hide labels but keep them in the accessibility tree for screen readers. */
.nsp-form .gfield_label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
.nsp-form .gfield_required { color: rgba(255,255,255,0.4); }
.nsp-form .ginput_container input,
.nsp-form input[type="text"],
.nsp-form input[type="email"],
.nsp-form input[type="tel"] {
	width: 100% !important;
	background: rgba(26, 58, 107, 0.35) !important;
	border: 1px solid var(--nsp-white) !important;
	border-radius: 0 !important;
	padding: 26px 27px !important;
	height: 65px !important;
	color: var(--nsp-white) !important;
	font-family: inherit !important;
	font-size: 14px !important;
	letter-spacing: 0.3px !important;
	text-transform: none !important;
	font-weight: 400 !important;
	box-sizing: border-box !important;
}
.nsp-form .ginput_container input::placeholder,
.nsp-form input::placeholder {
	color: rgba(255, 255, 255, 0.92) !important;
	opacity: 1 !important;
	text-transform: none;
	font-size: 12.75px;
	letter-spacing: 0.6375px;
}
.nsp-form .ginput_container input:focus,
.nsp-form input:focus {
	outline: none !important;
	background: rgba(26, 58, 107, 0.45) !important;
	border-color: var(--nsp-white) !important;
}
.nsp-form .gform_footer {
	padding: 0 !important;
	margin: 10px 0 0 !important;
}
.nsp-form .gform_footer input[type="submit"],
.nsp-form .gform_button {
	background-image: linear-gradient(14.4deg, #234D8C 18.28%, #3260AB 68.29%) !important;
	background-color: var(--nsp-navy) !important;
	color: var(--nsp-white) !important;
	border: 1px solid transparent !important;
	border-radius: 0 !important;
	width: 100% !important;
	height: 62px !important;
	font-family: var(--nsp-font-display) !important;
	font-weight: 600 !important;
	font-size: 18px !important;
	letter-spacing: 0 !important;
	text-transform: uppercase !important;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease !important;
}
.nsp-form .gform_footer input[type="submit"]:hover:not(:disabled),
.nsp-form .gform_footer input[type="submit"]:focus-visible:not(:disabled),
.nsp-form .gform_button:hover:not(:disabled),
.nsp-form .gform_button:focus-visible:not(:disabled) {
	background-image: none !important;
	background-color: var(--nsp-white) !important;
	color: var(--nsp-navy) !important;
	border-color: var(--nsp-white) !important;
	filter: none !important;
}
.nsp-form .gform_wrapper form:has(:invalid) .gform_footer input[type="submit"],
.nsp-form .gform_wrapper form:has(:invalid) .gform_button,
.nsp-form .gform_footer input[type="submit"]:disabled,
.nsp-form .gform_button:disabled {
	opacity: 0.45 !important;
	cursor: not-allowed !important;
}
.nsp-form .gform_validation_errors,
.nsp-form .gfield_validation_message,
.nsp-form .gfield_description {
	color: rgba(255,255,255,0.9) !important;
	font-size: 12px !important;
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
}
.nsp-form .gfield--type-consent .ginput_container,
.nsp-form .gfield--type-checkbox .ginput_container,
.nsp-form .gfield_consent,
.nsp-form .gchoice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.nsp-form input[type="checkbox"] {
	appearance: none !important;
	-webkit-appearance: none !important;
	width: 16px !important;
	height: 16px !important;
	min-width: 16px !important;
	min-height: 16px !important;
	max-width: 16px !important;
	max-height: 16px !important;
	flex: 0 0 16px !important;
	flex-shrink: 0 !important;
	margin: 3px 0 0 !important;
	padding: 0 !important;
	border: 1px solid #ffffff !important;
	background: rgba(255,255,255,0.1) !important;
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
}
.nsp-form input[type="checkbox"]:checked {
	background: #ffffff !important;
}
.nsp-form input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 0;
	width: 5px;
	height: 10px;
	border: solid var(--nsp-navy);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.nsp-form .gfield--type-consent label,
.nsp-form .gfield_consent label,
.nsp-form .gfield--type-consent .gfield_consent_description,
.nsp-form .gfield_consent_description,
.nsp-form .gchoice label,
.nsp-form .gfield--type-checkbox label {
	color: #ffffff !important;
	font-family: var(--nsp-font-body);
	font-weight: 300;
	font-size: 11.75px;
	line-height: 1.45;
	letter-spacing: 0.3px;
	margin: 0;
}
.nsp-form .gfield--type-consent a,
.nsp-form .gfield_consent a,
.nsp-form .gchoice a,
.nsp-form .gfield--type-checkbox a {
	color: #ffffff;
	text-decoration: underline;
}

.nsp-form .gform_confirmation_message {
	color: var(--nsp-white);
	font-family: var(--nsp-font-display);
	font-weight: 500;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.25;
	text-align: center;
	padding: 2rem 1rem;
	margin: 0;
}

/* FOOTER */
.nsp-footer {
	background: var(--nsp-white);
	padding: 2.5rem var(--nsp-pad);
	border-top: 1px solid #E5E7EB;
}
.nsp-footer__inner {
	max-width: var(--nsp-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 2rem;
}
.nsp-footer__logo {
	display: inline-block;
}
.nsp-footer__logo img {
	width: 128px;
	height: auto;
	display: block;
}
.nsp-footer__copy {
	margin: 0;
	color: var(--nsp-muted);
	font-size: 15px;
	line-height: 22.5px;
	letter-spacing: -0.3px;
	text-align: right;
}
.nsp-footer__privacy {
	color: var(--nsp-muted);
	font-size: 15px;
	line-height: 22.5px;
	letter-spacing: -0.3px;
	text-decoration: none;
}
.nsp-footer__privacy:hover { color: var(--nsp-navy); }

/* RESPONSIVE */

/* Tablet — under 900px collapse the two-column layouts */
@media (max-width: 900px) {
	.nsp-hero__inner {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
		min-height: auto;
		padding-top: 4rem;
		padding-bottom: 5rem;
		row-gap: 2.5rem;
		column-gap: 1.5rem;
	}
	.nsp-hero__logo {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
		align-self: start;
	}
	.nsp-hero__copy {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
		align-self: start;
		max-width: 100%;
	}
	.nsp-hero__copy h1 {
		font-size: clamp(2.5rem, 6.5vw, 56px);
		margin-bottom: 2.5rem;
	}
	.nsp-hero__map {
		position: static;
		grid-column: 2 / 3;
		grid-row: 1 / 2;
		justify-self: end;
		align-self: start;
		width: clamp(140px, 28vw, 240px);
		max-width: none;
		margin: 0;
		transform: none;
		right: auto;
		bottom: auto;
	}
	.nsp-hero__map .nsp-mn {
		transform: none;
		width: 100%;
	}

	.nsp-mission {
		padding: 5rem var(--nsp-pad);
	}
	.nsp-mission__inner,
	.nsp-join__inner {
		grid-template-columns: 1fr;
		gap: 3.5rem;
	}
	.nsp-mission__images {
		padding: 30px;
		max-width: 640px;
		margin: 0 auto;
	}
	.nsp-mission__copy h2,
	.nsp-join__copy h2 {
		font-size: clamp(1.75rem, 5vw, 40px);
	}

	.nsp-join {
		padding: 5rem var(--nsp-pad);
	}
	.nsp-join__copy h2,
	.nsp-join__copy p {
		max-width: 640px;
	}
	.nsp-form {
		aspect-ratio: auto;
		max-width: 640px;
		margin: 0 auto;
		padding: 3rem 3.5rem;
	}
	.nsp-footer__inner {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 1rem;
		justify-items: center;
	}
	.nsp-footer__copy { text-align: center; }
}

/* Phone — under 600px tighten typography, padding, and CTAs */
@media (max-width: 600px) {
	.nsp-hero__inner {
		padding-top: 2rem;
		padding-bottom: 3rem;
	}
	.nsp-hero__logo img {
		width: 150px;
	}
	.nsp-hero__copy h1 {
		font-size: clamp(2rem, 9vw, 2.75rem);
		line-height: 1.1;
		margin-bottom: 1.75rem;
	}
	.nsp-hero__ctas {
		gap: 0.75rem;
	}
	.nsp-btn {
		font-size: 14px;
		padding: 14px 18px;
		height: 50px;
	}
	.nsp-btn--gold,
	.nsp-btn--outline {
		width: auto;
		flex: 1 1 0;
		min-width: 0;
	}
	.nsp-hero__map {
		width: clamp(110px, 32vw, 180px);
	}

	.nsp-mission {
		padding: 3rem var(--nsp-pad);
	}
	.nsp-mission__images {
		padding: 24px;
		gap: 12px;
	}
	.nsp-mission__img::before {
		width: 75%;
		height: 75%;
	}
	.nsp-mission__img--top::before {
		top: -16px;
		right: -16px;
	}
	.nsp-mission__img--bottom::before {
		bottom: -16px;
		left: -16px;
	}
	.nsp-mission__copy h2,
	.nsp-join__copy h2 {
		font-size: clamp(1.6rem, 7vw, 2rem);
		line-height: 1.2;
	}

	.nsp-join {
		padding: 3rem var(--nsp-pad);
	}
	.nsp-form {
		padding: 2rem 1.5rem;
		gap: 8px;
	}
	.nsp-form__field input {
		height: 56px;
		padding: 20px 18px;
		font-size: 12px;
	}
	.nsp-form__submit {
		height: 56px;
		font-size: 16px;
	}
	.nsp-form__disclaimer {
		font-size: 10.5px;
		line-height: 13px;
	}

	.nsp-footer {
		padding: 2rem var(--nsp-pad);
	}
}

/* Signup-form success / error notice */
.nsp-form__notice {
	padding: 14px 18px;
	margin: 0 0 16px;
	color: var(--nsp-white);
	font-family: var(--nsp-font-body);
	font-size: 14px;
	line-height: 1.4;
	border-radius: 2px;
}
.nsp-form__notice--success {
	background: rgba(26, 58, 107, 0.55);
	border: 1px solid var(--nsp-white);
}
.nsp-form__notice--error {
	background: rgba(180, 35, 35, 0.65);
	border: 1px solid var(--nsp-white);
}
