:root {
	--figsite-obsidian: #090A12;
	--figsite-slate: #111827;
	--figsite-surface: #171B2E;
	--figsite-border: #293045;
	--figsite-purple: #6D28D9;
	--figsite-purple-bright: #8B5CF6;
	--figsite-lavender: #C4B5FD;
	--figsite-cyan: #00D9FF;
	--figsite-cyan-bright: #22D3EE;
	--figsite-cyan-soft: #67E8F9;
	--figsite-white: #F8FAFC;
	--figsite-soft-white: #E2E8F0;
	--figsite-muted: #AAB4C8;
	--container: 1160px;
	--radius: 8px;
	--shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 88px;
}

body {
	margin: 0;
	background:
		linear-gradient(rgba(103, 232, 249, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(103, 232, 249, 0.04) 1px, transparent 1px),
		radial-gradient(circle at 18% 10%, rgba(109, 40, 217, 0.28), transparent 32rem),
		linear-gradient(180deg, var(--figsite-obsidian), #0c1020 48%, var(--figsite-obsidian));
	background-size: 56px 56px, 56px 56px, auto, auto;
	color: var(--figsite-soft-white);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

body.menu-open {
	overflow: hidden;
}

::selection {
	background: rgba(0, 217, 255, 0.28);
	color: var(--figsite-white);
}

a {
	color: var(--figsite-cyan-soft);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--figsite-white);
}

img {
	height: auto;
	max-width: 100%;
}

h1,
h2,
h3 {
	color: var(--figsite-white);
	line-height: 1.08;
	margin: 0 0 1rem;
}

h1 {
	font-size: clamp(2.35rem, 7vw, 5rem);
	max-width: 11ch;
}

h2 {
	font-size: clamp(1.85rem, 4vw, 3.25rem);
}

h3 {
	font-size: 1.15rem;
}

p {
	margin: 0 0 1rem;
}

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

input,
select,
textarea {
	background: rgba(9, 10, 18, 0.72);
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	color: var(--figsite-white);
	min-height: 48px;
	padding: 0.8rem 0.95rem;
	width: 100%;
}

textarea {
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
	outline: 3px solid var(--figsite-cyan);
	outline-offset: 4px;
}

input:hover,
select:hover,
textarea:hover {
	border-color: rgba(103, 232, 249, 0.52);
}

.container {
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 1.1rem;
	width: 100%;
}

.narrow {
	max-width: 820px;
}

.section {
	padding: 4.75rem 0;
}

.site-main > .section:first-child {
	padding-top: 5.25rem;
}

.section-panel {
	background: linear-gradient(180deg, rgba(23, 27, 46, 0.72), rgba(17, 24, 39, 0.55));
	border-block: 1px solid rgba(41, 48, 69, 0.7);
}

.section-kicker {
	color: var(--figsite-cyan-soft);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0;
	margin-bottom: 0.9rem;
	text-transform: uppercase;
}

.hero {
	padding-top: 6.5rem;
}

.hero-grid,
.split {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

.hero-lede {
	color: var(--figsite-muted);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	max-width: 66ch;
}

.hero-visual {
	background:
		linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(109, 40, 217, 0.18)),
		rgba(23, 27, 46, 0.8);
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	min-height: 320px;
	padding: 1rem;
}

.button-row {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin-top: 1.6rem;
}

.button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: var(--radius);
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 48px;
	min-width: 48px;
	padding: 0.85rem 1.15rem;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
	text-align: center;
}

.button:hover {
	transform: translateY(-1px);
}

.button-primary {
	background: var(--figsite-cyan);
	box-shadow: 0 0 0 1px rgba(103, 232, 249, 0.24), 0 14px 34px rgba(0, 217, 255, 0.18);
	color: #031018;
}

.button-primary:hover {
	background: var(--figsite-cyan-bright);
	color: #031018;
}

.button-secondary {
	background: rgba(248, 250, 252, 0.06);
	border-color: var(--figsite-border);
	color: var(--figsite-white);
}

.button-secondary:hover {
	background: rgba(248, 250, 252, 0.1);
	border-color: rgba(196, 181, 253, 0.45);
}

.button-small {
	min-height: 44px;
	padding: 0.65rem 0.9rem;
}

.site-header {
	backdrop-filter: blur(18px);
	background: rgba(9, 10, 18, 0.82);
	border-bottom: 1px solid rgba(41, 48, 69, 0.86);
	position: sticky;
	top: 0;
	z-index: 50;
}

.header-inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 72px;
}

.site-logo-text {
	align-items: center;
	color: var(--figsite-white);
	display: inline-flex;
	font-weight: 900;
	gap: 0.7rem;
	text-decoration: none;
}

.logo-mark {
	background: linear-gradient(135deg, var(--figsite-cyan), var(--figsite-purple-bright));
	border-radius: 6px;
	display: inline-block;
	height: 28px;
	position: relative;
	width: 28px;
}

.logo-mark::after {
	background: var(--figsite-obsidian);
	border-radius: 3px;
	content: "";
	height: 10px;
	left: 9px;
	position: absolute;
	top: 9px;
	width: 10px;
}

.menu-toggle {
	background: transparent;
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	color: var(--figsite-white);
	display: inline-flex;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
	background: currentColor;
	display: block;
	height: 2px;
	position: relative;
	width: 20px;
}

.menu-toggle-bars {
	margin-top: 20px;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
	content: "";
	position: absolute;
}

.menu-toggle-bars::before {
	top: -7px;
}

.menu-toggle-bars::after {
	top: 7px;
}

.primary-navigation {
	background: rgba(9, 10, 18, 0.98);
	border-top: 1px solid var(--figsite-border);
	display: none;
	inset: 72px 0 auto 0;
	padding: 1rem;
	position: fixed;
	max-height: calc(100vh - 72px);
	overflow-y: auto;
}

.primary-navigation.is-open {
	display: block;
}

.primary-menu,
.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu a,
.footer-menu a {
	color: var(--figsite-soft-white);
	display: block;
	min-height: 44px;
	padding: 0.75rem 0;
	text-decoration: none;
}

.primary-menu a:hover,
.footer-menu a:hover {
	color: var(--figsite-cyan-soft);
}

.header-cta {
	margin-top: 0.75rem;
	width: 100%;
	white-space: normal;
}

.lead-flow {
	counter-reset: lead-flow;
	display: grid;
	gap: 0.85rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lead-flow li {
	align-items: center;
	background: rgba(9, 10, 18, 0.62);
	border: 1px solid rgba(103, 232, 249, 0.25);
	border-radius: var(--radius);
	color: var(--figsite-white);
	display: flex;
	font-weight: 800;
	gap: 0.8rem;
	min-height: 58px;
	padding: 0.85rem;
	position: relative;
}

.lead-flow li:last-child {
	border-color: rgba(0, 217, 255, 0.58);
	box-shadow: inset 0 0 0 1px rgba(0, 217, 255, 0.08);
}

.lead-flow li:not(:last-child)::after {
	background: var(--figsite-cyan);
	bottom: -0.72rem;
	content: "";
	height: 0.6rem;
	left: 1.65rem;
	position: absolute;
	width: 2px;
}

.flow-index,
.step-number {
	align-items: center;
	background: rgba(0, 217, 255, 0.12);
	border: 1px solid rgba(0, 217, 255, 0.35);
	border-radius: 999px;
	color: var(--figsite-cyan-soft);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 900;
	height: 32px;
	justify-content: center;
	min-width: 32px;
}

.card-grid,
.content-grid,
.demo-board {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

.info-card,
.demo-panel,
.content-grid article,
.post-card,
.notice-block {
	background: rgba(23, 27, 46, 0.76);
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	padding: 1.25rem;
}

.info-card,
.demo-panel,
.content-grid article,
.post-card {
	box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.04);
}

.info-card p,
.demo-panel p,
.content-grid p,
.post-card p {
	color: var(--figsite-muted);
}

.process-steps {
	display: grid;
	gap: 1rem;
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.process-steps li {
	background: rgba(9, 10, 18, 0.58);
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	padding: 1.25rem;
}

.industry-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1rem;
}

.industry-pill {
	background: rgba(196, 181, 253, 0.1);
	border: 1px solid rgba(196, 181, 253, 0.24);
	border-radius: 999px;
	color: var(--figsite-soft-white);
	padding: 0.55rem 0.8rem;
}

.trust-microcopy {
	color: var(--figsite-muted);
	font-size: 0.95rem;
	margin-top: 1rem;
	max-width: 58ch;
}

.lead-leak-scorecard {
	background:
		linear-gradient(135deg, rgba(0, 217, 255, 0.11), rgba(109, 40, 217, 0.2)),
		rgba(23, 27, 46, 0.86);
	border: 1px solid rgba(103, 232, 249, 0.28);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1rem;
}

.scorecard-header {
	align-items: flex-start;
	border-bottom: 1px solid var(--figsite-border);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
}

.scorecard-header span,
.scorecard-label {
	color: var(--figsite-cyan-soft);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.scorecard-header strong {
	color: var(--figsite-white);
	font-size: 1.15rem;
}

.lead-leak-scorecard ol {
	display: grid;
	gap: 0.65rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lead-leak-scorecard li {
	align-items: center;
	background: rgba(9, 10, 18, 0.62);
	border: 1px solid rgba(41, 48, 69, 0.9);
	border-radius: var(--radius);
	color: var(--figsite-white);
	display: flex;
	font-weight: 800;
	justify-content: space-between;
	min-height: 52px;
	padding: 0.75rem;
}

.lead-leak-scorecard li span {
	color: var(--figsite-muted);
	font-size: 0.78rem;
	font-weight: 700;
	margin-left: 0.75rem;
}

.lead-leak-bullet-grid,
.lead-leak-card-grid,
.fit-list,
.output-list,
.trust-check-list {
	display: grid;
	gap: 0.85rem;
	margin: 1rem 0 0;
	padding: 0;
}

.lead-leak-bullet-grid div,
.lead-leak-review-card,
.fit-list li,
.output-list li,
.trust-check-list li {
	background: rgba(23, 27, 46, 0.76);
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	color: var(--figsite-soft-white);
	list-style: none;
	padding: 1rem;
}

.lead-leak-review-card {
	min-height: 100%;
}

.lead-leak-review-card h3 {
	margin-top: 0.45rem;
}

.lead-leak-review-card p {
	color: var(--figsite-muted);
	margin-bottom: 0;
}

.thank-you-hero {
	background:
		linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(109, 40, 217, 0.18)),
		rgba(9, 10, 18, 0.45);
}

.thank-you-hero h1 {
	max-width: 12ch;
}

.thank-you-hero-grid {
	align-items: center;
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

.confirmation-panel,
.inbox-panel,
.privacy-reminder-panel {
	background: rgba(23, 27, 46, 0.82);
	border: 1px solid rgba(103, 232, 249, 0.24);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.25rem;
}

.confirmation-panel {
	display: grid;
	gap: 0.85rem;
	justify-items: start;
}

.confirmation-panel strong {
	color: var(--figsite-white);
	font-size: 1.35rem;
}

.confirmation-panel p,
.inbox-panel p,
.privacy-reminder-panel p,
.thank-you-resource-card p,
.thank-you-steps p,
.final-calm-cta p {
	color: var(--figsite-muted);
}

.success-indicator {
	align-items: center;
	background: rgba(0, 217, 255, 0.14);
	border: 1px solid rgba(103, 232, 249, 0.54);
	border-radius: 999px;
	color: var(--figsite-cyan-soft);
	display: inline-flex;
	font-size: 1.4rem;
	font-weight: 900;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.thank-you-steps {
	display: grid;
	gap: 1rem;
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.thank-you-steps li,
.thank-you-resource-card {
	background: rgba(23, 27, 46, 0.76);
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.04);
}

.thank-you-steps li {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: auto 1fr;
	padding: 1rem;
}

.thank-you-steps h3 {
	margin-bottom: 0.45rem;
}

.important-note {
	background: rgba(0, 217, 255, 0.1);
	border: 1px solid rgba(103, 232, 249, 0.32);
	border-radius: var(--radius);
	color: var(--figsite-soft-white);
	font-weight: 800;
	margin: 1.25rem 0 0;
	padding: 1rem;
}

.thank-you-resource-grid {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

.thank-you-resource-card {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	padding: 1.25rem;
}

.thank-you-resource-card .button {
	margin-top: auto;
}

.privacy-reminder-panel .button,
.final-calm-cta .button {
	margin-top: 0.5rem;
}

.final-calm-cta {
	background: linear-gradient(180deg, rgba(17, 24, 39, 0.55), rgba(23, 27, 46, 0.72));
	border-top: 1px solid rgba(41, 48, 69, 0.7);
}

.founding-hero {
	background:
		linear-gradient(rgba(103, 232, 249, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(103, 232, 249, 0.05) 1px, transparent 1px),
		linear-gradient(135deg, rgba(109, 40, 217, 0.22), rgba(0, 217, 255, 0.08)),
		rgba(9, 10, 18, 0.52);
	background-size: 42px 42px, 42px 42px, auto, auto;
}

.founding-hero h1 {
	max-width: 13ch;
}

.founding-hero-grid {
	align-items: center;
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

.founding-system-flow,
.founding-feature-panel {
	background: rgba(23, 27, 46, 0.82);
	border: 1px solid rgba(103, 232, 249, 0.24);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.25rem;
}

.founding-system-flow ol,
.founding-card-grid,
.founding-process,
.founding-check-list {
	display: grid;
	gap: 0.85rem;
	margin: 1.25rem 0 0;
	padding: 0;
}

.founding-system-flow ol {
	counter-reset: founding-flow;
	list-style: none;
	margin: 0;
}

.founding-system-flow li {
	align-items: center;
	background: rgba(9, 10, 18, 0.64);
	border: 1px solid rgba(103, 232, 249, 0.24);
	border-radius: var(--radius);
	color: var(--figsite-white);
	display: flex;
	font-weight: 900;
	gap: 0.75rem;
	min-height: 54px;
	padding: 0.8rem;
	position: relative;
}

.founding-system-flow li::before {
	align-items: center;
	background: rgba(0, 217, 255, 0.12);
	border: 1px solid rgba(0, 217, 255, 0.35);
	border-radius: 999px;
	color: var(--figsite-cyan-soft);
	content: counter(founding-flow);
	counter-increment: founding-flow;
	display: inline-flex;
	font-size: 0.76rem;
	height: 30px;
	justify-content: center;
	min-width: 30px;
}

.founding-system-flow li:not(:last-child)::after {
	background: var(--figsite-cyan);
	bottom: -0.72rem;
	content: "";
	height: 0.58rem;
	left: 1.75rem;
	position: absolute;
	width: 2px;
}

.founding-card,
.founding-process li,
.founding-check-list li {
	background: rgba(23, 27, 46, 0.76);
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.04);
	color: var(--figsite-soft-white);
	list-style: none;
	padding: 1rem;
}

.founding-card,
.founding-check-list li {
	font-weight: 800;
}

.founding-card::before,
.founding-check-list li::before {
	background: var(--figsite-cyan-soft);
	border-radius: 999px;
	content: "";
	display: inline-block;
	height: 0.45rem;
	margin-right: 0.45rem;
	vertical-align: 0.08rem;
	width: 0.45rem;
}

.not-fit-list li::before,
.boundary-card::before {
	background: var(--figsite-lavender);
}

.founding-process {
	list-style: none;
}

.founding-process li {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: auto 1fr;
}

.founding-process h3 {
	margin-bottom: 0.45rem;
}

.founding-process p,
.founding-feature-panel p {
	color: var(--figsite-muted);
}

.founding-feature-panel .section-kicker {
	margin-top: 0;
}

.founding-final .microcopy {
	margin-top: 1rem;
}

.fit-list li,
.output-list li,
.trust-check-list li {
	padding-left: 2.45rem;
	position: relative;
}

.fit-list li::before,
.output-list li::before,
.trust-check-list li::before {
	background: var(--figsite-cyan);
	border-radius: 999px;
	content: "";
	height: 0.55rem;
	left: 1rem;
	position: absolute;
	top: 1.55rem;
	width: 0.55rem;
}

.not-fit-list li::before {
	background: var(--figsite-lavender);
}

.boundary-note {
	background: rgba(0, 217, 255, 0.08);
	border-left: 4px solid var(--figsite-cyan);
	border-radius: var(--radius);
	color: var(--figsite-soft-white);
	padding: 1rem;
}

.video-audit-panel {
	align-items: center;
	background:
		linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(109, 40, 217, 0.18)),
		rgba(9, 10, 18, 0.55);
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	display: grid;
	gap: 1rem;
	padding: 1.25rem;
}

.lead-leak-final .button-secondary {
	background: rgba(9, 10, 18, 0.5);
	border-color: rgba(248, 250, 252, 0.26);
}

.cta-band,
.footer-cta {
	background:
		linear-gradient(135deg, rgba(0, 217, 255, 0.12), rgba(109, 40, 217, 0.2)),
		rgba(23, 27, 46, 0.82);
	border-block: 1px solid var(--figsite-border);
}

.center {
	text-align: center;
}

.center h1,
.center h2,
.center p {
	margin-left: auto;
	margin-right: auto;
}

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

.audit-form-section {
	background: rgba(9, 10, 18, 0.45);
}

.audit-form {
	background: rgba(23, 27, 46, 0.8);
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	margin-top: 1.25rem;
	padding: 1.1rem;
}

.form-grid {
	display: grid;
	gap: 1rem;
}

.field {
	margin: 0 0 1rem;
}

.field label,
.fieldset legend {
	color: var(--figsite-white);
	display: block;
	font-weight: 800;
	margin-bottom: 0.4rem;
}

.field-help,
.microcopy,
.field-error {
	color: var(--figsite-muted);
	display: block;
	font-size: 0.92rem;
	margin-top: 0.35rem;
}

.field-error {
	color: #fecaca;
	font-weight: 700;
}

[aria-invalid="true"] {
	border-color: #fecaca;
}

.fieldset {
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	margin: 0 0 1rem;
	padding: 1rem;
}

.fieldset label,
.consent-field label {
	align-items: flex-start;
	display: flex;
	gap: 0.65rem;
	margin: 0.5rem 0;
}

.fieldset input,
.consent-field input {
	flex: 0 0 auto;
	margin-top: 0.28rem;
	min-height: auto;
	width: auto;
}

.honeypot {
	height: 1px;
	left: -10000px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.notice {
	border-radius: var(--radius);
	margin-bottom: 1rem;
	padding: 1rem;
}

.notice p:last-child,
.notice ul:last-child {
	margin-bottom: 0;
}

.notice-success {
	background: rgba(34, 211, 238, 0.12);
	border: 1px solid rgba(34, 211, 238, 0.42);
}

.notice-error {
	background: rgba(248, 113, 113, 0.12);
	border: 1px solid rgba(248, 113, 113, 0.42);
}

.site-footer {
	background: #070810;
	border-top: 1px solid var(--figsite-border);
	padding: 3rem 0 1.25rem;
}

.site-footer p,
.footer-menu a {
	color: var(--figsite-muted);
}

.footer-grid {
	display: grid;
	gap: 1.5rem;
}

.footer-heading {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.footer-logo {
	margin-bottom: 1rem;
}

.footer-bottom {
	border-top: 1px solid var(--figsite-border);
	color: var(--figsite-muted);
	margin-top: 2rem;
	padding-top: 1rem;
}

.archive-header {
	margin-bottom: 2rem;
	max-width: 760px;
}

.post-list {
	display: grid;
	gap: 1rem;
}

.post-thumbnail {
	background: rgba(9, 10, 18, 0.5);
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	display: block;
	margin-bottom: 1rem;
	overflow: hidden;
}

.post-thumbnail img {
	aspect-ratio: 16 / 9;
	display: block;
	object-fit: cover;
	width: 100%;
}

.post-meta {
	color: var(--figsite-muted);
	font-size: 0.92rem;
}

.entry-content {
	color: var(--figsite-soft-white);
}

.entry-content > * {
	max-width: 72ch;
}

.text-link {
	font-weight: 800;
}

.archive-cta,
.empty-content,
.insights-cta {
	background:
		linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(109, 40, 217, 0.16)),
		rgba(23, 27, 46, 0.78);
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	margin-top: 2rem;
	padding: 1.25rem;
}

.insights-hero h1 {
	max-width: 14ch;
}

.topic-grid,
.insight-grid {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

.topic-card,
.insight-card {
	background: rgba(23, 27, 46, 0.76);
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.04);
	color: var(--figsite-soft-white);
	text-decoration: none;
}

.topic-card {
	display: block;
	min-height: 132px;
	padding: 1rem;
}

.topic-card span,
.category-label {
	color: var(--figsite-cyan-soft);
	display: inline-block;
	font-size: 0.76rem;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
}

.topic-card strong {
	color: var(--figsite-white);
	display: block;
	font-size: 1.1rem;
	line-height: 1.2;
	margin-top: 0.75rem;
}

.topic-card:hover,
.insight-card:hover {
	border-color: rgba(103, 232, 249, 0.48);
}

.insight-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.insight-card-media {
	background: rgba(9, 10, 18, 0.68);
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.insight-card-media img,
.single-featured-image img {
	aspect-ratio: 16 / 9;
	display: block;
	object-fit: cover;
	width: 100%;
}

.insight-card-placeholder {
	align-items: center;
	aspect-ratio: 16 / 9;
	background:
		linear-gradient(rgba(103, 232, 249, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(103, 232, 249, 0.08) 1px, transparent 1px),
		rgba(9, 10, 18, 0.72);
	background-size: 32px 32px;
	color: var(--figsite-muted);
	display: flex;
	font-weight: 800;
	justify-content: center;
	padding: 1rem;
	text-align: center;
}

.insight-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.15rem;
}

.insight-card-title {
	font-size: clamp(1.25rem, 2.6vw, 1.7rem);
	margin: 0.55rem 0 0.55rem;
}

.insight-card-title a {
	color: var(--figsite-white);
	text-decoration: none;
}

.insight-card-excerpt {
	color: var(--figsite-muted);
	margin-bottom: 1rem;
}

.insight-card .text-link {
	margin-top: auto;
}

.single-insight {
	margin: 0 auto;
	max-width: 820px;
}

.single-insight-header {
	margin-bottom: 1.5rem;
}

.single-insight-header h1 {
	max-width: 13ch;
}

.single-featured-image {
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	margin: 0 0 2rem;
	overflow: hidden;
}

.single-insight-content {
	font-size: 1.06rem;
}

.single-insight-content > * {
	margin-left: auto;
	margin-right: auto;
	max-width: 72ch;
}

.single-insight-content h2,
.single-insight-content h3 {
	margin-top: 2rem;
}

.related-insights {
	margin-top: 2rem;
}

.related-insights h2 {
	font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.insight-grid.compact .insight-card-title {
	font-size: 1.15rem;
}

.empty-content .search-form {
	margin-top: 1.25rem;
}

.prose h2 {
	font-size: clamp(1.35rem, 2.8vw, 2rem);
	margin-top: 2rem;
}

.prose h2:first-child {
	margin-top: 0;
}

.search-wrap {
	margin: 2rem auto 0;
	max-width: 560px;
}

.search-form {
	display: flex;
	gap: 0.6rem;
}

.search-field {
	min-width: 0;
}

.search-submit {
	background: var(--figsite-cyan);
	border: 0;
	border-radius: var(--radius);
	color: #031018;
	font-weight: 800;
	min-height: 48px;
	padding: 0 1rem;
}

.search-submit:focus-visible,
.search-submit:hover {
	background: var(--figsite-cyan-bright);
}

.nav-links,
.post-navigation .nav-links,
.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}

.nav-links a,
.nav-links .page-numbers,
.post-navigation a {
	align-items: center;
	background: rgba(248, 250, 252, 0.06);
	border: 1px solid var(--figsite-border);
	border-radius: var(--radius);
	color: var(--figsite-soft-white);
	display: inline-flex;
	min-height: 44px;
	padding: 0.65rem 0.85rem;
	text-decoration: none;
}

.nav-links a:hover,
.post-navigation a:hover,
.page-numbers.current {
	border-color: rgba(103, 232, 249, 0.48);
	color: var(--figsite-white);
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.skip-link:focus {
	background: var(--figsite-cyan);
	border-radius: var(--radius);
	clip: auto !important;
	color: #031018;
	display: block;
	font-weight: 800;
	height: auto;
	left: 1rem;
	padding: 0.75rem 1rem;
	top: 1rem;
	width: auto;
	z-index: 100000;
}

@media (min-width: 480px) {
	.button-row {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.button-row .button {
		width: auto;
	}
}

@media (max-width: 479px) {
	.section {
		padding: 3.75rem 0;
	}

	h1 {
		font-size: 2.25rem;
		max-width: 100%;
	}

	.search-form {
		flex-direction: column;
	}

	.search-submit {
		width: 100%;
	}

	.button-row .button,
	.header-cta {
		width: 100%;
	}
}

@media (min-width: 768px) {
	.section {
		padding: 6rem 0;
	}

	.hero-grid,
	.founding-hero-grid,
	.thank-you-hero-grid,
	.split {
		align-items: center;
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
	}

	.form-grid,
	.content-grid.two,
	.card-grid.three,
	.demo-board,
	.lead-leak-card-grid,
	.lead-leak-bullet-grid,
	.founding-card-grid,
	.thank-you-resource-grid,
	.topic-grid,
	.insight-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-grid {
		grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
	}

	.audit-form {
		padding: 1.5rem;
	}

	.archive-cta,
	.empty-content {
		padding: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.menu-toggle {
		display: none;
	}

	.primary-navigation {
		align-items: center;
		background: transparent;
		border: 0;
		display: flex;
		gap: 1.25rem;
		padding: 0;
		position: static;
		max-height: none;
		overflow: visible;
	}

	.primary-menu {
		align-items: center;
		display: flex;
		gap: 1.25rem;
	}

	.primary-menu a {
		padding: 0.4rem 0;
	}

	.header-cta {
		margin-top: 0;
		width: auto;
		max-width: 18rem;
	}

	.card-grid.three,
	.content-grid,
	.demo-board,
	.lead-leak-card-grid,
	.founding-card-grid,
	.thank-you-resource-grid,
	.topic-grid,
	.insight-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.video-audit-panel {
		grid-template-columns: minmax(0, 1fr) auto;
		padding: 1.5rem;
	}

	.process-steps {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.founding-process {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.founding-process li {
		grid-template-columns: 1fr;
	}

	.lead-flow {
		min-height: 100%;
	}
}

@media (min-width: 1200px) {
	.container {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
