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

:root {
	--av-gradient: linear-gradient(90deg, #e95b9c 0%, #f4a286 48%, #6cc6e9 100%);
	--av-max: 1120px;
	--av-gutter: 1.5rem;
	--av-inset: max(var(--av-gutter), calc((100vw - var(--av-max)) / 2));
	--av-navy: #141b4d;
	--av-ink: #1a1f3c;
	--av-muted: #5c6480;
	--av-base: #f6f5f2;
	--av-line: #e4e2dc;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--av-base);
	color: var(--av-ink);
	font-family: Inter, "Segoe UI", system-ui, sans-serif;
	font-size: 1.0625rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
	color: var(--av-navy);
	font-family: Outfit, "Segoe UI", system-ui, sans-serif;
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.03em;
}

h2 {
	font-size: clamp(1.5rem, 2.4vw, 2.125rem);
}

a {
	color: var(--av-navy);
}

a:hover {
	color: #e95b9c;
}

.av-btn {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: var(--av-navy);
	color: #fff;
	text-decoration: none;
	font-family: Outfit, sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	padding: 0.9rem 1.45rem;
	border: 0;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.av-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(20, 27, 77, 0.16);
}

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

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

.av-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.av-grid-2 {
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem 2rem;
}

.av-split {
	display: grid;
	grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
	gap: 2.5rem 3.5rem;
	align-items: start;
}

.av-split--studio {
	grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
}

.av-split--contact {
	align-items: center;
}

.av-section {
	padding-top: 4.5rem;
	padding-bottom: 7.5rem;
}

.av-muted {
	color: var(--av-muted);
	margin-top: 1rem;
}

.av-insights-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.av-insight-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--av-line);
	border-radius: 16px;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.av-insight-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 12px;
}

.av-insight-card h2,
.av-insight-card h3 {
	font-size: 1.15rem;
	margin: 0;
}

.av-insight-card h2 a,
.av-insight-card h3 a {
	color: inherit;
	text-decoration: none;
}

.av-insight-card h2 a::after,
.av-insight-card h3 a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.av-insight-card time,
.av-insight-card p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--av-muted);
}

.av-insights-index .av-insights-grid {
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.av-insights-index .av-insight-card {
	display: grid;
	grid-template-columns: minmax(16rem, 1.15fr) minmax(0, 1fr);
	align-items: stretch;
	gap: 0;
	padding: 0;
	overflow: hidden;
}

.av-insights-index .av-insight-card img {
	height: 100%;
	min-height: 14rem;
	aspect-ratio: 16 / 10;
	border-radius: 0;
}

.av-insights-index .av-insight-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.7rem;
	padding: 1.6rem 1.85rem 1.6rem 1.75rem;
}

.av-insights-index .av-insight-card h2 {
	font-size: clamp(1.2rem, 1.8vw, 1.45rem);
}

.av-insights-more {
	margin: 1.75rem 0 0;
}

.av-insights-more a {
	font-family: Outfit, sans-serif;
	font-weight: 600;
	text-decoration: none;
}

.av-article {
	padding-top: 4.5rem;
	padding-bottom: 7.5rem;
}

.av-article h1 {
	max-width: 46rem;
	font-size: clamp(1.85rem, 3.2vw, 2.65rem);
}

.av-article time {
	display: block;
	color: var(--av-muted);
	font-size: 0.9rem;
	margin: 0.35rem 0 0;
}

.av-article-hero {
	display: block;
	width: 100%;
	max-width: none;
	aspect-ratio: 16 / 8;
	object-fit: cover;
	object-position: center;
	margin: 1.75rem 0 2.25rem;
	border-radius: 20px;
}

.av-article-body {
	max-width: 48rem;
	font-size: 1.125rem;
	line-height: 1.75;
}

.av-article-body p {
	margin: 0 0 1.2rem;
}

.av-article-body h2 {
	margin: 2.4rem 0 0.85rem;
	font-size: clamp(1.3rem, 2vw, 1.55rem);
}

.av-article-body h3 {
	margin: 1.7rem 0 0.55rem;
}

.av-article-body ul {
	margin: 0 0 1.3rem;
	padding-left: 1.25rem;
}

.av-article .av-contact-band {
	max-width: none;
}

@media (max-width: 960px) {
	.av-grid-4,
	.av-insights-grid {
		grid-template-columns: 1fr 1fr;
	}

	.av-insights-index .av-insights-grid {
		grid-template-columns: 1fr;
	}

	.av-insights-index .av-insight-card {
		grid-template-columns: 1fr;
	}

	.av-insights-index .av-insight-card img {
		min-height: 12rem;
		aspect-ratio: 16 / 8;
	}

	.av-split,
	.av-split--studio,
	.av-split--contact {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.av-grid-4,
	.av-grid-3,
	.av-grid-2,
	.av-insights-grid {
		grid-template-columns: 1fr;
	}
}

html {
	scroll-behavior: smooth;
}

body {
	-webkit-font-smoothing: antialiased;
}

::selection {
	background: #141b4d;
	color: #fff;
}

.av-gradient-bar {
	height: 3px;
	width: 100%;
	background: var(--av-gradient);
}

.av-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(246, 245, 242, 0.86);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(20, 27, 77, 0.08);
	transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.av-header.is-scrolled {
	background: rgba(246, 245, 242, 0.94);
	border-bottom-color: transparent;
	box-shadow: 0 12px 32px rgba(20, 27, 77, 0.08);
}

.av-header-inner,
.av-section,
.av-stack,
.av-faq,
.av-footer-inner {
	box-sizing: border-box;
	width: 100%;
	padding-left: var(--av-inset) !important;
	padding-right: var(--av-inset) !important;
}

.av-section.is-layout-constrained > :where(:not(.alignfull)) {
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.av-section .alignwide {
	max-width: none !important;
}

.av-band,
.av-section.has-surface-background-color {
	background-color: #fff;
}

.av-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
}

.av-header .av-logo {
	display: block;
	height: 52px;
	width: auto;
	max-width: 168px;
}

.av-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.35rem;
	align-items: center;
	font-family: Outfit, sans-serif;
	font-size: 0.92rem;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.av-nav a {
	position: relative;
	color: #141b4d;
	text-decoration: none;
	transition: color 0.2s ease;
}

.av-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.35rem;
	height: 2px;
	background: var(--av-gradient);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s ease;
}

.av-nav a:hover {
	color: #141b4d;
}

.av-nav a:hover::after {
	transform: scaleX(1);
}

.av-nav-cta {
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	background: #141b4d;
	color: #fff !important;
}

.av-nav-cta::after {
	display: none;
}

.av-nav-cta:hover {
	background: #1e2768;
	color: #fff !important;
}

.av-kicker {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	width: 100%;
	max-width: 40rem;
	font-family: Outfit, sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #5c6480;
}

.av-kicker::before {
	content: "";
	width: 2.2rem;
	height: 2px;
	background: var(--av-gradient);
}

.av-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	min-height: min(82vh, 44rem);
	background: #0b1028;
	color: #fff;
	overflow: hidden;
}

.av-hero-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.av-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right bottom;
	filter: saturate(1.08);
}

.av-hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(11, 16, 40, 0.86) 0%,
		rgba(11, 16, 40, 0.48) 38%,
		rgba(11, 16, 40, 0.18) 72%,
		rgba(11, 16, 40, 0.08) 100%
	);
}

.av-hero-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 5.5rem var(--av-inset);
	max-width: none;
	width: 100%;
	margin-left: 0;
}

.av-hero-visual {
	display: none;
}

.av-hero .av-kicker {
	color: rgba(255, 255, 255, 0.78);
}

.av-hero h1 {
	max-width: 16ch;
	margin: 1rem 0 1.1rem;
	color: #fff;
	font-family: Outfit, sans-serif;
	font-weight: 650;
	font-size: clamp(2.2rem, 4.6vw, 3.6rem);
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.av-lede {
	max-width: 38rem;
	font-size: 1.15rem;
	color: #5c6480;
}

.av-hero .av-lede {
	color: rgba(255, 255, 255, 0.86);
	max-width: 36rem;
}

.av-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.av-hero .av-btn {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.av-hero .av-btn-ghost {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.45);
}

.av-hero .av-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.1);
}

.wp-block-button.is-style-outline .wp-block-button__link,
.av-btn-ghost {
	background: transparent;
	color: #141b4d;
	border: 1px solid rgba(20, 27, 77, 0.22);
}

#industries {
	position: relative;
	z-index: 2;
}

.av-stack {
	padding-top: 4.5rem;
	padding-bottom: 5.5rem;
}

.av-stack h2 {
	margin: 0.7rem 0 0.8rem;
	font-family: Outfit, sans-serif;
	letter-spacing: -0.03em;
	color: #141b4d;
}

.av-stack-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1rem;
	margin: 2rem 0 0;
	padding: 0;
}

.av-stack-list li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.7rem;
	padding: 1.2rem 0.6rem 1.1rem;
	background: #fff;
	border: 1px solid #e4e2dc;
	border-radius: 16px;
	font-family: Outfit, sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	color: #141b4d;
	text-align: center;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.av-stack-list li:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(20, 27, 77, 0.1);
}

.av-stack-list img {
	width: 36px;
	height: 36px;
}

.av-band .av-stack-list li {
	background: #f6f5f2;
	border-color: transparent;
}

@media (max-width: 900px) {
	.av-hero {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.av-hero-inner {
		padding: 3.5rem var(--av-inset) 2.5rem;
	}

	.av-stack-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.av-card {
	height: 100%;
	background: #fff;
	border: 1px solid #e4e2dc;
	border-radius: 18px;
	padding: 1.6rem 1.5rem 1.5rem;
	position: relative;
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.av-card:hover {
	transform: translateY(-5px);
	border-color: transparent;
	box-shadow: 0 18px 40px rgba(20, 27, 77, 0.1);
}

.av-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--av-gradient);
	opacity: 0.9;
}

.av-card h3 {
	margin-top: 0.35rem;
	margin-bottom: 0.55rem;
}

.av-offer-card {
	padding: 1.85rem 1.6rem 1.65rem;
}

.av-offer-card p {
	margin: 0;
	color: var(--av-muted);
	font-size: 0.98rem;
}

.av-stat {
	border-top: 1px solid rgba(20, 27, 77, 0.1);
	padding-top: 1.1rem;
}

.av-stat strong {
	display: block;
	font-family: Outfit, sans-serif;
	font-size: 2rem;
	font-weight: 650;
	letter-spacing: -0.03em;
	color: #141b4d;
	line-height: 1.1;
}

.av-stat span {
	color: #5c6480;
	font-size: 0.92rem;
}

.av-step-num {
	font-family: Outfit, sans-serif;
	font-size: 0.8rem;
	font-weight: 650;
	letter-spacing: 0.12em;
	background: var(--av-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.av-contact-list {
	list-style: none;
	margin: 1.75rem 0 0;
	padding: 0;
	display: grid;
	gap: 1.15rem;
}

.av-contact-list li {
	display: grid;
	gap: 0.15rem;
	margin: 0;
	padding: 0;
	color: var(--av-ink);
}

.av-contact-list span {
	font-family: Outfit, sans-serif;
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--av-muted);
}

.av-contact-list strong {
	font-weight: 600;
}

.av-contact-actions {
	margin: 1.75rem 0 0;
}

.av-contact-visual {
	margin: 0;
	border-radius: 20px;
	overflow: hidden;
	background: #141b4d;
	box-shadow: 0 28px 56px rgba(20, 27, 77, 0.14);
}

.av-contact-visual img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.av-contact-band {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.25rem 2rem;
	margin-top: 3.5rem;
	padding: 1.75rem 1.85rem;
	border-radius: 20px;
	background: #fff;
	border: 1px solid var(--av-line);
}

.av-contact-band h2 {
	margin: 0.35rem 0 0.4rem;
	font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.av-contact-band .av-muted {
	margin: 0;
	max-width: 32rem;
}

.av-contact-band p:last-child {
	margin: 0;
}

.av-notice {
	padding: 0.85rem 1rem;
	border-radius: 12px;
	background: #eef9fd;
	color: #141b4d;
	font-size: 0.95rem;
}

.av-notice.is-error {
	background: #fdecef;
}

.av-footer {
	background: #0b1028;
	color: #b7bdd4;
}

.av-footer-inner {
	padding-top: 3.25rem;
	padding-bottom: 2.25rem;
}

.av-footer-top {
	display: grid;
	grid-template-columns: 160px 1fr auto;
	align-items: center;
	gap: 1.5rem 2rem;
}

.av-footer-brand {
	display: flex;
	align-items: center;
}

.av-footer-brand img {
	display: block;
	height: 64px;
	width: auto;
}

.av-footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.35rem 1.5rem;
	font-family: Outfit, sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
}

.av-footer-nav a,
.av-footer a {
	color: #fff;
	text-decoration: none;
}

.av-footer-nav a:hover,
.av-footer a:hover {
	color: #6cc6e9;
}

.av-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	flex-shrink: 0;
}

.av-social:hover {
	border-color: #6cc6e9;
	background: rgba(108, 198, 233, 0.1);
}

.av-social img {
	display: block;
	width: 18px;
	height: 18px;
}

.av-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.85rem;
}

.av-footer-bottom p {
	margin: 0;
	color: #9aa3c2;
}

.av-footer-topics {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.15rem;
	font-size: 0.85rem;
}

.av-footer-topics a {
	color: #9aa3c2;
}

.av-faq {
	padding-top: var(--wp--preset--spacing--70, 3.5rem);
	padding-bottom: var(--wp--preset--spacing--80, 4.5rem);
}

.av-faq h2 {
	font-family: Outfit, sans-serif;
	letter-spacing: -0.03em;
	max-width: 28rem;
}

.av-faq .av-lede {
	max-width: 38rem;
	color: var(--wp--preset--color--muted, #5c6478);
	margin: 1rem 0 0;
}

.av-faq-list {
	margin-top: 2rem;
	border-top: 1px solid #e4e2dc;
}

.av-faq-list details {
	border-bottom: 1px solid #e4e2dc;
}

.av-faq-list summary {
	cursor: pointer;
	list-style: none;
	font-family: Outfit, sans-serif;
	font-size: 1.05rem;
	font-weight: 600;
	padding: 1.15rem 2rem 1.15rem 0;
	position: relative;
}

.av-faq-list summary::-webkit-details-marker {
	display: none;
}

.av-faq-list summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 1.1rem;
	color: #141b4d;
	font-weight: 500;
}

.av-faq-list details[open] summary::after {
	content: "–";
}

.av-faq-list details p {
	margin: 0 0 1.25rem;
	max-width: 40rem;
	color: var(--wp--preset--color--muted, #5c6478);
}

.av-related {
	margin-top: 3.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid #e4e2dc;
}

.av-related h2 {
	font-family: Outfit, sans-serif;
	letter-spacing: -0.03em;
	margin: 0 0 1.25rem;
}

.av-related-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.av-related-list a {
	display: grid;
	gap: 0.75rem;
	color: inherit;
	text-decoration: none;
}

.av-related-list img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 12px;
}

.av-related-list strong {
	font-family: Outfit, sans-serif;
	font-size: 0.98rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

@media (max-width: 781px) {
	.av-related-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 781px) {
	.av-footer-top {
		grid-template-columns: 1fr;
		justify-items: start;
	}

	.av-footer-nav {
		justify-content: flex-start;
	}
}

@media (max-width: 781px) {
	.av-header .av-logo {
		height: 44px;
	}

	.av-nav {
		gap: 0.25rem 0.9rem;
		font-size: 0.82rem;
	}
}

.av-article .wp-block-post-title {
	max-width: 46rem;
	font-family: Outfit, sans-serif;
	letter-spacing: -0.03em;
}

.av-article .wp-block-post-content {
	max-width: 48rem;
}

.av-article .wp-block-post-content p {
	margin: 0 0 1.1rem;
}

.av-article .wp-block-post-content h2 {
	margin: 2.2rem 0 0.8rem;
}

.av-article .wp-block-post-content h3 {
	margin: 1.6rem 0 0.55rem;
}

.av-article .wp-block-post-content ul {
	margin: 0 0 1.2rem;
	padding-left: 1.2rem;
}

.av-article .wp-block-post-featured-image img {
	width: 100%;
	height: auto;
	max-height: 28rem;
	object-fit: cover;
}

li.wp-block-post {
	position: relative;
}

li.wp-block-post .wp-block-post-title a {
	position: static;
	color: inherit;
	text-decoration: none;
}

li.wp-block-post .wp-block-post-title a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 4;
}

.av-reveal:not(.is-in) {
	opacity: 0;
	transform: translateY(18px);
}

.av-reveal.is-in {
	animation: av-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
	animation-delay: var(--av-delay, 0ms);
}

@keyframes av-rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes av-hero-drift {
	from {
		transform: scale(1.08);
	}
	to {
		transform: scale(1.14) translate3d(-1.2%, 0, 0);
	}
}

.av-btn {
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.av-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(20, 27, 77, 0.16);
}

.av-faq-list summary {
	transition: color 0.2s ease;
}

.av-faq-list summary:hover {
	color: #e95b9c;
}

.av-social {
	transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.av-social:hover {
	transform: translateY(-2px);
}

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

	.av-reveal:not(.is-in),
	.av-reveal.is-in {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.av-hero-bg img,
	.av-card:hover,
	.av-stack-list li:hover,
	.av-btn:hover,
	.av-social:hover {
		animation: none;
		transform: none;
	}
}
