/* Tokens */
:root {
	--snl-navy-950: #000C24;
	--snl-navy-900: #00194A;
	--snl-navy-800: #0A2A66;
	--snl-blue-600: #286BD8;
	--snl-blue-700: #1F56B3;
	--snl-sky-400: #78ADFD;
	--snl-sky-100: #EAF2FF;
	--snl-cyan-500: #00C4C5;
	--snl-lavender-500: #976AFE;
	--snl-magenta-600: #AA32C5;
	--snl-ink: #0B1633;
	--snl-ink-muted: #4A5675;
	--snl-ink-soft: #6B7794;
	--snl-surface: #FFFFFF;
	--snl-surface-2: #F4F7FC;
	--snl-surface-3: #EAF0FA;
	--snl-line: rgba(0, 25, 74, .10);
	--snl-line-dark: rgba(255, 255, 255, .14);
	--snl-hero-overlay: linear-gradient(90deg, rgba(0, 12, 36, .88) 0%, rgba(0, 25, 74, .55) 45%, rgba(0, 25, 74, 0) 78%);
	--snl-radius-sm: 10px;
	--snl-radius: 20px;
	--snl-radius-lg: 28px;
	--snl-radius-pill: 999px;
	--snl-shadow-card: 0 1px 2px rgba(0, 25, 74, .04), 0 12px 32px -12px rgba(0, 25, 74, .14);
	--snl-shadow-float: 0 30px 60px -20px rgba(0, 25, 74, .35);
	--snl-ease: cubic-bezier(.22, 1, .36, 1);
	--snl-dur: .6s;
	--snl-font-display: 'Manrope', 'Inter', system-ui, sans-serif;
	--snl-font-body: 'Inter', system-ui, -apple-system, sans-serif;
	--snl-font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	--snl-container: 1240px;
	--snl-gutter: 24px;
	--snl-header-h: 72px;
	--snl-section-y: clamp(72px, 10vw, 140px);
	--snl-space-1: 8px;
	--snl-space-2: 16px;
	--snl-space-3: 24px;
	--snl-space-4: 32px;
	--snl-space-5: 40px;
	--snl-space-6: 48px;
	--snl-space-8: 64px;
	--snl-space-10: 80px;
}

/* Reset */
body.supernova-longevity,
body.supernova-longevity * ,
body.supernova-longevity *::before,
body.supernova-longevity *::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body.supernova-longevity {
	margin: 0;
	background: var(--snl-surface);
	color: var(--snl-ink);
	font-family: var(--snl-font-body);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
}

body.supernova-longevity .snl-main {
	display: block;
	margin: 0;
	padding: 0;
}

body.supernova-longevity img,
body.supernova-longevity svg,
body.supernova-longevity picture {
	display: block;
	max-width: 100%;
	height: auto;
}

body.supernova-longevity a {
	color: var(--snl-blue-600);
	text-decoration: none;
	transition: color .25s var(--snl-ease);
}

body.supernova-longevity a:hover {
	color: var(--snl-blue-700);
}

body.supernova-longevity button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

body.supernova-longevity ul,
body.supernova-longevity ol {
	margin: 0;
	padding: 0;
}

body.supernova-longevity p {
	margin: 0 0 1em;
}

body.supernova-longevity p:last-child {
	margin-bottom: 0;
}

body.supernova-longevity :focus-visible {
	outline: 2px solid var(--snl-blue-600);
	outline-offset: 3px;
	border-radius: 4px;
}

body.supernova-longevity .snl-dark :focus-visible,
body.supernova-longevity .snl-dark:focus-visible {
	outline-color: var(--snl-cyan-500);
}

/* Typography */
body.supernova-longevity h1,
body.supernova-longevity h2,
body.supernova-longevity h3,
body.supernova-longevity h4 {
	font-family: var(--snl-font-display);
	font-weight: 500;
	color: inherit;
	margin: 0;
	text-wrap: balance;
}

body.supernova-longevity .snl-display,
body.supernova-longevity h1.snl-heading {
	font-size: clamp(44px, 6.2vw, 88px);
	line-height: 1.02;
	letter-spacing: -.04em;
}

body.supernova-longevity h2.snl-heading,
body.supernova-longevity h1.snl-heading--h2 {
	font-size: clamp(34px, 4.4vw, 60px);
	line-height: 1.05;
	letter-spacing: -.035em;
}

body.supernova-longevity h3.snl-heading,
body.supernova-longevity .snl-h3 {
	font-size: clamp(20px, 2vw, 28px);
	line-height: 1.2;
	letter-spacing: -.02em;
	font-weight: 500;
}

body.supernova-longevity .snl-h4 {
	font-family: var(--snl-font-display);
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: -.015em;
	font-weight: 600;
}

body.supernova-longevity .snl-accent {
	color: var(--snl-blue-600);
}

body.supernova-longevity .snl-dark .snl-accent {
	color: var(--snl-sky-400);
}

body.supernova-longevity .snl-lead {
	font-size: clamp(18px, 1.4vw, 20px);
	line-height: 1.55;
	color: var(--snl-ink-muted);
	max-width: 62ch;
}

body.supernova-longevity .snl-muted {
	color: var(--snl-ink-muted);
}

body.supernova-longevity .snl-small {
	font-size: 14px;
	line-height: 1.55;
}

body.supernova-longevity .snl-index {
	font-family: var(--snl-font-mono);
	font-variant-numeric: tabular-nums;
	font-size: 13px;
	letter-spacing: .04em;
	color: var(--snl-ink-soft);
}

body.supernova-longevity .snl-dark {
	color: #fff;
}

body.supernova-longevity .snl-dark .snl-muted,
body.supernova-longevity .snl-dark .snl-lead {
	color: rgba(255, 255, 255, .78);
}

body.supernova-longevity .snl-dark .snl-index {
	color: rgba(255, 255, 255, .6);
}

body.supernova-longevity .snl-dark a {
	color: #fff;
}

body.supernova-longevity .snl-dark a:hover {
	color: var(--snl-sky-400);
}

/* Layout */
body.supernova-longevity .snl-container {
	width: 100%;
	max-width: calc(var(--snl-container) + var(--snl-gutter) * 2);
	margin: 0 auto;
	padding-left: var(--snl-gutter);
	padding-right: var(--snl-gutter);
}

body.supernova-longevity .snl-section {
	position: relative;
	padding-top: var(--snl-section-y);
	padding-bottom: var(--snl-section-y);
	background: var(--snl-surface);
}

body.supernova-longevity .snl-section--alt {
	background: var(--snl-surface-2);
}

body.supernova-longevity .snl-section--tight {
	padding-top: calc(var(--snl-section-y) * .6);
	padding-bottom: calc(var(--snl-section-y) * .6);
}

body.supernova-longevity .snl-section--flush-top {
	padding-top: 0;
}

body.supernova-longevity .snl-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--snl-space-4);
	margin-bottom: clamp(40px, 5vw, 64px);
}

body.supernova-longevity .snl-section-head__text {
	max-width: 720px;
}

body.supernova-longevity .snl-section-head .snl-eyebrow {
	margin-bottom: var(--snl-space-3);
}

body.supernova-longevity .snl-section-head__desc {
	max-width: 440px;
	margin-top: var(--snl-space-3);
	color: var(--snl-ink-muted);
}

body.supernova-longevity .snl-section-head--center {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

body.supernova-longevity .snl-section-head--center .snl-section-head__desc {
	margin-left: auto;
	margin-right: auto;
	max-width: 560px;
}

body.supernova-longevity .snl-section-head--stacked {
	display: block;
	margin-bottom: var(--snl-space-4);
}

body.supernova-longevity .snl-section-head--stacked .snl-lead {
	margin-top: var(--snl-space-3);
}

body.supernova-longevity .snl-section-head__actions {
	display: flex;
	gap: var(--snl-space-1);
	flex: none;
}

body.supernova-longevity .snl-main [id] {
	scroll-margin-top: var(--snl-header-h);
}

/* Utilities */
body.supernova-longevity .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.supernova-longevity .snl-skip {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 200;
	padding: 12px 18px;
	background: var(--snl-blue-600);
	color: #fff;
	border-radius: var(--snl-radius-sm);
}

body.supernova-longevity .snl-skip:focus {
	top: 16px;
}

body.supernova-longevity .snl-grid {
	display: grid;
	gap: var(--snl-space-3);
}

body.supernova-longevity .snl-split {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(32px, 5vw, 80px);
	align-items: center;
}

body.supernova-longevity .snl-split > * {
	grid-column: span 6;
	min-width: 0;
}

body.supernova-longevity .snl-split--5-7 > :first-child {
	grid-column: span 5;
}

body.supernova-longevity .snl-split--5-7 > :last-child {
	grid-column: span 7;
}

body.supernova-longevity .snl-split--7-5 > :first-child {
	grid-column: span 7;
}

body.supernova-longevity .snl-split--7-5 > :last-child {
	grid-column: span 5;
}

body.supernova-longevity .snl-split--top {
	align-items: start;
}

body.supernova-longevity .snl-vstack > * + * {
	margin-top: var(--snl-space-3);
}

body.supernova-longevity .snl-prose p,
body.supernova-longevity .snl-prose li {
	color: var(--snl-ink-muted);
}

body.supernova-longevity .snl-prose p {
	max-width: 64ch;
}

body.supernova-longevity .snl-dark .snl-prose p,
body.supernova-longevity .snl-dark .snl-prose li {
	color: rgba(255, 255, 255, .8);
}

body.supernova-longevity .snl-note {
	font-size: 14px;
	color: var(--snl-ink-soft);
	max-width: 64ch;
}

body.supernova-longevity .snl-credit {
	font-size: 12px;
	color: var(--snl-ink-soft);
	margin-top: var(--snl-space-1);
}

@media (max-width: 1023px) {
	body.supernova-longevity .snl-split {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--snl-space-5);
	}

	body.supernova-longevity .snl-split > *,
	body.supernova-longevity .snl-split--5-7 > :first-child,
	body.supernova-longevity .snl-split--5-7 > :last-child,
	body.supernova-longevity .snl-split--7-5 > :first-child,
	body.supernova-longevity .snl-split--7-5 > :last-child {
		grid-column: 1 / -1;
	}

	body.supernova-longevity .snl-section-head {
		flex-direction: column;
		align-items: flex-start;
	}

	body.supernova-longevity .snl-section-head--center {
		align-items: center;
	}
}

@media (max-width: 767px) {
	:root {
		--snl-header-h: 64px;
	}

	body.supernova-longevity {
		font-size: 16px;
	}
}

@media (max-width: 400px) {
	:root {
		--snl-gutter: 16px;
	}
}

/* Print */
@media print {
	body.supernova-longevity .snl-header,
	body.supernova-longevity .snl-sheet,
	body.supernova-longevity .snl-footer,
	body.supernova-longevity .snl-legal__toc,
	body.supernova-longevity .snl-btn {
		display: none !important;
	}

	body.supernova-longevity .snl-legal__hero {
		background: none !important;
		color: #000 !important;
		padding: 0 !important;
	}

	body.supernova-longevity .snl-legal__body {
		max-width: none !important;
	}
}
