/* ==========================================================================
   InternObject — brand design system
   Static site: Bootstrap grid + this stylesheet. No framework runtime.
   ========================================================================== */

:root {
	--brand-900: #17133A;
	--brand-800: #1F1A4D;
	--brand: #2B2660;
	--brand-600: #413A85;
	--accent: #4F7DF3;
	--accent-600: #3A66DA;
	/* accent reserved for small text — clears WCAG AA on white */
	--accent-text: #2F58C4;
	--accent-soft: #EDF2FE;
	--accent-glow: rgba(79, 125, 243, 0.14);

	--text: #16182B;
	--text-muted: #5B6178;
	--text-subtle: #666C80;
	--line: #E6E9F3;
	--line-strong: #D5DAEA;

	--surface: #FFFFFF;
	--surface-soft: #F7F9FF;
	--surface-tint: #F2F5FE;

	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 22px;
	--radius-pill: 999px;

	--shadow-xs: 0 1px 2px rgba(22, 24, 43, 0.05);
	--shadow-sm: 0 4px 14px rgba(22, 24, 43, 0.06);
	--shadow-md: 0 14px 34px rgba(22, 24, 43, 0.09);

	--section-y: 104px;
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------ base ------------------------------------ */

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

html {
	/* Bootstrap 3 sets the root to 10px, which breaks every rem below */
	font-size: 100%;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--surface);
	color: var(--text);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
	color: var(--brand-900);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.18;
	margin: 0;
}

h1 {
	font-size: clamp(2.35rem, 4.6vw, 3.6rem);
	letter-spacing: -0.03em;
}

h2 {
	font-size: clamp(1.9rem, 3.2vw, 2.6rem);
}

h3 {
	font-size: 1.2rem;
	letter-spacing: -0.01em;
}

p {
	margin: 0;
	color: var(--text-muted);
}

a {
	color: var(--accent-600);
	text-decoration: none;
	transition: color 0.2s var(--ease);
}

a:hover,
a:focus {
	color: var(--brand);
}

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

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 6px;
}

.io-container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -60px;
	z-index: 200;
	background: var(--brand);
	color: #fff;
	padding: 10px 18px;
	border-radius: var(--radius-sm);
	font-weight: 500;
	transition: top 0.2s var(--ease);
}

.skip-link:focus {
	top: 16px;
	color: #fff;
}

/* ------------------------------ header ---------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-stuck {
	border-bottom-color: var(--line);
	box-shadow: var(--shadow-xs);
}

.site-header .io-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 76px;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.brand-mark img {
	height: 42px;
	width: auto;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
}

.primary-nav a {
	display: inline-block;
	padding: 9px 14px;
	border-radius: var(--radius-sm);
	color: var(--text);
	font-size: 15px;
	font-weight: 500;
	transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a.is-active {
	background: var(--accent-soft);
	color: var(--brand);
}

/* the in-menu CTA is a mobile-only duplicate of .header-cta */
.primary-nav .nav-cta-mobile {
	display: none;
}

.header-cta {
	flex: 0 0 auto;
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius-sm);
	background: #fff;
	color: var(--brand);
	font-size: 18px;
	cursor: pointer;
}

/* ------------------------------ buttons --------------------------------- */

.btn-io {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 24px;
	border-radius: var(--radius-pill);
	border: 1px solid transparent;
	font-size: 15px;
	font-weight: 500;
	font-family: inherit;
	letter-spacing: -0.01em;
	cursor: pointer;
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
		background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn-io i {
	font-size: 13px;
}

.btn-primary-io {
	background: var(--brand);
	border-color: var(--brand);
	color: #fff;
	box-shadow: 0 8px 20px rgba(43, 38, 96, 0.18);
}

.btn-primary-io:hover,
.btn-primary-io:focus {
	background: var(--brand-800);
	border-color: var(--brand-800);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(43, 38, 96, 0.24);
}

.btn-secondary-io {
	background: #fff;
	border-color: var(--line-strong);
	color: var(--brand);
}

.btn-secondary-io:hover,
.btn-secondary-io:focus {
	border-color: var(--brand);
	color: var(--brand);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.btn-ghost-io {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff;
}

.btn-ghost-io:hover,
.btn-ghost-io:focus {
	background: #fff;
	border-color: #fff;
	color: var(--brand);
	transform: translateY(-2px);
}

.btn-light-io {
	background: #fff;
	border-color: #fff;
	color: var(--brand);
}

.btn-light-io:hover,
.btn-light-io:focus {
	color: var(--brand-800);
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(15, 16, 40, 0.22);
}

.btn-sm-io {
	padding: 10px 18px;
	font-size: 14px;
}

/* ------------------------------ sections -------------------------------- */

.section {
	padding: var(--section-y) 0;
	position: relative;
}

section[id] {
	scroll-margin-top: 86px;
}

.section-soft {
	background: var(--surface-soft);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.section-head {
	max-width: 720px;
	margin: 0 auto 56px;
	text-align: center;
}

.eyebrow {
	display: inline-block;
	color: var(--accent-text);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.section-head p {
	margin-top: 16px;
	font-size: 1.06rem;
}

.grid-flex {
	display: flex;
	flex-wrap: wrap;
	margin-left: -12px;
	margin-right: -12px;
}

.grid-flex.is-centered {
	justify-content: center;
}

.grid-flex > [class*="col-"] {
	display: flex;
	padding-left: 12px;
	padding-right: 12px;
	margin-bottom: 24px;
	float: none;
}

/* ------------------------------ hero ------------------------------------ */

.hero {
	position: relative;
	padding: 92px 0 96px;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: -220px -10% auto 40%;
	height: 620px;
	background: radial-gradient(circle at 50% 50%, var(--accent-glow), rgba(255, 255, 255, 0) 68%);
	pointer-events: none;
}

.hero .io-container {
	position: relative;
	display: flex;
	align-items: center;
	gap: 56px;
}

.hero-copy {
	flex: 1 1 52%;
	max-width: 620px;
}

.hero-visual {
	flex: 1 1 48%;
	min-width: 0;
}

.hero-lead {
	margin-top: 22px;
	font-size: 1.14rem;
	line-height: 1.7;
	max-width: 540px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 26px;
	margin-top: 40px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}

.hero-trust li {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--text-subtle);
	font-size: 14px;
	font-weight: 500;
}

.hero-trust i {
	color: var(--accent);
	font-size: 12px;
}

.hero-visual img {
	width: 100%;
	border-radius: var(--radius-lg);
	animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* ------------------------------ cards ----------------------------------- */

.card-io {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 28px;
	transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
		border-color 0.28s var(--ease);
}

.card-io:hover {
	transform: translateY(-4px);
	border-color: var(--line-strong);
	box-shadow: var(--shadow-md);
}

.card-io h3 {
	margin-bottom: 10px;
}

.card-io p {
	font-size: 15px;
	line-height: 1.68;
}

.card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	border-radius: 14px;
	background: var(--accent-soft);
	color: var(--brand);
	font-size: 19px;
}

/* industries */

.industry-card {
	align-items: center;
	text-align: center;
	padding: 26px 18px;
}

.industry-card .card-icon {
	margin-bottom: 14px;
}

.industry-card h3 {
	font-size: 1rem;
	margin-bottom: 0;
}

/* ------------------------------ case studies ---------------------------- */

.case-card {
	padding: 0;
	overflow: hidden;
}

.case-media {
	background: var(--surface-tint);
	border-bottom: 1px solid var(--line);
}

.case-media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.case-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 26px 26px 28px;
}

.case-tag {
	display: inline-block;
	align-self: flex-start;
	padding: 5px 12px;
	margin-bottom: 14px;
	border-radius: var(--radius-pill);
	background: var(--accent-soft);
	color: var(--brand);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.case-body h3 {
	margin-bottom: 18px;
}

.case-list dt {
	display: block;
	color: var(--text-subtle);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.case-list dd {
	margin: 0 0 14px;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.62;
}

.case-list dd:last-child {
	margin-bottom: 0;
}

.case-outcome {
	color: var(--brand-900) !important;
	font-weight: 500;
}

/* ------------------------------ automation flow -------------------------- */

.flow-panel {
	position: relative;
	padding: 52px 44px 34px;
	background: linear-gradient(180deg, var(--surface-soft) 0%, #fff 72%);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.flow-panel::before {
	content: "";
	position: absolute;
	inset: -180px -10% auto 55%;
	height: 420px;
	background: radial-gradient(circle at 50% 50%, var(--accent-glow), rgba(255, 255, 255, 0) 70%);
	pointer-events: none;
}

.flow-track {
	position: relative;
	display: flex;
}

.flow-step {
	position: relative;
	flex: 1 1 0;
	padding: 0 14px;
	text-align: center;
}

/* connector rail + travelling pulse between consecutive steps */
.flow-step:not(:last-child)::before,
.flow-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 27px;
	left: calc(50% + 40px);
	width: calc(100% - 80px);
	height: 2px;
	border-radius: 2px;
}

.flow-step:not(:last-child)::before {
	background: var(--line-strong);
}

.flow-step:not(:last-child)::after {
	background-image: linear-gradient(90deg, rgba(79, 125, 243, 0), var(--accent), rgba(79, 125, 243, 0));
	background-repeat: no-repeat;
	background-size: 50% 100%;
	background-position: -60% 0;
	opacity: 0;
	animation: flowPulseX 6.4s linear infinite;
}

.flow-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 20px;
	border-radius: 18px;
	background-color: var(--accent-soft);
	color: var(--brand);
	font-size: 20px;
	animation: flowNodeOn 6.4s var(--ease) infinite;
}

.flow-step h3 {
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.flow-step p {
	font-size: 14.5px;
	line-height: 1.6;
}

.flow-step:nth-child(1) .flow-icon { animation-delay: 0s; }
.flow-step:nth-child(2) .flow-icon { animation-delay: 1.4s; }
.flow-step:nth-child(3) .flow-icon { animation-delay: 2.8s; }
.flow-step:nth-child(4) .flow-icon { animation-delay: 4.2s; }

.flow-step:nth-child(1)::after { animation-delay: 0.55s; }
.flow-step:nth-child(2)::after { animation-delay: 1.95s; }
.flow-step:nth-child(3)::after { animation-delay: 3.35s; }

/* only animate while the panel is on screen */
.flow-panel .flow-icon,
.flow-panel .flow-step::after {
	animation-play-state: paused;
}

.flow-panel.is-running .flow-icon,
.flow-panel.is-running .flow-step::after {
	animation-play-state: running;
}

@keyframes flowNodeOn {
	0%,
	3% {
		transform: none;
		background-color: var(--accent-soft);
		color: var(--brand);
		box-shadow: 0 0 0 0 var(--accent-glow);
	}
	9% {
		transform: translateY(-3px) scale(1.06);
		background-color: var(--brand);
		color: #fff;
		box-shadow: 0 0 0 10px var(--accent-glow);
	}
	20% {
		transform: none;
		background-color: var(--brand);
		color: #fff;
		box-shadow: 0 0 0 0 rgba(79, 125, 243, 0);
	}
	30%,
	100% {
		background-color: var(--accent-soft);
		color: var(--brand);
	}
}

@keyframes flowPulseX {
	0% {
		background-position: -60% 0;
		opacity: 0;
	}
	4% {
		opacity: 1;
	}
	17% {
		background-position: 160% 0;
		opacity: 1;
	}
	21%,
	100% {
		background-position: 160% 0;
		opacity: 0;
	}
}

@keyframes flowPulseY {
	0% {
		background-position: 0 -60%;
		opacity: 0;
	}
	4% {
		opacity: 1;
	}
	17% {
		background-position: 0 160%;
		opacity: 1;
	}
	21%,
	100% {
		background-position: 0 160%;
		opacity: 0;
	}
}

.flow-outcomes {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 32px;
	justify-content: center;
	margin-top: 40px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}

.flow-outcomes li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-muted);
	font-size: 14.5px;
	font-weight: 500;
}

.flow-outcomes i {
	color: var(--accent-600);
	font-size: 13px;
}

/* ------------------------------ process --------------------------------- */

.process-track {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.process-step {
	flex: 1 1 180px;
	position: relative;
	padding: 26px 22px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.process-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.process-step .step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 16px;
	border-radius: var(--radius-pill);
	background: var(--brand);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.process-step h3 {
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.process-step p {
	font-size: 14.5px;
	line-height: 1.6;
}

/* ------------------------------ cta band -------------------------------- */

.cta-band {
	position: relative;
	padding: 84px 0;
	background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand) 52%, var(--brand-600) 100%);
	color: #fff;
	overflow: hidden;
}

.cta-band::after {
	content: "";
	position: absolute;
	inset: auto -8% -60% 55%;
	height: 420px;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 70%);
	pointer-events: none;
}

.cta-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.cta-inner h2 {
	color: #fff;
	max-width: 620px;
}

.cta-inner p {
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.82);
	max-width: 560px;
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* ------------------------------ contact --------------------------------- */

.contact-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.contact-card {
	flex: 1 1 260px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 28px 26px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-card:hover {
	border-color: var(--line-strong);
	box-shadow: var(--shadow-sm);
}

.contact-card .card-icon {
	width: 42px;
	height: 42px;
	font-size: 17px;
	margin-bottom: 14px;
}

.contact-card h3 {
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--text-subtle);
	font-weight: 600;
}

.contact-card p,
.contact-card a {
	font-size: 16px;
	color: var(--brand-900);
	font-weight: 500;
	line-height: 1.55;
}

.contact-card a:hover {
	color: var(--accent-600);
}

.contact-note {
	margin-top: 32px;
	padding: 22px 26px;
	background: var(--surface-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-size: 15px;
}

/* ------------------------------ footer ---------------------------------- */

.site-footer {
	padding: 68px 0 28px;
	background: var(--surface);
	border-top: 1px solid var(--line);
}

.footer-top {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
}

.footer-brand {
	flex: 1 1 300px;
	max-width: 340px;
}

.footer-brand img {
	height: 40px;
	width: auto;
	margin-bottom: 18px;
}

.footer-brand p {
	font-size: 15px;
}

.footer-cols {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
}

.footer-col h4 {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-subtle);
	margin-bottom: 16px;
}

.footer-col li + li {
	margin-top: 10px;
}

.footer-col a,
.footer-col p {
	font-size: 15px;
	color: var(--text-muted);
}

.footer-col a:hover {
	color: var(--brand);
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 52px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
}

.footer-bottom p {
	font-size: 14px;
	color: var(--text-subtle);
}

/* ------------------------------ back to top ----------------------------- */

.to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 90;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	color: var(--brand);
	font-size: 16px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
		visibility 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.to-top:hover {
	box-shadow: var(--shadow-md);
	color: var(--brand-800);
}

/* ------------------------------ reveal ---------------------------------- */

/* hidden only when scripting is available, so content never depends on JS */
.js .reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
	will-change: opacity, transform;
}

.js .reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}

	.js .reveal {
		opacity: 1;
		transform: none;
	}

	/* looping animations are switched off entirely, not just shortened */
	.hero-visual img,
	.flow-icon,
	.flow-step::after {
		animation: none !important;
	}

	.flow-step::after {
		display: none;
	}
}

/* ------------------------------ responsive ------------------------------ */

@media (max-width: 991px) {
	:root {
		--section-y: 76px;
	}

	.hero {
		padding: 64px 0 72px;
	}

	.hero .io-container {
		flex-direction: column;
		gap: 44px;
	}

	.hero-copy,
	.hero-visual {
		flex: 1 1 100%;
		max-width: 100%;
	}

	.hero-lead {
		max-width: 100%;
	}

	.nav-toggle {
		display: inline-flex;
		order: 3;
	}

	.header-cta {
		display: none;
	}

	.primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		margin: 0;
		padding: 12px 20px 20px;
		background: #fff;
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow-md);
		display: none;
	}

	.primary-nav.is-open {
		display: flex;
	}

	.primary-nav a {
		padding: 12px 14px;
		font-size: 16px;
	}

	.primary-nav .nav-cta-mobile {
		display: block;
		margin-top: 8px;
		background: var(--brand);
		color: #fff;
		text-align: center;
	}

	.primary-nav .nav-cta-mobile:hover,
	.primary-nav .nav-cta-mobile:focus {
		background: var(--brand-800);
		color: #fff;
	}

	.cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	/* automation flow becomes a vertical timeline */
	.flow-panel {
		padding: 36px 24px 26px;
	}

	.flow-track {
		flex-direction: column;
	}

	.flow-step {
		display: flex;
		gap: 18px;
		padding: 0 0 28px;
		text-align: left;
	}

	.flow-icon {
		flex: 0 0 auto;
		margin-bottom: 0;
	}

	.flow-step:not(:last-child)::before,
	.flow-step:not(:last-child)::after {
		top: 64px;
		left: 27px;
		width: 2px;
		height: calc(100% - 64px);
	}

	.flow-step:not(:last-child)::after {
		background-image: linear-gradient(180deg, rgba(79, 125, 243, 0), var(--accent), rgba(79, 125, 243, 0));
		background-size: 100% 50%;
		background-position: 0 -60%;
		animation-name: flowPulseY;
	}

	.flow-outcomes {
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 16px;
	}

	.section-head {
		margin-bottom: 40px;
	}

	.card-io {
		padding: 26px 22px;
	}

	.footer-cols {
		gap: 32px;
	}

	.hero-actions .btn-io {
		width: 100%;
	}
}
