* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--navy: #1B2E71;
	--teal: #23BCB5;
	--light-navy: #E8EBF5;
	--light-teal: #E0F7F6;
	--dark: #111827;
	--gray: #6B7280;
	--white: #FFFFFF;
	--offwhite: #F9FAFB;
	--border: #E5E7EB;
	--shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
	--shadow-soft: 0 8px 24px rgba(17, 24, 39, 0.06);
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.7;
	color: var(--dark);
	background: var(--white);
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at top right, rgba(224, 247, 246, 0.35), transparent 30%);
	z-index: -1;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

button,
a {
	transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
}

.skip-to-content {
	position: absolute;
	top: -120px;
	left: 16px;
	z-index: 1000;
	background: var(--navy);
	color: var(--white);
	padding: 12px 18px;
	border-radius: 999px;
}

.skip-to-content:focus {
	top: 16px;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
}

.nav-shell,
.section-shell {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.nav-shell {
	height: 92px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.brand-logo,
.footer-logo {
	width: 120px;
	height: auto;
	object-fit: contain;
}

.footer-logo {
	background: transparent;
	padding: 0;
	box-shadow: none;
}

.brand-copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13px;
	color: var(--gray);
}

.brand-copy strong {
	font-size: 18px;
	color: var(--navy);
	line-height: 1.1;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 16px;
	font-weight: 500;
	color: var(--gray);
}

.desktop-nav a:hover {
	color: var(--navy);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 8px;
	font-weight: 600;
	border: 1px solid transparent;
	white-space: nowrap;
	max-width: 100%;
}

.btn:hover,
.tab-button:hover,
.toggle-button:hover,
.doc-card:hover,
.compliance-card:hover,
.pricing-card:hover,
.benefit-card:hover,
.info-card:hover,
.testimonial-card:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--navy);
	color: var(--white);
	box-shadow: 0 10px 22px rgba(27, 46, 113, 0.18);
}

.btn-primary:hover {
	background: var(--teal);
	color: var(--white);
}

.btn-primary--light {
	background: var(--teal);
	color: var(--white);
}

.btn-primary--light:hover {
	background: var(--white);
	color: var(--navy);
}

.btn-ghost {
	background: transparent;
	color: var(--navy);
	border-color: var(--border);
}

.btn-ghost:hover {
	border-color: var(--navy);
	background: rgba(27, 46, 113, 0.04);
}

.btn-ghost--light {
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.32);
}

.btn-ghost--light:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
	height: 56px;
	padding: 0 26px;
}

.hamburger {
	display: none;
	width: 48px;
	height: 48px;
	border: 1px solid var(--border);
	background: var(--white);
	border-radius: 10px;
	padding: 12px;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
}

.hamburger span {
	display: block;
	height: 2px;
	background: var(--navy);
	border-radius: 999px;
}

.mobile-nav {
	position: fixed;
	top: 92px;
	left: 0;
	bottom: 0;
	right: auto;
	width: min(86vw, 340px);
	background: var(--white);
	padding: 18px 20px 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	border-top: 1px solid var(--border);
	border-right: 1px solid var(--border);
	box-shadow: 18px 0 40px rgba(17, 24, 39, 0.12);
	/* slide-in from left; hidden by default via transform */
	transform: translateX(-100%);
	transition: transform 280ms ease;
	z-index: 110;
	height: calc(100vh - 92px);
	max-height: calc(100vh - 92px);
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
	transform: translateX(0);
}

/* overlay behind the mobile nav */
.mobile-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.45);
	opacity: 0;
	visibility: hidden;
	transition: opacity 280ms ease, visibility 280ms ease;
	z-index: 100;
}

.mobile-nav-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

body.no-scroll {
	overflow: hidden;
}

.mobile-nav-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border);
	margin-bottom: 6px;
	color: var(--navy);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.mobile-nav-close {
	width: 40px;
	height: 40px;
	border: 1px solid var(--border);
	border-radius: 50%;
	background: var(--white);
	color: var(--navy);
	font-size: 26px;
	line-height: 1;
	display: grid;
	place-items: center;
	padding: 0;
}

.mobile-nav-close:hover {
	border-color: var(--navy);
	background: rgba(27, 46, 113, 0.04);
}

.mobile-nav[hidden] {
	display: none !important;
}

.mobile-nav a {
	font-size: 17px;
	font-weight: 600;
	color: var(--navy);
}

.mobile-nav-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 6px;
}

.section {
	padding: 120px 0;
}

.section--hero {
	padding-top: 150px;
	padding-bottom: 110px;
}

.section--soft {
	background: var(--offwhite);
}

.section--navy {
	background: var(--navy);
	color: var(--white);
}

.section--compliance {
	background: var(--light-teal);
}

.section--final-cta {
	background: var(--navy);
	color: var(--white);
	padding: 140px 0;
}

.hero-shell {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 64px;
	align-items: center;
}

/* When the hero visual is removed, collapse to a single column */
.hero-shell.hero-shell--no-visual {
	grid-template-columns: 1fr;
}

.hero-copy h1 {
	font-size: clamp(52px, 7vw, 84px);
	line-height: 0.98;
	letter-spacing: -0.04em;
	color: var(--dark);
	max-width: 11ch;
	margin-top: 18px;
}

.hero-subtitle {
	font-size: 20px;
	color: var(--gray);
	max-width: 540px;
	margin-top: 24px;
}

.hero-proof,
.microcopy,
.final-legal {
	font-size: 14px;
	color: var(--gray);
}

.microcopy--strong {
	color: var(--navy);
	font-weight: 600;
}

.cta-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.cta-row--centered {
	justify-content: center;
}

.trust-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--navy);
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
}

.trust-pill svg {
	width: 18px;
	height: 18px;
	color: var(--teal);
}

.hero-visual {
	position: relative;
	padding: 150px 20px 110px;
	min-height: 660px;
	max-width: 640px;
	width: 100%;
	margin-inline: auto;
}

.dashboard-card,
.mock-card,
.feature-panel,
.doc-card,
.compliance-card,
.pricing-card,
.accelerator-pricing-card,
.testimonial-card,
.info-card,
.benefit-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: var(--shadow-soft);
}

.dashboard-card {
	padding: 24px;
	position: relative;
	animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.dashboard-head,
.progress-meta,
.dashboard-foot,
.feature-copy,
.feature-visual,
.section-heading,
.footer-grid > div,
.section-cta,
.pricing-card,
.accelerator-pricing-card,
.testimonial-card,
.info-card,
.benefit-card,
.compliance-card,
.doc-card {
	display: flex;
	flex-direction: column;
}

.dashboard-head {
	gap: 12px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--border);
}

.dashboard-head h2 {
	font-size: 22px;
	line-height: 1.2;
	color: var(--dark);
}

.eyebrow,
.section-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.section-label {
	color: var(--teal);
}

.section-label--teal {
	color: var(--teal);
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	border: 1px solid var(--border);
}

.badge--teal {
	background: rgba(35, 188, 181, 0.12);
	color: var(--navy);
	border-color: rgba(35, 188, 181, 0.25);
}

.badge--outline {
	background: transparent;
	color: var(--navy);
}

.progress-block {
	padding: 18px 0 22px;
}

.progress-meta {
	gap: 4px;
	font-size: 14px;
	color: var(--gray);
	margin-bottom: 12px;
}

.progress-meta strong {
	color: var(--dark);
}

.progress-track {
	height: 10px;
	background: var(--light-navy);
	border-radius: 999px;
	overflow: hidden;
}

.progress-track span {
	display: block;
	height: 100%;
	width: 80%;
	background: linear-gradient(90deg, var(--navy), var(--teal));
	border-radius: inherit;
}

.document-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.document-row {
	display: grid;
	grid-template-columns: 24px 1fr auto;
	gap: 10px;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
	font-size: 14px;
}

.document-row em {
	font-style: normal;
	color: var(--gray);
}

.document-row.is-signed .doc-mark,
.document-row.is-signed em {
	color: var(--teal);
}

.document-row.is-pending .doc-mark {
	color: var(--navy);
}

.dashboard-foot {
	padding-top: 18px;
	align-items: flex-start;
}

.floating-card {
	position: absolute;
	z-index: 2;
	padding: 14px 16px;
	border-radius: 14px;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
	background: var(--white);
	animation: floatCard 4s ease-in-out infinite;
}

.floating-card--left {
	top: 18px;
	left: 20px;
	background: var(--navy);
	color: var(--white);
	width: 180px;
}

.floating-card--right {
	right: 0;
	bottom: -56px;
	width: 210px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.floating-card span {
	display: block;
	font-size: 13px;
	color: inherit;
	opacity: 0.9;
}

.equity-ring {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: conic-gradient(var(--navy) 0 62%, var(--teal) 62% 100%);
	position: relative;
}

.equity-ring::after {
	content: '';
	position: absolute;
	inset: 11px;
	background: var(--white);
	border-radius: 50%;
}

.trust-bar {
	background: var(--navy);
	color: var(--white);
	padding: 20px 0;
	overflow: hidden;
}

.trust-marquee {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 0 24px;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
}

.separator {
	width: 1px;
	height: 20px;
	background: var(--teal);
	display: inline-block;
}

.section-heading {
	align-items: center;
	text-align: center;
	gap: 16px;
	max-width: 760px;
	margin: 0 auto 52px;
}

.section-heading h2 {
	font-size: clamp(38px, 4.8vw, 56px);
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.section-heading p {
	font-size: 18px;
	color: var(--gray);
}

.section-heading--light p,
.section-heading--light h2 {
	color: var(--white);
}

.problem-grid,
.compliance-grid,
.document-grid,
.testimonial-grid,
.pricing-grid,
.accelerator-grid {
	display: grid;
	gap: 20px;
}

.problem-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.compliance-card,
.doc-card,
.testimonial-card {
	padding: 24px;
	gap: 14px;
}

.icon-box {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--light-teal);
	color: var(--navy);
	display: grid;
	place-items: center;
}

.icon-box svg {
	width: 24px;
	height: 24px;
}

.info-card h3,
.compliance-card h3,
.doc-card h3,
.testimonial-card h3,
.benefit-card h3,
.pricing-card h3,
.accelerator-pricing-card h3,
.feature-copy h3 {
	font-size: 22px;
	line-height: 1.2;
	color: var(--dark);
}

.info-card p,
.compliance-card p,
.doc-card p,
.testimonial-card p,
.benefit-card p,
.feature-copy p,
.pricing-card p,
.accelerator-pricing-card p {
	color: var(--gray);
	font-size: 16px;
}

.stats-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 28px;
	padding: 24px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 16px;
}

.stat-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.stat-item strong,
.count-up {
	font-size: 34px;
	line-height: 1;
	color: var(--navy);
}

.stat-item span {
	font-size: 15px;
	color: var(--gray);
}

.section-cta {
	align-items: center;
	margin-top: 32px;
}

.section-cta,
.cta-row,
.section-cta--light {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.process-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.process-row {
	display: grid;
	grid-template-columns: 120px 1fr 420px;
	gap: 24px;
	align-items: center;
	padding: 22px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

.process-row--reverse {
	grid-template-columns: 120px 1fr 420px;
}

.process-row--reverse .process-number {
	order: 1;
}

.process-row--reverse .process-copy {
	order: 2;
}

.process-row--reverse .mock-card {
	order: 3;
}

.process-number {
	font-size: 96px;
	line-height: 1;
	font-weight: 900;
	color: var(--light-navy);
	letter-spacing: -0.08em;
}

.process-copy h3 {
	font-size: 28px;
	line-height: 1.1;
	margin-bottom: 12px;
}

.mock-card {
	padding: 22px;
	min-height: 220px;
}

.mock-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 14px;
}

.mock-field,
.mock-pill-row span,
.candidate-row span {
	background: var(--light-navy);
	border-radius: 999px;
}

.mock-field {
	height: 18px;
	margin-bottom: 12px;
}

.mock-card--light .mock-field {
	height: 28px;
	display: flex;
	align-items: center;
	padding: 0 12px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 600;
	color: #6A748B;
	background: #E6EAF3;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.mock-field.short {
	width: 72%;
}

.mock-pill-row {
	display: flex;
	gap: 8px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.mock-pill-row span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 14px;
	flex: 1 1 0;
	border-radius: 999px;
	background: rgba(27, 46, 113, 0.08);
	color: var(--navy);
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.mock-card--list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.candidate-row {
	display: grid;
	grid-template-columns: 14px 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
}

.candidate-row span {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--teal);
}

.candidate-row em {
	font-style: normal;
	color: var(--gray);
}

.mock-card--stack {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.stack-item {
	padding: 12px 14px;
	border-radius: 12px;
	background: var(--offwhite);
	border: 1px solid var(--border);
}

.stack-item.active {
	border-color: rgba(35, 188, 181, 0.35);
	background: rgba(35, 188, 181, 0.08);
}

.mock-card--seal {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.seal-circle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 6px solid var(--teal);
	display: grid;
	place-items: center;
	font-weight: 800;
	color: var(--navy);
}

.seal-copy {
	font-size: 15px;
	color: var(--gray);
	text-align: center;
}

.accelerator-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 12px;
}

.benefit-card {
	padding: 26px;
	background: #243A82;
	color: var(--white);
	border-top: 4px solid var(--teal);
	border-color: transparent;
}

.benefit-card h3,
.benefit-card p {
	color: var(--white);
}

.benefit-line {
	width: 52px;
	height: 4px;
	border-radius: 999px;
	background: var(--teal);
	margin-bottom: 14px;
}

.section-cta--light {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.tab-nav,
.toggle-group {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.tab-button,
.toggle-button {
	min-height: 48px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--white);
	font-weight: 600;
	color: var(--navy);
}

.tab-button.is-active,
.toggle-button.is-active {
	background: var(--navy);
	color: var(--white);
	border-color: var(--navy);
}

.tab-panels {
	display: grid;
	gap: 20px;
}

.feature-panel {
	padding: 28px;
	grid-template-columns: 1fr 360px;
	gap: 24px;
	align-items: center;
}

.process-row > *,
.feature-panel > *,
.pricing-card > *,
.accelerator-pricing-card > *,
.doc-card > *,
.compliance-card > *,
.testimonial-card > * {
	min-width: 0;
}

.feature-copy ul,
.accelerator-pricing-card ul {
	padding-left: 18px;
	color: var(--dark);
	margin-top: 12px;
	display: grid;
	gap: 8px;
}

.feature-visual {
	align-items: center;
	justify-content: center;
}

.mini-flow,
.cap-table-card,
.document-stack-visual {
	width: 100%;
	padding: 24px;
	border-radius: 16px;
	background: var(--offwhite);
	border: 1px solid var(--border);
}

.mini-flow-step {
	padding: 12px 14px;
	border-radius: 12px;
	background: var(--white);
	border: 1px solid var(--border);
	margin-bottom: 10px;
	font-size: 14px;
}

.mini-flow-step.is-done {
	border-color: rgba(35, 188, 181, 0.35);
	background: rgba(35, 188, 181, 0.08);
}

.cap-table-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.cap-table-card div {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.cap-table-card strong {
	color: var(--navy);
}

.cap-table-bar {
	height: 14px;
	border-radius: 999px;
	background: var(--light-navy);
	overflow: hidden;
}

.cap-table-bar span {
	display: block;
	width: 55%;
	height: 100%;
	background: linear-gradient(90deg, var(--navy), var(--teal));
}

.document-stack-visual {
	text-align: center;
	display: grid;
	gap: 10px;
	min-height: 220px;
	place-items: center;
	font-weight: 700;
	color: var(--navy);
}

.document-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.doc-card {
	gap: 12px;
}

.doc-card span {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--light-teal);
	color: var(--navy);
	display: grid;
	place-items: center;
	font-weight: 800;
}

.doc-card em {
	font-style: normal;
	font-size: 13px;
	font-weight: 700;
	color: var(--teal);
}

.compliance-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compliance-card {
	min-height: 220px;
}

.pricing-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-card {
	padding: 24px;
	gap: 14px;
}

.pricing-card.is-featured {
	border-color: var(--navy);
	box-shadow: 0 20px 50px rgba(27, 46, 113, 0.12);
}

.pricing-tier {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 800;
	color: var(--teal);
}

.pricing-card h3,
.accelerator-pricing-card h3 {
	font-size: 34px;
	line-height: 1;
	color: var(--navy);
}

.pricing-card h3 span {
	font-size: 18px;
	font-weight: 600;
	color: var(--gray);
}

.accelerator-pricing-card {
	padding: 34px;
	max-width: 760px;
	margin: 0 auto;
	background: var(--navy);
	color: var(--white);
}

.accelerator-pricing-card h3,
.accelerator-pricing-card p,
.accelerator-pricing-card li,
.accelerator-pricing-card .pricing-tier--light {
	color: var(--white);
}

.pricing-tier--light {
	color: var(--teal);
}

.testimonial-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
	gap: 18px;
}

.quote-mark {
	font-size: 60px;
	line-height: 0.6;
	color: var(--teal);
}

.avatar-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.avatar-row span {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--light-navy);
}

.testimonial-note {
	text-align: center;
	margin-top: 20px;
	color: var(--gray);
}

.final-cta-shell {
	text-align: center;
	max-width: 940px;
}

.final-cta-shell h2 {
	font-size: clamp(40px, 5.2vw, 56px);
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.final-cta-shell p {
	font-size: 20px;
	color: #9FB8E8;
	max-width: 720px;
	margin: 18px auto 0;
}

.final-legal {
	margin-top: 22px;
	color: rgba(255, 255, 255, 0.8);
}

.site-footer {
	background: #111827;
	color: rgba(255, 255, 255, 0.86);
	padding: 80px 0 24px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 28px;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-column--brand {
	gap: 12px;
}

.footer-grid h3 {
	color: var(--white);
	margin-bottom: 2px;
}

.footer-grid a,
.footer-grid p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	line-height: 1.5;
}

.footer-grid a {
	display: block;
}

.footer-column p,
.footer-column a {
	margin: 0;
}

.footer-column p + p,
.footer-column a + a,
.footer-column a + p,
.footer-column p + a {
	margin-top: 0;
}

.footer-column--brand .social-row {
	margin-top: 6px;
}

.footer-column--brand p {
	max-width: 260px;
}

.footer-grid a:hover {
	color: var(--teal);
}

.social-row {
	display: flex;
	gap: 12px;
	margin-top: 12px;
}

.social-row a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.16);
	display: grid;
	place-items: center;
}

.social-row svg {
	width: 18px;
	height: 18px;
}

.footer-bottom {
	margin-top: 34px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.72);
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 400ms ease, transform 400ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.count-up {
	display: inline-block;
}

@media (max-width: 1180px) {
	.desktop-nav {
		display: none;
	}

	.hamburger {
		display: inline-flex;
	}

	.hero-shell,
	.process-row,
	.feature-panel,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		min-height: auto;
		padding: 132px 0 90px;
	}

	.process-row,
	.process-row--reverse {
		grid-template-columns: 100px 1fr minmax(280px, 40vw);
	}

	.process-number {
		font-size: 84px;
	}

	.floating-card--left {
		left: 0;
		top: 12px;
	}

	.floating-card--right {
		right: 8px;
		bottom: -10px;
	}

	.problem-grid,
	.compliance-grid,
	.document-grid,
	.testimonial-grid,
	.pricing-grid,
	.accelerator-grid,
	.stats-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.nav-shell,
	.section-shell {
		padding: 0 18px;
	}

	.nav-shell {
		height: 84px;
	}

	.brand-copy {
		display: none;
	}

	.mobile-nav {
		top: 84px;
		width: min(92vw, 320px);
	}

	.section {
		padding: 96px 0;
	}

	.section--hero {
		padding-top: 132px;
	}

	.hero-copy h1 {
		max-width: none;
	}

	.cta-row,
	.section-cta--light {
		justify-content: center;
	}

	.problem-grid,
	.compliance-grid,
	.document-grid,
	.testimonial-grid,
	.pricing-grid,
	.accelerator-grid,
	.stats-strip,
	.process-row,
	.feature-panel {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-column--brand {
		grid-column: 1 / -1;
	}

	.process-number {
		font-size: 72px;
	}

	.trust-marquee {
		justify-content: flex-start;
		overflow-x: auto;
	}

	.stats-strip {
		text-align: center;
	}

	.section-heading {
		margin-bottom: 36px;
	}

	.floating-card--left,
	.floating-card--right {
		position: static;
		margin-bottom: 12px;
		width: auto;
	}

	.hero-visual {
		display: grid;
		gap: 12px;
		padding: 0;
	}
}

@media (max-width: 640px) {
	.section-shell,
	.nav-shell {
		padding: 0 16px;
	}

	.section {
		padding: 88px 0;
	}

	.section--hero {
		padding-top: 122px;
		padding-bottom: 92px;
	}

	.trust-pill {
		font-size: 12px;
		line-height: 1.35;
		padding: 9px 12px;
	}

	.badge {
		max-width: 100%;
	}

	.dashboard-card,
	.mock-card,
	.feature-panel,
	.doc-card,
	.compliance-card,
	.pricing-card,
	.accelerator-pricing-card,
	.testimonial-card,
	.info-card,
	.benefit-card {
		padding: 18px;
	}

	.document-row {
		grid-template-columns: 20px 1fr;
		row-gap: 4px;
	}

	.document-row em {
		grid-column: 2;
	}

	.process-copy h3,
	.info-card h3,
	.compliance-card h3,
	.doc-card h3,
	.testimonial-card h3,
	.benefit-card h3,
	.pricing-card h3,
	.accelerator-pricing-card h3,
	.feature-copy h3 {
		font-size: clamp(24px, 6.4vw, 30px);
	}

	.pricing-card h3 span {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.section {
		padding: 80px 0;
	}

	.hero-copy h1 {
		font-size: clamp(40px, 12vw, 54px);
	}

	.hero-subtitle,
	.section-heading p,
	.final-cta-shell p {
		font-size: 16px;
	}

	.btn {
		width: 100%;
	}

	.cta-row,
	.section-cta,
	.section-cta--light {
		flex-direction: column;
		gap: 10px;
	}

	.mobile-nav a {
		font-size: 18px;
	}

	.process-row,
	.info-card,
	.compliance-card,
	.doc-card,
	.pricing-card,
	.testimonial-card,
	.benefit-card,
	.accelerator-pricing-card {
		padding: 20px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-column--brand {
		grid-column: auto;
	}

	.final-cta-shell {
		text-align: left;
	}
}

/* ── New CSS for founder quote, flow diagram, trust strip, addon note ── */

.founder-quote {
	border-left: 3px solid var(--teal);
	padding: 16px 20px;
	background: var(--light-teal);
	border-radius: 0 12px 12px 0;
	margin: 24px 0;
	max-width: 540px;
	font-style: italic;
	color: var(--dark);
	line-height: 1.8;
}

.founder-quote strong {
	display: block;
	font-style: normal;
	margin-top: 12px;
	color: var(--navy);
	font-weight: 600;
}

.trust-strip {
	background: var(--navy);
	padding: 16px 24px;
	border-radius: 12px;
	margin-top: 28px;
}

.trust-strip-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 20px;
	align-items: center;
	color: var(--white);
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.sep {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--teal);
	display: inline-block;
	margin: 0 4px;
}

.flow-diagram {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin: 48px 0;
	flex-wrap: wrap;
}

.flow-node {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 24px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	min-width: 200px;
}

.flow-node--primary {
	background: var(--navy);
	color: var(--white);
	border: 2px solid var(--navy);
}

.flow-node--brand {
	background: transparent;
	color: var(--navy);
	border: 2px solid var(--navy);
}

.flow-node--secondary {
	background: var(--light-navy);
	color: var(--navy);
	border: 2px solid var(--navy);
}

.flow-icon {
	font-size: 20px;
	display: inline-block;
}

.flow-arrow {
	font-size: 24px;
	color: var(--teal);
	display: none;
}

@media (min-width: 768px) {
	.flow-arrow {
		display: block;
	}
}

.addon-note {
	background: var(--light-navy);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 24px;
	margin-top: 24px;
	text-align: center;
}

.addon-note strong {
	color: var(--navy);
	font-weight: 600;
	display: block;
	margin-bottom: 8px;
}

.addon-note p {
	font-size: 14px;
	color: var(--gray);
	margin: 0;
}

.addon-tiers {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.addon-tiers span {
	background: var(--white);
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--navy);
	border: 1px solid var(--border);
}
