:root {
	--az-black: #0b0d12;
	--az-text: #17171b;
	--az-muted: #45454d;
	--az-navy: #4c5e81;
	--az-blue: #2e4c9a;
	--az-indigo: #6267c7;
	--az-violet: #8a5ac7;
	--az-magenta: #b06fc5;
	--az-lavender: #f4f1fb;
	--az-lightgray: #eef2f8;
	--az-border: #dde3ee;
	--az-white: #ffffff;
	--az-surface: var(--az-white);
	--az-shadow-sm: 0 12px 28px rgb(11 13 18 / 0.08);
	--az-shadow-lg: 0 28px 72px rgb(11 13 18 / 0.14);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--az-white);
	color: var(--az-text);
	font-family: "Montserrat", Arial, sans-serif;
	line-height: 1.5;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.screen-reader-text:focus {
	top: 12px !important;
	left: 12px !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	padding: 10px 14px;
	overflow: visible !important;
	clip: auto !important;
	clip-path: none !important;
	background: var(--az-black);
	color: var(--az-white);
	font-weight: 700;
	text-decoration: none;
	z-index: 100;
}

a {
	color: inherit;
}

.az-container {
	width: min(100% - 40px, 1320px);
	margin-inline: auto;
}

.az-site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	border-bottom: 1px solid var(--az-border);
	background: rgb(255 255 255 / 0.9);
	backdrop-filter: blur(18px);
}

.az-header-inner,
.az-footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 76px;
}

.az-wordmark {
	color: var(--az-black);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0;
	text-decoration: none;
}

.az-wordmark sup {
	font-size: 9px;
}

.custom-logo-link {
	display: block;
}

.custom-logo {
	display: block;
	width: auto;
	max-height: 44px;
}

.az-menu,
.az-footer-menu,
.az-language-switcher {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.az-menu a,
.az-footer-menu a,
.az-language-link {
	color: var(--az-muted);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.az-menu a:hover,
.az-menu .current-menu-item > a,
.az-footer-menu a:hover,
.az-language-link:hover,
.az-language-link.is-current {
	color: var(--az-indigo);
}

.az-language-switcher {
	gap: 8px;
}

.az-language-link {
	padding: 7px 8px;
	border: 1px solid transparent;
}

.az-language-link.is-current {
	border-color: var(--az-border);
	background: var(--az-lavender);
}

.az-main {
	padding-block: 72px;
}

.az-entry {
	max-width: 840px;
}

.az-entry-title {
	margin: 0 0 24px;
	color: var(--az-black);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 48px;
	line-height: 1.1;
}

.az-entry-content {
	font-size: 18px;
	line-height: 1.7;
}

.az-archive-header {
	margin-bottom: 42px;
}

.az-post-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.az-post-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 240px;
	padding: 26px;
	border: 1px solid var(--az-border);
	border-radius: 8px;
	background: var(--az-white);
}

.az-post-card h2 {
	margin: 8px 0 12px;
	color: var(--az-black);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 23px;
	line-height: 1.2;
}

.az-post-card h2 a {
	text-decoration: none;
}

.az-feature-card .az-feature-result {
	margin-top: 20px;
	color: var(--az-black);
	font-style: italic;
	font-weight: 700;
}

.az-post-card .az-inline-link {
	margin-top: auto;
}

.az-post-meta,
.az-empty-state {
	margin: 0;
	color: var(--az-muted);
	font-size: 14px;
	font-weight: 600;
}

.az-empty-state p {
	margin: 0;
}

.az-empty-state .az-inline-link {
	display: inline-block;
	margin-top: 0;
	padding-top: 14px;
}

.az-post-excerpt {
	margin-bottom: 22px;
	color: var(--az-muted);
	line-height: 1.6;
}

.az-not-found {
	max-width: 840px;
}

.az-not-found > p:not(.az-eyebrow) {
	margin: 0 0 28px;
	color: var(--az-muted);
	font-size: 18px;
	line-height: 1.6;
}

.az-site-footer {
	border-top: 1px solid var(--az-border);
	background: var(--az-black);
	color: var(--az-white);
}

.az-site-footer .az-wordmark,
.az-site-footer .az-footer-menu a {
	color: var(--az-white);
}

.az-footer-copy {
	margin: 0;
	color: var(--az-border);
	font-size: 13px;
}

@media (max-width: 760px) {
	.az-container {
		width: min(100% - 32px, 1320px);
	}

	.az-header-inner,
	.az-footer-inner {
		flex-wrap: wrap;
		padding-block: 16px;
	}

	.az-primary-navigation {
		order: 3;
		width: 100%;
	}

	.az-menu,
	.az-footer-menu {
		flex-wrap: wrap;
		gap: 14px;
	}

	.az-entry-title {
		font-size: 38px;
	}

	.az-post-list {
		grid-template-columns: 1fr;
	}
}

.az-section {
	position: relative;
	padding-block: clamp(82px, 6vw, 96px);
	overflow: clip;
}

.az-hero {
	padding-block: clamp(64px, 6vw, 78px) clamp(58px, 5vw, 70px);
	border-bottom: 1px solid var(--az-border);
	background: var(--az-white);
}

.az-hero-grid,
.az-workflow-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
	gap: clamp(34px, 5vw, 64px);
	align-items: center;
}

.az-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 24px;
	padding: 10px 15px;
	border: 1px solid rgb(98 103 199 / 0.2);
	border-radius: 999px;
	background: rgb(255 255 255 / 0.78);
	box-shadow: 0 8px 24px rgb(46 76 154 / 0.06);
	color: var(--az-navy);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.35;
	text-transform: uppercase;
}

.az-eyebrow::before {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--az-white);
	content: "";
}

.az-hero-title,
.az-section-title {
	margin: 0;
	color: var(--az-black);
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 800;
	letter-spacing: 0;
}

.az-hero-title {
	max-width: 680px;
	font-size: clamp(46px, 5vw, 68px);
	line-height: 1.03;
}

.az-hero-title span,
.az-section-title span {
	display: block;
	background: var(--az-white);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.az-hero-lead,
.az-section-lead,
.az-workflow-intro,
.az-workflow-body {
	max-width: 670px;
	color: var(--az-text);
	font-size: 18px;
	line-height: 1.75;
}

.az-hero-lead {
	margin-top: 22px;
	font-size: 19px;
}

.az-hero-lead p,
.az-section-lead p,
.az-workflow-intro p,
.az-workflow-body p {
	margin: 0;
}

.az-equation {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 30px 0;
	color: var(--az-black);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.4;
}

.az-equation span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 12px;
	background: var(--az-white);
	color: var(--az-white);
	box-shadow: 0 14px 30px rgb(98 103 199 / 0.24);
}

.az-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	align-items: center;
	margin-top: 30px;
}

.az-actions--center {
	justify-content: center;
}

.az-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 20px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.az-button--primary {
	background: var(--az-white);
	box-shadow: 0 16px 34px rgb(98 103 199 / 0.25);
	color: var(--az-white);
}

.az-button--secondary {
	border-color: var(--az-border);
	background: var(--az-white);
	box-shadow: 0 10px 26px rgb(46 76 154 / 0.08);
	color: var(--az-black);
}

.az-proof {
	display: flex;
	gap: 9px;
	margin: 23px 0 0;
	color: var(--az-muted);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
}

.az-proof span {
	color: var(--az-indigo);
}

.az-hero-visual {
	position: relative;
	max-width: 640px;
	padding: 18px 0 34px 10px;
}

.az-product-frame,
.az-screen {
	overflow: hidden;
	border: 1px solid var(--az-border);
	border-radius: 8px;
	background: var(--az-white);
	box-shadow: 0 34px 82px rgb(11 13 18 / 0.15);
}

.az-product-frame::before,
.az-screen::before {
	display: block;
	width: 76%;
	height: 3px;
	margin-inline: auto;
	border-radius: 0 0 999px 999px;
	background: var(--az-white);
	content: "";
}

.az-browser-bar {
	display: flex;
	align-items: center;
	gap: 7px;
	height: 43px;
	padding-inline: 17px;
	border-bottom: 1px solid var(--az-border);
	background: var(--az-lavender);
}

.az-browser-bar i {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--az-border);
}

.az-product-frame img,
.az-screen img {
	display: block;
	width: 100%;
	height: auto;
}

.az-float-card {
	position: absolute;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 250px;
	padding: 14px 16px;
	border: 1px solid var(--az-border);
	border-radius: 8px;
	background: rgb(255 255 255 / 0.96);
	box-shadow: 0 18px 42px rgb(11 13 18 / 0.14);
}

.az-float-card--top {
	top: 0;
	right: -22px;
}

.az-float-card--bottom {
	bottom: 0;
	left: -12px;
}

.az-float-icon {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 8px;
	background: var(--az-lavender);
	color: var(--az-indigo);
	font-size: 12px;
	font-weight: 800;
}

.az-float-card strong,
.az-float-card small {
	display: block;
}

.az-float-card strong {
	margin-bottom: 3px;
	color: var(--az-black);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 13px;
}

.az-float-card small {
	color: var(--az-muted);
	font-size: 11px;
	line-height: 1.4;
}

.az-integrations {
	border-bottom: 1px solid var(--az-border);
	background: var(--az-white);
}

.az-section-heading--center,
.az-cta-inner {
	max-width: var(--az-content-max);
	text-align: center;
}

.az-section-heading--center .az-eyebrow,
.az-cta-inner .az-eyebrow {
	justify-content: center;
}

.az-section-title {
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.12;
}

.az-section-lead {
	margin: 18px auto 0;
	color: var(--az-muted);
}

.az-logo-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 40px;
}

.az-logo-item {
	display: flex;
	min-height: 118px;
	align-items: center;
	justify-content: center;
	padding: 24px;
	border: 1px solid rgb(221 227 238 / 0.82);
	border-radius: 8px;
	background: var(--az-white);
	box-shadow: 0 8px 20px rgb(11 13 18 / 0.04);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.az-logo-item:last-child {
	border-right: 1px solid rgb(221 227 238 / 0.82);
}

.az-logo-item img {
	max-width: 160px;
	max-height: 52px;
	filter: grayscale(1) contrast(0.85);
	opacity: 0.65;
	transition: filter 180ms ease, opacity 180ms ease;
}

.az-logo-wordmark {
	color: var(--az-navy);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: clamp(14px, 1.25vw, 17px);
	font-weight: 700;
	letter-spacing: 0;
}

.az-logo-item:hover img {
	filter: none;
	opacity: 1;
}

@media (hover: hover) {
	.az-logo-item:hover {
		transform: translateY(-3px);
		border-color: rgb(98 103 199 / 0.34);
		box-shadow: var(--az-shadow-sm);
	}
}

.az-section-note {
	margin: 21px 0 0;
	color: var(--az-navy);
	font-size: 13px;
	font-weight: 600;
}

.az-workflow {
	background: var(--az-white);
}

.az-workflow-grid {
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
}

.az-workflow-intro {
	margin-top: 22px;
	font-size: 20px;
	font-weight: 600;
}

.az-workflow-body {
	margin-top: 18px;
	color: var(--az-muted);
}

.az-workflow-steps {
	display: grid;
	gap: 12px;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
}

.az-workflow-steps li {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	padding: 18px 0;
	border-top: 1px solid var(--az-border);
}

.az-step-number {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 50%;
	background: var(--az-white);
	color: var(--az-white);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 13px;
	font-weight: 800;
}

.az-workflow-steps h3 {
	margin: 0 0 6px;
	color: var(--az-black);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 19px;
}

.az-workflow-steps p {
	margin: 0;
	color: var(--az-muted);
	font-size: 15px;
	line-height: 1.6;
}

.az-workflow-highlight {
	margin: 30px 0 0;
	padding: 22px 24px;
	border-left: 3px solid var(--az-indigo);
	background: var(--az-lavender);
	color: var(--az-black);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.5;
}

.az-workflow-media {
	position: relative;
	min-height: 610px;
	padding-bottom: 46px;
}

.az-screen--main {
	position: relative;
	width: 90%;
}

.az-screen--secondary {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 58%;
}

.az-cta-section {
	border-top: 1px solid var(--az-border);
	background: var(--az-white);
}

.az-cta-inner {
	padding: 16px 0;
}

.az-feature-grid-section {
	background: var(--az-lightgray);
}

.az-section-heading {
	max-width: var(--az-content-max);
	position: relative;
}

.az-section-heading--center .az-section-title,
.az-section-heading--center .az-section-lead {
	margin-inline: auto;
}

.az-section-heading::after {
	display: block;
	width: min(100%, 112px);
	height: 1px;
	margin-top: clamp(24px, 3vw, 38px);
	background: linear-gradient(90deg, var(--az-indigo), rgb(98 103 199 / 0));
	content: "";
}

.az-section-heading--center::after {
	margin-inline: auto;
	background: linear-gradient(90deg, rgb(98 103 199 / 0), var(--az-indigo), rgb(98 103 199 / 0));
}

.az-section-lead--left {
	margin-inline: 0;
}

.az-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 42px;
}

.az-feature-card {
	display: flex;
	min-height: 258px;
	flex-direction: column;
	padding: 28px;
	border: 1px solid var(--az-border);
	border-radius: 8px;
	background: var(--az-white);
}

.az-feature-number {
	color: var(--az-indigo);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 13px;
	font-weight: 800;
}

.az-feature-card h3 {
	margin: 28px 0 10px;
	color: var(--az-black);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 22px;
	line-height: 1.25;
}

.az-feature-card p {
	margin: 0;
	color: var(--az-muted);
	font-size: 15px;
	line-height: 1.65;
}

.az-inline-link {
	margin-top: auto;
	padding-top: 22px;
	color: var(--az-indigo);
	font-size: 14px;
	font-weight: 700;
	text-decoration-color: rgb(98 103 199 / 0.38);
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.az-inline-link:hover {
	color: var(--az-magenta);
	text-decoration-color: currentcolor;
}

.az-content-split {
	background: var(--az-white);
}

.az-content-split-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
	gap: clamp(42px, 7vw, 104px);
	align-items: center;
}

.az-content-split--image-left .az-content-split-copy {
	grid-column: 2;
	order: 2;
}

.az-content-split--image-left .az-content-split-media {
	grid-column: 1;
	order: 1;
}

.az-content-split-body {
	margin-top: 22px;
	color: var(--az-muted);
	font-size: 17px;
	line-height: 1.8;
}

.az-content-split-body p {
	margin: 0;
}

.az-content-split-media {
	margin: 0;
	border: 1px solid var(--az-border);
	border-radius: 8px;
	background: var(--az-lavender);
	box-shadow: var(--az-shadow-sm);
	overflow: hidden;
}

.az-content-split-media img {
	display: block;
	width: 100%;
	height: auto;
}

.az-quote-section {
	background: var(--az-black);
	color: var(--az-white);
}

.az-quote-wrap {
	max-width: 1020px;
}

.az-quote {
	margin: 0;
	text-align: center;
}

.az-quote p {
	margin: 0;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: clamp(30px, 4.2vw, 52px);
	font-weight: 700;
	line-height: 1.24;
}

.az-quote footer {
	display: grid;
	gap: 4px;
	margin-top: 28px;
	color: var(--az-border);
	font-size: 14px;
}

.az-quote footer strong {
	color: var(--az-white);
}

.az-faq-section {
	border-top: 1px solid var(--az-border);
	background: var(--az-white);
}

.az-faq-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(40px, 8vw, 120px);
}

.az-faq-list {
	display: grid;
	gap: 12px;
}

.az-faq-list details {
	border: 1px solid rgb(221 227 238 / 0.82);
	border-radius: 8px;
	background: var(--az-white);
	transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.az-faq-list summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 22px;
	color: var(--az-black);
	cursor: pointer;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	list-style: none;
}

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

.az-faq-list summary span {
	display: grid;
	width: 28px;
	height: 28px;
	flex: none;
	place-items: center;
	border-radius: 50%;
	background: var(--az-lavender);
	color: var(--az-indigo);
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	transition: background-color 180ms ease, color 180ms ease;
}

.az-faq-list details[open] summary span {
	background: var(--az-lavender);
	color: transparent;
}

.az-faq-list details[open] summary span::after {
	color: var(--az-indigo);
	content: "-";
}

.az-faq-list details > div {
	max-width: 680px;
	padding: 0 62px 21px 22px;
	color: var(--az-muted);
	font-size: 16px;
	line-height: 1.7;
}

.az-faq-list details > div p {
	margin: 0;
}

.az-faq-list details[open] {
	margin-inline: 0;
	padding-inline: 0;
	border-color: rgb(98 103 199 / 0.34);
	background: var(--az-white);
	box-shadow: var(--az-shadow-sm);
}

.az-faq-list details[open] summary {
	padding-bottom: 13px;
}

.az-rich-text-section {
	padding-block: 74px;
}

.az-rich-text {
	max-width: 800px;
	font-size: 18px;
	line-height: 1.75;
}

.az-rich-text h1,
.az-rich-text h2,
.az-rich-text h3 {
	color: var(--az-black);
	font-family: "Montserrat", Arial, sans-serif;
	line-height: 1.2;
}

.az-rich-text h2 {
	margin-top: 52px;
	font-size: 34px;
}

.az-rich-text h3 {
	margin-top: 36px;
	font-size: 23px;
}

.az-rich-text ul {
	margin: 20px 0;
	padding-left: 24px;
}

.az-rich-text li + li {
	margin-top: 8px;
}

.az-rich-text .az-eyebrow {
	margin-bottom: 12px;
}

.az-rich-text a {
	color: var(--az-indigo);
}

@media (max-width: 1060px) {
	.az-hero-grid,
	.az-workflow-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.az-hero-content {
		max-width: 790px;
	}

	.az-hero-visual {
		width: min(100%, 820px);
		margin-inline: auto;
	}

	.az-workflow-media {
		width: min(100%, 700px);
		min-height: 560px;
		margin-inline: auto;
	}

	.az-content-split-grid,
	.az-faq-grid {
		grid-template-columns: 1fr;
	}

	.az-content-split--image-left .az-content-split-copy,
	.az-content-split--image-left .az-content-split-media {
		grid-column: 1;
		order: initial;
	}
}

@media (max-width: 760px) {
	.az-section {
		padding-block: 56px;
	}

	.az-hero {
		padding-block: 52px 46px;
	}

	.az-hero-title {
		font-size: clamp(39px, 11.5vw, 48px);
		line-height: 1.06;
	}

	.az-hero-lead,
	.az-workflow-intro {
		font-size: 16px;
		line-height: 1.65;
	}

	.az-actions,
	.az-actions--center {
		align-items: stretch;
	}

	.az-button {
		width: 100%;
	}

	.az-hero-visual {
		max-width: 100%;
		padding: 16px 0 0;
	}

	.az-float-card {
		position: relative;
		inset: auto;
		max-width: none;
		margin-top: 12px;
	}

	.az-float-card--top {
		display: none;
	}

	.az-logo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.az-feature-grid {
		grid-template-columns: 1fr;
	}

	.az-feature-card {
		min-height: 0;
	}

	.az-workflow-media {
		min-height: 0;
		padding-bottom: 0;
	}

	.az-screen--main,
	.az-screen--secondary {
		position: relative;
		width: 100%;
		inset: auto;
		margin-top: 18px;
	}
}

.az-header-cta {
	min-height: 40px;
	padding: 10px 14px;
	font-size: 13px;
}

.az-site-footer .az-footer-inner {
	padding-block: 26px;
}

.az-footer-brand p {
	max-width: 340px;
	margin: 10px 0 0;
	color: var(--az-border);
	font-size: 13px;
	line-height: 1.6;
}

.az-footer-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	flex-wrap: wrap;
}

.az-footer-cta {
	min-height: 42px;
	padding: 10px 15px;
	border-color: var(--az-navy);
	background: transparent;
	color: var(--az-white);
}

.az-form-section {
	background: var(--az-lightgray);
}

.az-form-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(40px, 8vw, 118px);
	align-items: start;
}

.az-form-shell {
	padding: 30px;
	border: 1px solid var(--az-border);
	border-radius: 8px;
	background: var(--az-white);
}

.az-form-shell .wpforms-container {
	margin: 0;
}

.az-form-shell .wpforms-field-label,
.az-form-shell .wpforms-field-sublabel {
	font-family: "Montserrat", Arial, sans-serif;
}

.az-form-shell input,
.az-form-shell textarea,
.az-form-shell select {
	border-radius: 6px;
}

.az-form-shell button[type="submit"] {
	border-radius: 6px;
	background: var(--az-indigo);
}

.az-native-form p {
	margin: 0 0 18px;
}

.az-native-form label {
	display: block;
	margin-bottom: 7px;
	color: var(--az-black);
	font-size: 14px;
	font-weight: 700;
}

.az-native-form input,
.az-native-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--az-border);
	background: var(--az-white);
	color: var(--az-text);
	font: inherit;
}

.az-native-form input:focus,
.az-native-form textarea:focus {
	border-color: var(--az-indigo);
	outline: 2px solid rgb(98 103 199 / 0.18);
	outline-offset: 1px;
}

.az-form-honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.az-form-status {
	margin: 0 0 20px;
	padding: 12px 14px;
	border-left: 3px solid var(--az-indigo);
	background: var(--az-lavender);
	font-size: 14px;
	font-weight: 600;
}

.az-form-status--error {
	border-left-color: var(--az-magenta);
	background: var(--az-lightgray);
}

@media (max-width: 1060px) {
	.az-form-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.az-header-cta {
		margin-left: auto;
	}

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

	.az-form-shell {
		padding: 20px;
	}
}

/* Sitewide visual refinement. */
.az-main--front {
	padding-block: 0;
}

.az-mobile-menu {
	display: none;
}

.az-site-header {
	box-shadow: 0 1px 0 rgb(11 13 18 / 0.04);
}

.az-menu a {
	position: relative;
}

.az-menu a::after {
	position: absolute;
	right: 0;
	bottom: -9px;
	left: 0;
	height: 2px;
	transform: scaleX(0);
	transform-origin: center;
	border-radius: 999px;
	background: var(--az-indigo);
	content: "";
	transition: transform 180ms ease;
}

.az-menu a:hover::after,
.az-menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.az-button--secondary {
	box-shadow: var(--az-shadow-sm);
}

.az-button--secondary:hover {
	border-color: rgb(98 103 199 / 0.36);
	box-shadow: 0 16px 30px rgb(46 76 154 / 0.12);
}

.az-post-card,
.az-feature-card {
	box-shadow: 0 8px 20px rgb(11 13 18 / 0.04);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.az-form-shell {
	box-shadow: var(--az-shadow-sm);
}

.az-native-form input,
.az-native-form textarea {
	border-color: var(--az-border);
	border-radius: 6px;
}

.az-native-form textarea {
	min-height: 144px;
	resize: vertical;
}

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

@media (hover: hover) {
	.az-post-card:hover,
	.az-feature-card:hover {
		transform: translateY(-4px);
		border-color: rgb(98 103 199 / 0.32);
		box-shadow: var(--az-shadow-sm);
	}
}

@media (max-width: 860px) {
	.az-header-inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 10px;
		min-height: 72px;
		padding-block: 12px;
	}

	.az-brand {
		min-width: 0;
	}

	.custom-logo {
		width: min(150px, 100%);
		max-height: 36px;
	}

	.az-primary-navigation--desktop,
	.az-header-inner > .az-language-switcher {
		display: none;
	}

	.az-header-cta {
		min-height: 42px;
		margin-left: 0;
		padding: 10px 13px;
		font-size: 13px;
		white-space: nowrap;
	}

	.az-mobile-menu {
		position: relative;
		display: block;
	}

	.az-mobile-menu > summary {
		display: grid;
		width: 42px;
		height: 42px;
		place-items: center;
		border: 1px solid var(--az-border);
		border-radius: 8px;
		background: var(--az-white);
		cursor: pointer;
		list-style: none;
	}

	.az-mobile-menu > summary::-webkit-details-marker {
		display: none;
	}

	.az-mobile-menu-icon,
	.az-mobile-menu-icon::before,
	.az-mobile-menu-icon::after {
		display: block;
		width: 18px;
		height: 2px;
		border-radius: 999px;
		background: var(--az-black);
		content: "";
		transition: transform 180ms ease, opacity 180ms ease;
	}

	.az-mobile-menu-icon {
		position: relative;
	}

	.az-mobile-menu-icon::before,
	.az-mobile-menu-icon::after {
		position: absolute;
		left: 0;
	}

	.az-mobile-menu-icon::before {
		top: -6px;
	}

	.az-mobile-menu-icon::after {
		top: 6px;
	}

	.az-mobile-menu[open] .az-mobile-menu-icon {
		background: transparent;
	}

	.az-mobile-menu[open] .az-mobile-menu-icon::before {
		transform: translateY(6px) rotate(45deg);
	}

	.az-mobile-menu[open] .az-mobile-menu-icon::after {
		transform: translateY(-6px) rotate(-45deg);
	}

	.az-mobile-menu-panel {
		position: absolute;
		top: calc(100% + 12px);
		right: 0;
		z-index: 20;
		width: min(330px, calc(100vw - 32px));
		padding: 8px 16px 16px;
		border: 1px solid var(--az-border);
		border-radius: 8px;
		background: var(--az-white);
		box-shadow: var(--az-shadow-lg);
	}

	.az-mobile-menu-panel .az-primary-navigation {
		display: block;
		width: auto;
		order: initial;
	}

	.az-mobile-menu-panel .az-menu {
		display: grid;
		gap: 0;
	}

	.az-mobile-menu-panel .az-menu li {
		border-bottom: 1px solid var(--az-border);
	}

	.az-mobile-menu-panel .az-menu a {
		display: block;
		padding: 16px 0;
		font-size: 16px;
	}

	.az-mobile-menu-panel .az-menu a::after {
		display: none;
	}

	.az-mobile-menu-panel .az-language-switcher {
		display: flex;
		margin-top: 14px;
		padding-top: 14px;
		border-top: 1px solid var(--az-border);
	}
}

/* Footer information layout. */
.az-footer-shell {
	padding-top: clamp(48px, 7vw, 88px);
}

.az-footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.6fr) minmax(160px, 0.6fr);
	gap: clamp(30px, 4.6vw, 72px);
	padding-bottom: clamp(42px, 6vw, 72px);
}

.az-footer-brand,
.az-footer-navigation {
	min-width: 0;
}

.az-site-footer .az-wordmark {
	display: inline-block;
	color: var(--az-white);
	font-size: 28px;
}

.az-footer-brand p {
	max-width: 410px;
	margin: 18px 0 0;
	color: var(--az-border);
	font-size: 15px;
	line-height: 1.65;
}

.az-footer-brand .az-footer-group {
	margin-top: 16px;
	color: var(--az-white);
	font-weight: 700;
}

.az-footer-highlights {
	display: grid;
	gap: 9px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.az-footer-highlights li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--az-border);
	font-size: 13px;
	font-weight: 700;
}

.az-footer-highlights li::before {
	width: 6px;
	height: 6px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--az-border);
	content: "";
}

.az-footer-label,
.az-footer-contact-label {
	margin: 0 0 16px;
	color: var(--az-border);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
}

.az-footer-navigation .az-footer-menu {
	display: grid;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.az-site-footer .az-footer-menu a {
	position: relative;
	display: inline-block;
	padding-bottom: 3px;
	color: var(--az-border);
	font-size: 14px;
	font-weight: 700;
}

.az-site-footer .az-footer-menu a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: currentcolor;
	content: "";
	opacity: 0;
	transform: scaleX(0.32);
	transform-origin: left;
	transition: opacity var(--az-duration-fast) ease, transform var(--az-duration-fast) var(--az-ease-premium);
}

.az-site-footer .az-footer-menu a:hover,
.az-site-footer .az-footer-menu .current-menu-item > a {
	color: var(--az-white);
}

.az-site-footer .az-footer-menu a:hover::after,
.az-site-footer .az-footer-menu .current-menu-item > a::after {
	opacity: 0.72;
	transform: scaleX(1);
}

.az-footer-action {
	padding-left: clamp(28px, 4vw, 56px);
	border-left: 1px solid rgb(221 227 238 / 0.24);
}

.az-footer-action h2 {
	max-width: 360px;
	margin: 0;
	color: var(--az-white);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 800;
	line-height: 1.18;
}

.az-footer-action-copy {
	max-width: 360px;
	margin: 14px 0 0;
	color: var(--az-border);
	font-size: 14px;
	line-height: 1.65;
}

.az-footer-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
	flex-wrap: wrap;
}

.az-site-footer .az-footer-cta {
	min-height: 44px;
	padding: 10px 16px;
	border-color: var(--az-white);
	background: var(--az-white);
	color: var(--az-black);
}

.az-site-footer .az-footer-cta:hover {
	border-color: var(--az-border);
	background: var(--az-border);
	color: var(--az-black);
}

.az-footer-trial {
	color: var(--az-white);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.az-footer-trial::after {
	margin-left: 7px;
	content: "\2192";
}

.az-footer-trial:hover {
	color: var(--az-border);
}

.az-footer-contact {
	display: grid;
	gap: 10px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgb(221 227 238 / 0.2);
}

.az-footer-contact-label {
	margin-bottom: 1px;
}

.az-footer-contact-link {
	display: grid;
	gap: 2px;
	width: fit-content;
	max-width: 100%;
	color: var(--az-white);
	font-size: 14px;
	font-weight: 700;
	overflow-wrap: anywhere;
	text-decoration: none;
}

.az-footer-contact-link span {
	color: var(--az-border);
	font-size: 12px;
	font-weight: 700;
}

.az-footer-contact-line,
.az-footer-address {
	display: grid;
	gap: 2px;
	margin: 0;
	color: var(--az-white);
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
}

.az-footer-contact-line span,
.az-footer-address span {
	color: var(--az-border);
	font-size: 12px;
	font-weight: 700;
}

.az-footer-contact-link:hover {
	color: var(--az-border);
}

.az-footer-contact-link:hover span {
	color: var(--az-white);
}

.az-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-block: 22px;
	border-top: 1px solid rgb(221 227 238 / 0.2);
}

.az-footer-copy {
	margin: 0;
	color: var(--az-border);
	font-size: 13px;
}

.az-footer-language {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--az-border);
	font-size: 12px;
	font-weight: 700;
}

.az-site-footer .az-language-switcher {
	gap: 4px;
}

.az-site-footer .az-language-link {
	padding: 5px 7px;
	border-color: transparent;
	color: var(--az-border);
	font-size: 12px;
}

.az-site-footer .az-language-link:hover,
.az-site-footer .az-language-link.is-current {
	border-color: rgb(221 227 238 / 0.36);
	background: transparent;
	color: var(--az-white);
}

@media (max-width: 760px) {
	.az-footer-shell {
		padding-top: 42px;
	}

	.az-footer-top {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-bottom: 38px;
	}

	.az-footer-action {
		grid-column: auto;
		padding-top: 30px;
	}

	.az-footer-action h2 {
		font-size: 26px;
	}

	.az-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}
}

/* Global interaction finishing. */
::selection {
	background: var(--az-border);
	color: var(--az-black);
}

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid rgb(98 103 199 / 0.72);
	outline-offset: 3px;
}

.az-hero-title,
.az-section-title,
.az-home-title,
.az-entry-title,
.az-footer-action h2 {
	text-wrap: balance;
}

.az-hero-lead,
.az-section-lead,
.az-home-lead,
.az-entry-content {
	text-wrap: pretty;
}

.az-button:active {
	transform: translateY(0);
}

.az-inline-link {
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.az-post-card:focus-within,
.az-feature-card:focus-within,
.az-form-shell:focus-within {
	border-color: rgb(98 103 199 / 0.42);
	box-shadow: var(--az-shadow-sm);
}

@media (hover: hover) {
	.az-button--primary:hover {
		box-shadow: 0 20px 38px rgb(98 103 199 / 0.32);
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Shared content-surface refinement. */
.az-post-card,
.az-feature-card,
.az-form-shell {
	position: relative;
	border-color: rgb(221 227 238 / 0.82);
	background: var(--az-white);
}

.az-post-card::before,
.az-feature-card::before,
.az-form-shell::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	border-radius: 7px 7px 0 0;
	background: var(--az-white);
	content: "";
	pointer-events: none;
}

.az-form-section {
	background: var(--az-white);
}

/* Executive editorial design system. */
:root {
	--az-font: "Montserrat", Arial, sans-serif;
	--az-page-max: 1440px;
	--az-content-max: 1140px;
	--az-copy-max: 720px;
	--az-radius-xs: 6px;
	--az-radius-sm: 8px;
	--az-radius-md: 12px;
	--az-radius-lg: 16px;
	--az-space-section: clamp(88px, 9vw, 156px);
	--az-space-section-compact: clamp(64px, 7vw, 112px);
	--az-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--az-ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
	--az-duration-fast: 220ms;
	--az-duration-normal: 650ms;
	--az-duration-slow: 900ms;
	--az-duration-reveal: 720ms;
	--az-black-04: rgb(11 13 18 / 0.04);
	--az-black-08: rgb(11 13 18 / 0.08);
	--az-black-12: rgb(11 13 18 / 0.12);
	--az-black-20: rgb(11 13 18 / 0.2);
	--az-black-72: rgb(11 13 18 / 0.72);
	--az-white-16: rgb(255 255 255 / 0.16);
	--az-white-72: rgb(255 255 255 / 0.72);
	--az-white-92: rgb(255 255 255 / 0.92);
	--az-indigo-20: rgb(98 103 199 / 0.2);
	--az-indigo-36: rgb(98 103 199 / 0.36);
	--az-shadow-sm: 0 12px 28px var(--az-black-08);
	--az-shadow-lg: 0 26px 72px var(--az-black-12);
	--az-surface: var(--az-white);
}

body,
button,
input,
select,
textarea {
	font-family: var(--az-font);
}

.az-container {
	width: min(100% - 48px, var(--az-content-max));
}

.az-main--front,
.az-main--page {
	padding-block: 0;
}

.az-site-header {
	z-index: 100;
	border-bottom-color: transparent;
	background: rgb(255 255 255 / 0.84);
	box-shadow: none;
	transition: background-color var(--az-duration-fast) ease, border-color var(--az-duration-fast) ease, box-shadow var(--az-duration-fast) ease;
}

.az-site-header.is-scrolled {
	border-color: var(--az-border);
	background: var(--az-white-92);
	box-shadow: 0 8px 30px var(--az-black-04);
	backdrop-filter: blur(18px);
}

.az-header-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto auto;
	gap: clamp(18px, 2.4vw, 38px);
	min-height: 84px;
}

.az-wordmark,
.custom-logo-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	font-family: var(--az-font);
	font-weight: 700;
}

.custom-logo {
	max-width: min(180px, 100%);
	max-height: 36px;
}

.az-menu {
	justify-content: center;
}

.az-menu a,
.az-footer-menu a,
.az-language-link {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.az-menu a::after {
	bottom: -8px;
	height: 1px;
	border-radius: 0;
	transform-origin: left;
	background: var(--az-indigo);
}

.az-language-link.is-current {
	border-color: transparent transparent var(--az-black);
	background: transparent;
}

.az-language-link {
	display: inline-flex;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
}

.az-header-cta {
	min-height: 44px;
	padding: 10px 15px;
	font-size: 12px;
}

.az-section {
	padding-block: var(--az-space-section);
	scroll-margin-top: calc(var(--az-header-height) + 24px);
	overflow: clip;
}

.az-home-section {
	scroll-margin-top: calc(var(--az-header-height) + 24px);
}

.az-section + .az-section::before,
.az-home-section + .az-home-section::before {
	left: max(24px, calc((100% - var(--az-content-max)) / 2));
	right: max(24px, calc((100% - var(--az-content-max)) / 2));
}

.az-eyebrow,
.az-home-eyebrow {
	gap: 10px;
	margin-bottom: 18px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--az-navy);
	font-family: var(--az-font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.3;
}

.az-eyebrow::before,
.az-home-eyebrow::before {
	width: 28px;
	height: 1px;
	border-radius: 0;
	background: var(--az-indigo);
}

.az-hero-title,
.az-section-title,
.az-entry-title,
.az-home-title,
.az-footer-action h2 {
	font-family: var(--az-font);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.02;
	overflow-wrap: anywhere;
}

.az-hero-title {
	max-width: 14ch;
	font-size: clamp(52px, 6vw, 96px);
	letter-spacing: -0.04em;
}

.az-section-title {
	max-width: 18ch;
	font-size: clamp(40px, 4.9vw, 72px);
}

.az-hero-title span,
.az-section-title span {
	background: none;
	color: var(--az-indigo);
	-webkit-text-fill-color: currentcolor;
}

.az-hero-lead,
.az-section-lead,
.az-workflow-intro,
.az-workflow-body,
.az-content-split-body,
.az-entry-content {
	max-width: var(--az-copy-max);
	font-size: clamp(16px, 1.3vw, 19px);
	font-weight: 400;
	line-height: 1.72;
}

.az-hero-lead {
	margin-top: 28px;
	font-size: clamp(18px, 1.5vw, 21px);
}

.az-section-lead {
	margin-top: 22px;
}

.az-button {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-radius: var(--az-radius-xs);
	font-family: var(--az-font);
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: border-color var(--az-duration-fast) ease, background-color var(--az-duration-fast) ease, color var(--az-duration-fast) ease, box-shadow var(--az-duration-fast) ease, transform var(--az-duration-fast) var(--az-ease-premium);
}

.az-button::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 0%, rgb(255 255 255 / 0.24) 46%, transparent 62%);
	content: "";
	opacity: 0;
	pointer-events: none;
	transform: translateX(-120%);
	transition: opacity var(--az-duration-fast) ease, transform 620ms var(--az-ease-premium);
}

.az-button--primary {
	border-color: var(--az-blue);
	background: var(--az-blue);
	box-shadow: none;
}

.az-button--secondary {
	border-color: var(--az-border);
	background: var(--az-white);
	box-shadow: none;
}

@media (hover: hover) {
	.az-button--primary:hover {
		border-color: var(--az-indigo);
		background: var(--az-indigo);
		box-shadow: 0 14px 32px rgb(98 103 199 / 0.24);
		transform: translateY(-2px);
	}

	.az-button:hover::after {
		opacity: 1;
		transform: translateX(120%);
	}

	.az-button--secondary:hover {
		border-color: var(--az-black);
		background: var(--az-black);
		box-shadow: 0 14px 30px var(--az-black-12);
		color: var(--az-white);
		transform: translateY(-2px);
	}
}

.az-equation,
.az-home-equation {
	padding-top: 22px;
	border-top: 1px solid var(--az-border);
	font-family: var(--az-font);
	font-weight: 600;
}

.az-equation span {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--az-lavender);
	box-shadow: none;
	color: var(--az-indigo);
}

.az-hero {
	min-height: min(850px, calc(100svh - 84px));
	padding-block: clamp(72px, 8vw, 132px);
	border: 0;
	background: var(--az-white);
}

.az-hero-grid,
.az-workflow-grid {
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	gap: clamp(44px, 7vw, 112px);
}

.az-hero-visual {
	padding: 18px 0 36px 18px;
}

.az-product-frame,
.az-screen {
	border-radius: var(--az-radius-md);
	box-shadow: var(--az-shadow-lg);
}

.az-product-frame::before,
.az-screen::before {
	width: 100%;
	height: 4px;
	border-radius: 0;
	background: var(--az-indigo);
}

.az-browser-bar {
	height: 35px;
	background: var(--az-white);
}

.az-browser-bar i,
.az-home-browser span {
	width: 6px;
	height: 6px;
	background: var(--az-black-20);
}

.az-float-card {
	border-radius: var(--az-radius-sm);
	background: var(--az-white-92);
	box-shadow: var(--az-shadow-sm);
}

.az-float-icon {
	border-radius: var(--az-radius-xs);
	border-color: var(--az-indigo-20);
}

.az-integrations {
	padding-block: clamp(52px, 6vw, 84px);
	border: 0;
	background: var(--az-lightgray);
}

.az-logo-grid {
	gap: 0;
	border-block: 1px solid var(--az-border);
}

.az-logo-item {
	min-height: 90px;
	border: 0;
	border-right: 1px solid var(--az-border);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.az-logo-item:last-child {
	border-right: 0;
}

.az-workflow-grid {
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.az-workflow-steps {
	gap: 0;
	border-top: 1px solid var(--az-border);
}

.az-workflow-steps li {
	grid-template-columns: 58px minmax(0, 1fr);
	padding: 21px 0;
	border-bottom: 1px solid var(--az-border);
	border-top: 0;
}

.az-step-number {
	width: auto;
	height: auto;
	place-items: initial;
	border-radius: 0;
	background: transparent;
	color: var(--az-indigo);
	font-family: var(--az-font);
	font-size: 30px;
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1;
}

.az-workflow-steps h3,
.az-feature-card h3 {
	font-family: var(--az-font);
	font-weight: 600;
	letter-spacing: -0.02em;
}

.az-workflow-highlight {
	padding: 0 0 0 20px;
	border-left: 2px solid var(--az-indigo);
	background: transparent;
	font-family: var(--az-font);
	font-size: 20px;
	font-weight: 600;
}

.az-feature-grid-section {
	background: var(--az-lightgray);
}

.az-feature-grid {
	gap: 1px;
	border: 1px solid var(--az-border);
	background: var(--az-border);
}

.az-feature-card {
	min-height: 260px;
	border: 0;
	border-radius: 0;
	background: var(--az-white);
	box-shadow: none;
}

.az-feature-card::before {
	display: none;
}

.az-feature-grid--bento .az-feature-card:first-child {
	grid-column: span 2;
	grid-row: span 2;
	min-height: 100%;
	justify-content: flex-end;
}

.az-feature-number {
	color: var(--az-indigo);
	font-family: var(--az-font);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.11em;
}

.az-feature-card h3 {
	margin-top: 58px;
}

.az-feature-card .az-feature-result {
	padding-top: 14px;
	border-top: 1px solid var(--az-border);
	font-style: normal;
	font-weight: 600;
}

.az-content-split-grid {
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	gap: clamp(44px, 8vw, 132px);
}

.az-content-split-grid > * {
	min-width: 0;
}

.az-content-split--image-left .az-content-split-copy {
	grid-column: 2;
}

.az-content-split--image-left .az-content-split-media {
	grid-column: 1;
}

.az-content-split-media {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	border: 0;
	border-radius: var(--az-radius-md);
	box-shadow: none;
	aspect-ratio: 4 / 3;
}

.az-content-split-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1060px) {
	.az-content-split--image-left .az-content-split-copy,
	.az-content-split--image-left .az-content-split-media {
		grid-column: 1;
	}
}

.az-quote-section,
.az-cta-section {
	background: var(--az-black);
}

.az-quote p {
	max-width: 22ch;
	text-align: left;
	font-family: var(--az-font);
	font-size: clamp(36px, 5vw, 74px);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.06;
}

.az-quote footer {
	color: var(--az-white-72);
}

.az-cta-inner .az-eyebrow,
.az-cta-inner .az-section-title,
.az-cta-inner .az-section-lead {
	color: var(--az-white);
}

.az-cta-inner .az-eyebrow {
	color: var(--az-white-72);
}

.az-cta-inner .az-section-lead {
	color: var(--az-white-72);
}

.az-cta-section .az-button--secondary {
	border-color: var(--az-white-72);
	background: transparent;
	color: var(--az-white);
}

.az-cta-section--light {
	background: var(--az-white);
}

.az-cta-section--light .az-eyebrow,
.az-cta-section--light .az-section-title,
.az-cta-section--light .az-section-lead {
	color: var(--az-black);
}

.az-cta-section--light .az-eyebrow {
	color: var(--az-navy);
}

.az-cta-section--light .az-section-lead {
	color: var(--az-muted);
}

.az-cta-section--light .az-button--secondary {
	border-color: var(--az-border);
	background: var(--az-white);
	color: var(--az-black);
}

.az-cta-section--image-led {
	isolation: isolate;
}

.az-cta-media {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}

.az-cta-media::after {
	position: absolute;
	inset: 0;
	background: var(--az-black-72);
	content: "";
}

.az-cta-media img {
	display: block;
	width: 100%;
	height: 100%;
	filter: grayscale(1);
	object-fit: cover;
}

.az-cta-section--image-led .az-cta-inner {
	position: relative;
	z-index: 1;
}

.az-faq-section {
	border: 0;
	background: var(--az-lavender);
}

@media (min-width: 1061px) {
	.az-faq-intro {
		position: sticky;
		top: 132px;
	}
}

.az-faq-list {
	gap: 0;
	border-top: 1px solid var(--az-border);
}

.az-faq-list details {
	border: 0;
	border-bottom: 1px solid var(--az-border);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.az-faq-list details[open] {
	margin: 0;
	padding: 0;
	border-color: var(--az-border);
	background: transparent;
	box-shadow: none;
}

.az-faq-list summary {
	padding: 25px 0;
	font-family: var(--az-font);
	font-size: clamp(17px, 1.5vw, 21px);
	font-weight: 600;
}

.az-faq-list details > div {
	padding: 0 48px 25px 0;
}

.az-faq-list summary span,
.az-faq-list details[open] summary span {
	border-radius: 0;
	background: transparent;
	color: var(--az-indigo);
	transition: background-color var(--az-duration-fast) ease, color var(--az-duration-fast) ease, transform var(--az-duration-fast) var(--az-ease-premium);
}

.az-form-section {
	background: var(--az-lightgray);
}

.az-form-shell {
	border-radius: var(--az-radius-md);
	box-shadow: none;
}

.az-form-shell::before {
	display: none;
}

.az-native-form input,
.az-native-form textarea,
.az-form-shell input,
.az-form-shell textarea,
.az-form-shell select {
	border-color: var(--az-border);
	border-radius: var(--az-radius-xs);
	font-family: var(--az-font);
}

.az-rich-text-section {
	padding-block: var(--az-space-section-compact);
}

.az-rich-text {
	max-width: var(--az-copy-max);
	font-size: clamp(17px, 1.35vw, 20px);
	line-height: 1.76;
}

.az-rich-text h1,
.az-rich-text h2,
.az-rich-text h3,
.az-rich-text h4 {
	max-width: 17ch;
	font-family: var(--az-font);
	font-weight: 600;
	letter-spacing: -0.028em;
	line-height: 1.1;
}

.az-rich-text h2 {
	margin: 0 0 28px;
	font-size: clamp(38px, 4vw, 64px);
}

.az-rich-text h3 {
	margin: 46px 0 14px;
	font-size: clamp(22px, 2.3vw, 34px);
}

.az-rich-text a {
	color: var(--az-blue);
	font-weight: 600;
}

.az-main--page .az-rich-text-section {
	padding-block: clamp(54px, 5vw, 82px);
}

.az-main--page .az-rich-text {
	max-width: var(--az-content-max);
	font-size: clamp(16px, 1.1vw, 18px);
	line-height: 1.66;
}

.az-main--page .az-rich-text h2 {
	max-width: 18ch;
	margin-bottom: 22px;
	font-size: clamp(34px, 3.4vw, 54px);
	line-height: 1.08;
}

.az-main--page .az-rich-text h3 {
	display: flex;
	max-width: 34ch;
	gap: 12px;
	align-items: flex-start;
	margin: 34px 0 12px;
	padding-top: 22px;
	border-top: 1px solid var(--az-border);
	font-size: clamp(22px, 2vw, 30px);
	line-height: 1.16;
}

.az-main--page .az-rich-text h3::before {
	width: 28px;
	height: 1px;
	flex: none;
	margin-top: 0.62em;
	background: var(--az-indigo);
	content: "";
}

.az-main--page .az-rich-text p {
	margin: 0 0 16px;
}

.az-main--page .az-rich-text ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 10px;
	margin: 20px 0 24px;
	padding: 0;
	list-style: none;
}

.az-main--page .az-rich-text li {
	margin: 0;
	padding: 12px 14px;
	border: 1px solid var(--az-border);
	border-radius: var(--az-radius-xs);
	background: var(--az-lightgray);
	color: var(--az-text);
	font-size: 15px;
	line-height: 1.5;
}

.az-main--page .az-rich-text li + li {
	margin-top: 0;
}

body.page-id-132 .az-main--page > .az-hero + .az-rich-text-section .az-rich-text,
body.page-id-133 .az-main--page > .az-hero + .az-rich-text-section .az-rich-text {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
	gap: clamp(36px, 5vw, 72px);
	align-items: start;
	border-left: 1px solid var(--az-border);
}

body.page-id-132 .az-main--page > .az-hero + .az-rich-text-section .az-rich-text > *,
body.page-id-133 .az-main--page > .az-hero + .az-rich-text-section .az-rich-text > * {
	grid-column: 1;
}

body.page-id-132 .az-main--page > .az-hero + .az-rich-text-section .az-rich-text::after,
body.page-id-133 .az-main--page > .az-hero + .az-rich-text-section .az-rich-text::after {
	grid-column: 2;
	grid-row: 1 / span 12;
	display: block;
	min-height: clamp(520px, 52vw, 760px);
	border: 1px solid var(--az-border);
	border-radius: var(--az-radius-md);
	background:
		linear-gradient(180deg, rgb(11 13 18 / 0.03), rgb(11 13 18 / 0.16)),
		url("../../../../uploads/om-oss02-1536x1031.webp") center / cover no-repeat;
	box-shadow: 0 26px 72px var(--az-black-08);
	content: "";
}

@media (max-width: 900px) {
	body.page-id-132 .az-main--page > .az-hero + .az-rich-text-section .az-rich-text,
	body.page-id-133 .az-main--page > .az-hero + .az-rich-text-section .az-rich-text {
		grid-template-columns: minmax(0, 1fr);
		gap: 26px;
	}

	body.page-id-132 .az-main--page > .az-hero + .az-rich-text-section .az-rich-text::after,
	body.page-id-133 .az-main--page > .az-hero + .az-rich-text-section .az-rich-text::after {
		grid-column: 1;
		grid-row: auto;
		min-height: clamp(260px, 68vw, 430px);
	}
}

.az-main--page > .az-rich-text-section:last-of-type .az-rich-text {
	max-width: var(--az-content-max);
	display: grid;
	gap: 18px;
	padding: clamp(34px, 5vw, 64px);
	border: 1px solid var(--az-border);
	border-radius: var(--az-radius-md);
	background: var(--az-black);
	color: var(--az-white);
}

.az-main--page > .az-rich-text-section:last-of-type .az-rich-text p {
	margin: 0;
	color: var(--az-white-72);
}

.az-main--page > .az-rich-text-section:last-of-type .az-rich-text p:not(.az-eyebrow):last-child {
	max-width: 840px;
	color: var(--az-white);
	font-size: clamp(22px, 2.4vw, 34px);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.az-main--page > .az-rich-text-section:last-of-type .az-rich-text .az-eyebrow,
.az-main--page > .az-rich-text-section:last-of-type .az-rich-text a {
	color: var(--az-white);
}

.az-site-footer {
	border-top: 1px solid var(--az-black);
}

.az-footer-shell {
	padding-top: clamp(62px, 8vw, 120px);
}

.az-footer-brand p,
.az-footer-action-copy,
.az-footer-copy,
.az-footer-language,
.az-site-footer .az-footer-menu a,
.az-site-footer .az-language-link {
	color: var(--az-white-72);
}

.az-footer-action {
	border-left-color: var(--az-white-16);
}

.az-footer-action h2 {
	max-width: 12ch;
	font-family: var(--az-font);
	font-size: clamp(28px, 3vw, 46px);
	font-weight: 600;
	letter-spacing: -0.03em;
}

.az-footer-highlights li::before {
	background: var(--az-indigo);
}

.az-footer-contact,
.az-footer-bottom {
	border-color: var(--az-white-16);
}

.az-motion-ready [data-az-reveal] {
	opacity: 0;
	transform: translate3d(0, 30px, 0) scale(0.985);
	filter: blur(8px);
	transition: opacity var(--az-duration-reveal) var(--az-ease-premium), transform var(--az-duration-reveal) var(--az-ease-premium), filter var(--az-duration-reveal) var(--az-ease-premium);
	will-change: opacity, transform, filter;
}

.az-motion-ready [data-az-reveal="left"] {
	transform: translate3d(-34px, 0, 0) scale(0.985);
}

.az-motion-ready [data-az-reveal="right"] {
	transform: translate3d(34px, 0, 0) scale(0.985);
}

.az-motion-ready [data-az-reveal="scale"] {
	transform: scale(0.94);
}

.az-motion-ready [data-az-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	filter: blur(0);
	will-change: auto;
}

@media (max-width: 1060px) {
	.az-hero,
	.az-workflow {
		min-height: 0;
	}

	.az-hero-grid,
	.az-workflow-grid,
	.az-content-split-grid,
	.az-faq-grid,
	.az-form-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.az-hero-content,
	.az-workflow-copy {
		max-width: 820px;
	}

	.az-hero-visual,
	.az-workflow-media {
		width: min(100%, 860px);
		margin-inline: auto;
	}

	.az-footer-top {
		grid-template-columns: minmax(0, 1fr) minmax(200px, 0.7fr);
	}

	.az-footer-action {
		grid-column: 1 / -1;
		padding-top: 34px;
		padding-left: 0;
		border-top: 1px solid var(--az-white-16);
		border-left: 0;
	}
}

@media (max-width: 760px) {
	.az-container {
		width: min(100% - 32px, var(--az-content-max));
	}

	.az-site-header {
		background: var(--az-white-92);
		backdrop-filter: blur(18px);
	}

	.az-header-inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 10px;
		min-height: 72px;
	}

	.custom-logo {
		max-width: 144px;
		max-height: 32px;
	}

	.az-primary-navigation--desktop,
	.az-header-inner > .az-language-switcher {
		display: none;
	}

	.az-header-cta {
		min-height: 44px;
		padding: 11px 12px;
		font-size: 11px;
	}

	.az-site-header .az-mobile-menu > .az-mobile-menu-panel {
		position: absolute;
		top: calc(100% + 12px);
		right: 0;
		left: auto;
		width: min(330px, calc(100vw - 48px));
		max-width: calc(100vw - 48px);
		z-index: 110;
		min-height: 0;
		border: 1px solid var(--az-border);
		border-radius: var(--az-radius-sm);
		background: var(--az-white);
		box-shadow: var(--az-shadow-lg);
	}

	.az-section,
	.az-rich-text-section {
		padding-block: clamp(64px, 16vw, 88px);
	}

	.az-section + .az-section::before,
	.az-home-section + .az-home-section::before {
		left: 16px;
		right: 16px;
	}

	.az-hero {
		padding-block: 64px 72px;
	}

	.az-hero-title {
		font-size: clamp(44px, 13vw, 62px);
	}

	.az-section-title {
		font-size: clamp(36px, 11vw, 54px);
	}

	.az-feature-grid,
	.az-post-list {
		grid-template-columns: minmax(0, 1fr);
	}

	.az-feature-grid--bento .az-feature-card:first-child {
		grid-column: auto;
		grid-row: auto;
	}

	.az-feature-card {
		min-height: 0;
	}

	.az-footer-top {
		grid-template-columns: 1fr;
	}

	.az-footer-action {
		grid-column: auto;
	}
}

/* Premium visual rhythm. */
:root {
	--az-space-hero: clamp(58px, 5.4vw, 88px);
	--az-space-page: clamp(64px, 6vw, 100px);
}

.az-site-header {
	border-bottom-color: var(--az-border);
}

.az-header-inner {
	min-height: 80px;
}

.az-menu {
	gap: clamp(16px, 2vw, 30px);
}

.az-menu a,
.az-footer-menu a,
.az-language-link {
	letter-spacing: 0;
}

.az-section {
	padding-block: var(--az-space-page);
}

.az-integrations {
	padding-block: clamp(52px, 5.2vw, 78px);
}

.az-hero {
	min-height: min(720px, calc(100svh - 80px));
	padding-block: var(--az-space-hero);
}

.az-hero-grid {
	align-items: center;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(34px, 5.4vw, 72px);
}

.az-hero-content {
	position: relative;
	padding-block: 22px;
}

.az-hero-content::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -24px;
	width: 1px;
	background: var(--az-border);
	content: "";
}

.az-hero-title,
.az-section-title,
.az-entry-title,
.az-footer-action h2 {
	letter-spacing: 0;
}

.az-hero-title {
	max-width: 11.5ch;
	font-size: clamp(50px, 5.2vw, 82px);
	line-height: 0.99;
}

.az-hero-lead {
	max-width: 35ch;
	margin-top: 24px;
	line-height: 1.64;
}

.az-actions {
	gap: 14px;
	margin-top: 32px;
}

.az-actions .az-button {
	min-height: 52px;
	padding: 13px 20px;
}

.az-proof {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--az-border);
}

.az-hero-visual {
	position: relative;
	max-width: min(100%, 620px);
	padding: 22px 0 34px 22px;
	overflow: clip;
}

.az-hero-visual::before {
	position: absolute;
	top: 0;
	right: 28px;
	bottom: 0;
	left: 0;
	border: 1px solid var(--az-border);
	content: "";
	pointer-events: none;
}

.az-product-frame {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border: 1px solid var(--az-border);
	box-shadow: 0 30px 78px var(--az-black-12);
}

.az-product-frame::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 12%, rgb(255 255 255 / 0.16) 42%, transparent 58%);
	content: "";
	opacity: 0;
	pointer-events: none;
	transform: translateX(-120%);
}

.az-float-card {
	border: 1px solid var(--az-border);
}

.az-main--page .az-hero {
	min-height: min(680px, calc(100svh - 80px));
	padding-block: clamp(56px, 5vw, 82px);
}

.az-main--page .az-hero-grid {
	grid-template-columns: minmax(0, 0.98fr) minmax(380px, 1.02fr);
	gap: clamp(36px, 5vw, 72px);
}

.az-main--page .az-hero-title {
	max-width: 15ch;
	font-size: clamp(44px, 4.4vw, 70px);
	line-height: 1.04;
}

.az-main--page .az-hero-lead {
	max-width: 40ch;
	margin-top: 22px;
	font-size: clamp(16px, 1.25vw, 19px);
	line-height: 1.6;
}

.az-main--page .az-hero-visual {
	max-width: min(100%, 560px);
	justify-self: end;
}

.az-main--page .az-product-frame {
	box-shadow: 0 24px 58px var(--az-black-08);
}

.az-main--page .az-hero--pricing {
	min-height: 0;
	padding-block: clamp(44px, 5vw, 76px) clamp(32px, 4vw, 52px);
}

.az-main--page .az-hero--pricing .az-hero-grid {
	grid-template-columns: minmax(0, 820px);
}

.az-main--page .az-hero--pricing .az-hero-title {
	max-width: 780px;
	font-size: clamp(42px, 4.2vw, 66px);
	line-height: 1.04;
}

.az-main--page .az-hero--pricing .az-hero-lead {
	max-width: 680px;
}

.az-pricing-table-section {
	padding-block: clamp(56px, 6vw, 92px);
	background: var(--az-lightgray);
}

.az-pricing-table-heading {
	max-width: var(--az-content-max);
	margin-inline: auto;
	margin-bottom: clamp(26px, 3vw, 42px);
}

.az-pricing-table-heading .az-section-title {
	max-width: 760px;
	font-size: clamp(34px, 3.6vw, 52px);
	line-height: 1.08;
}

.az-pricing-table-heading > p:last-child {
	max-width: 640px;
	margin: 18px 0 0;
	color: var(--az-muted);
	font-size: clamp(17px, 1.4vw, 19px);
	line-height: 1.6;
}

.az-pricing-card {
	display: grid;
	grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
	overflow: hidden;
	max-width: var(--az-content-max);
	margin-inline: auto;
	border: 1px solid var(--az-border);
	border-radius: 16px;
	background: var(--az-white);
	box-shadow: 0 28px 80px var(--az-black-08);
}

.az-pricing-card-price,
.az-pricing-included {
	padding: clamp(28px, 3.8vw, 48px);
}

.az-pricing-card-price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: var(--az-black);
	color: var(--az-white);
}

.az-pricing-plan {
	margin: 0 0 26px;
	color: rgb(255 255 255 / 0.72);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.az-pricing-amount {
	margin: 0;
}

.az-pricing-amount strong,
.az-pricing-amount span {
	display: block;
}

.az-pricing-amount strong {
	font-size: clamp(52px, 5.6vw, 82px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 0.94;
}

.az-pricing-amount span {
	margin-top: 14px;
	color: rgb(255 255 255 / 0.78);
	font-size: 17px;
	line-height: 1.45;
}

.az-pricing-vat {
	margin: 18px 0 0;
	color: rgb(255 255 255 / 0.62);
	font-size: 14px;
	line-height: 1.55;
}

.az-pricing-actions {
	display: grid;
	gap: 12px;
	width: 100%;
	margin-top: auto;
	padding-top: 34px;
}

.az-pricing-actions .az-button {
	justify-content: center;
	min-height: 52px;
}

.az-pricing-actions .az-button span {
	margin-left: 8px;
}

.az-pricing-card-price .az-button--secondary {
	border-color: rgb(255 255 255 / 0.24);
	background: transparent;
	color: var(--az-white);
}

.az-pricing-included h3,
.az-pricing-details h3 {
	margin: 0 0 22px;
	font-size: clamp(24px, 2.2vw, 32px);
	line-height: 1.18;
}

.az-pricing-included ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.az-pricing-included li {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	color: var(--az-muted);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
}

.az-pricing-included li span {
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--az-lavender);
	color: var(--az-blue);
	font-size: 13px;
	font-weight: 800;
}

.az-pricing-details {
	max-width: var(--az-content-max);
	margin-top: clamp(24px, 3vw, 36px);
	margin-inline: auto;
	padding: clamp(26px, 3vw, 38px);
	border: 1px solid var(--az-border);
	border-radius: 16px;
	background: var(--az-white);
}

.az-pricing-details table {
	width: 100%;
	border-collapse: collapse;
}

.az-pricing-details th,
.az-pricing-details td {
	padding: 18px 0;
	border-top: 1px solid var(--az-border);
	vertical-align: top;
	text-align: left;
	line-height: 1.55;
}

.az-pricing-details th {
	width: 28%;
	padding-right: 24px;
	color: var(--az-black);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.az-pricing-details td {
	color: var(--az-muted);
	font-size: 16px;
}

.az-pricing-details > p {
	margin: 22px 0 0;
	padding-top: 20px;
	border-top: 1px solid var(--az-border);
	color: var(--az-muted);
	font-size: 15px;
	line-height: 1.6;
}

@media (min-width: 761px) and (max-width: 900px) {
	.az-main--page .az-hero:not(.az-hero--pricing) {
		min-height: 0;
	}

	.az-main--page .az-hero:not(.az-hero--pricing) .az-hero-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	.az-main--page .az-hero:not(.az-hero--pricing) .az-hero-title {
		max-width: 15ch;
		font-size: clamp(42px, 6.2vw, 54px);
	}

	.az-main--page .az-hero:not(.az-hero--pricing) .az-hero-visual {
		width: min(100%, 620px);
		justify-self: stretch;
	}
}

@media (max-width: 860px) {
	.az-pricing-card,
	.az-pricing-included ul {
		grid-template-columns: minmax(0, 1fr);
	}

	.az-pricing-actions {
		margin-top: 0;
	}
}

@media (max-width: 560px) {
	.az-main--page .az-hero-title {
		font-size: clamp(30px, 8.7vw, 38px);
		line-height: 1.1;
		overflow-wrap: anywhere;
	}

	.az-pricing-table-section {
		padding-block: 44px 56px;
	}

	.az-pricing-table-heading {
		margin-bottom: 24px;
	}

	.az-pricing-table-heading .az-section-title {
		font-size: clamp(30px, 9vw, 36px);
		line-height: 1.12;
	}

	.az-pricing-table-heading > p:last-child {
		font-size: 16px;
		line-height: 1.55;
	}

	.az-pricing-card-price,
	.az-pricing-included,
	.az-pricing-details {
		padding: 24px;
	}

	.az-pricing-details th,
	.az-pricing-details td {
		display: block;
		width: 100%;
		padding: 0;
	}

	.az-pricing-details th {
		padding-top: 18px;
		border-top: 1px solid var(--az-border);
	}

	.az-pricing-details td {
		padding-top: 6px;
	}
}

@keyframes az-product-frame-drift {
	from {
		transform: translateY(0);
	}

	to {
		transform: translateY(-8px);
	}
}

@keyframes az-product-frame-sheen {
	0%,
	54% {
		opacity: 0;
		transform: translateX(-120%);
	}

	64% {
		opacity: 0.78;
	}

	80%,
	100% {
		opacity: 0;
		transform: translateX(120%);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.az-hero-visual .az-product-frame {
		animation: az-product-frame-drift 6s var(--az-ease-out) 900ms infinite alternate;
	}

	.az-product-frame::after {
		animation: az-product-frame-sheen 8s var(--az-ease-premium) 1400ms infinite;
	}
}

@media (prefers-reduced-motion: reduce) {
	.az-button::after,
	.az-product-frame::after {
		transition: none;
		animation: none;
	}
}

@media (max-width: 760px) {
	.az-header-inner {
		min-height: 72px;
	}

	.az-section {
		padding-block: clamp(56px, 15vw, 76px);
	}

	.az-integrations {
		padding-block: 50px;
	}

	.az-hero {
		min-height: 0;
		padding-block: 44px 52px;
	}

	.az-hero-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}

	.az-hero-content {
		padding: 0;
	}

	.az-hero-content::before {
		display: none;
	}

	.az-hero-title {
		font-size: clamp(40px, 10.8vw, 50px);
		line-height: 1.05;
	}

	.az-main--page .az-hero {
		padding-block: 42px 50px;
	}

	.az-main--page .az-hero-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}

	.az-main--page .az-hero-title {
		max-width: none;
		font-size: clamp(36px, 9.6vw, 44px);
		line-height: 1.08;
	}

	.az-main--page .az-hero-lead {
		margin-top: 16px;
		font-size: 16px;
		line-height: 1.58;
	}

	.az-main--page .az-hero-visual {
		max-width: 100%;
		width: min(100%, 620px);
		justify-self: stretch;
	}

	.az-main--page .az-rich-text-section {
		padding-block: 48px;
	}

	.az-main--page .az-rich-text {
		font-size: 16px;
		line-height: 1.62;
	}

	.az-main--page .az-rich-text h2 {
		font-size: clamp(30px, 8vw, 38px);
	}

	.az-main--page .az-rich-text h3 {
		margin-top: 28px;
		padding-top: 18px;
		font-size: 22px;
	}

	.az-main--page .az-rich-text ul {
		grid-template-columns: minmax(0, 1fr);
	}

	.az-hero-lead {
		margin-top: 18px;
		font-size: 16px;
		line-height: 1.62;
	}

	.az-actions {
		gap: 10px;
		margin-top: 22px;
	}

	.az-equation {
		gap: 10px;
		margin: 20px 0;
		padding-top: 16px;
		font-size: 18px;
	}

	.az-proof {
		margin-top: 18px;
		padding-top: 16px;
		font-size: 13px;
	}

	.az-actions .az-button {
		min-height: 50px;
		padding: 12px 16px;
	}

	.az-hero-visual {
		padding: 14px 0 18px 14px;
	}

	.az-hero-visual::before {
		right: 14px;
	}

	.az-float-card--bottom {
		display: none;
	}
}

@media (max-width: 400px) {
	.az-hero-title {
		max-width: none;
		font-size: clamp(40px, 10.8vw, 44px);
	}
}

/* Premium subpage direction. */
.az-main--page .az-hero:not(.az-hero--pricing) {
	position: relative;
	isolation: isolate;
	min-height: min(760px, calc(100svh - var(--az-header-height)));
	background:
		linear-gradient(135deg, rgb(98 103 199 / 0.2) 0%, rgb(98 103 199 / 0) 42%),
		linear-gradient(90deg, rgb(11 13 18 / 0.98) 0%, rgb(11 13 18 / 0.9) 48%, rgb(11 13 18 / 0.72) 100%),
		var(--az-black);
	color: var(--az-white);
}

.az-main--page .az-hero:not(.az-hero--pricing)::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgb(255 255 255 / 0.055) 0 1px, transparent 1px 100%),
		linear-gradient(180deg, rgb(255 255 255 / 0.04) 0 1px, transparent 1px 100%);
	background-size: 92px 92px;
	content: "";
	mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.az-main--page .az-hero:not(.az-hero--pricing)::after {
	position: absolute;
	right: max(24px, calc((100% - var(--az-content-max)) / 2));
	bottom: 0;
	left: max(24px, calc((100% - var(--az-content-max)) / 2));
	height: 1px;
	background: var(--az-white-16);
	content: "";
}

.az-main--page .az-hero:not(.az-hero--pricing) .az-hero-content::before {
	background: var(--az-white-16);
}

.az-main--page .az-hero:not(.az-hero--pricing) .az-eyebrow,
.az-main--page .az-hero:not(.az-hero--pricing) .az-hero-lead,
.az-main--page .az-hero:not(.az-hero--pricing) .az-hero-lead p,
.az-main--page .az-hero:not(.az-hero--pricing) .az-proof {
	color: var(--az-white-72);
}

.az-main--page .az-hero:not(.az-hero--pricing) .az-eyebrow::before,
.az-main--page .az-hero:not(.az-hero--pricing) .az-equation span {
	background: var(--az-lavender);
}

.az-main--page .az-hero:not(.az-hero--pricing) .az-hero-title,
.az-main--page .az-hero:not(.az-hero--pricing) .az-equation {
	color: var(--az-white);
}

.az-main--page .az-hero:not(.az-hero--pricing) .az-hero-title span {
	color: var(--az-lavender);
}

.az-main--page .az-hero:not(.az-hero--pricing) .az-equation,
.az-main--page .az-hero:not(.az-hero--pricing) .az-proof {
	border-top-color: var(--az-white-16);
}

.az-main--page .az-hero:not(.az-hero--pricing) .az-button--secondary {
	border-color: var(--az-white-16);
	background: transparent;
	color: var(--az-white);
}

.az-main--page .az-hero:not(.az-hero--pricing) .az-hero-visual::before {
	border-color: var(--az-white-16);
}

.az-main--page .az-hero:not(.az-hero--pricing) .az-product-frame {
	border-color: var(--az-white-16);
	box-shadow: 0 36px 96px rgb(0 0 0 / 0.36);
}

body.page-id-124 .az-main--page .az-hero:not(.az-hero--pricing) .az-browser-bar,
body.page-id-125 .az-main--page .az-hero:not(.az-hero--pricing) .az-browser-bar {
	display: none;
}

body.page-id-124 .az-main--page .az-hero:not(.az-hero--pricing) .az-product-frame,
body.page-id-125 .az-main--page .az-hero:not(.az-hero--pricing) .az-product-frame {
	background: rgb(11 13 18 / 0.2);
}

body.page-id-124 .az-main--page .az-hero:not(.az-hero--pricing) .az-product-frame img,
body.page-id-125 .az-main--page .az-hero:not(.az-hero--pricing) .az-product-frame img {
	aspect-ratio: 3 / 2;
	background: transparent;
	object-fit: contain;
}

.az-main--page .az-hero:not(.az-hero--pricing) .az-float-card {
	border-color: var(--az-white-16);
	background: rgb(11 13 18 / 0.74);
	box-shadow: none;
	color: var(--az-white);
}

.az-main--page .az-hero:not(.az-hero--pricing) .az-float-card strong,
.az-main--page .az-hero:not(.az-hero--pricing) .az-float-card small {
	color: var(--az-white);
}

.az-main--page .az-hero:not(.az-hero--pricing) .az-float-card small {
	color: var(--az-white-72);
}

.az-main--page .az-feature-grid-section,
.az-main--page .az-form-section,
.az-main--page .az-faq-section {
	background:
		linear-gradient(180deg, rgb(255 255 255 / 0.74), rgb(255 255 255 / 0.92)),
		var(--az-lightgray);
}

.az-main--page .az-feature-grid {
	gap: 16px;
	border: 0;
	background: transparent;
}

.az-main--page .az-feature-card {
	position: relative;
	overflow: hidden;
	min-height: clamp(280px, 24vw, 360px);
	padding: clamp(28px, 3.2vw, 44px);
	border: 1px solid var(--az-border);
	border-radius: var(--az-radius-md);
	background: var(--az-white);
	box-shadow: 0 1px 0 rgb(255 255 255 / 0.92) inset;
	transition: border-color var(--az-duration-fast) ease, box-shadow var(--az-duration-fast) ease, transform var(--az-duration-fast) var(--az-ease-premium);
}

.az-main--page .az-feature-card::before {
	display: block;
	top: clamp(24px, 2.6vw, 34px);
	right: clamp(28px, 3.2vw, 44px);
	left: clamp(28px, 3.2vw, 44px);
	height: 1px;
	border-radius: 0;
	background: var(--az-border);
}

.az-main--page .az-feature-card::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 88px;
	height: 88px;
	background:
		linear-gradient(135deg, transparent 0 49%, rgb(98 103 199 / 0.26) 50%, transparent 51%),
		linear-gradient(135deg, transparent 0 65%, rgb(11 13 18 / 0.05) 66%, transparent 67%);
	content: "";
	opacity: 0.72;
	pointer-events: none;
}

.az-main--page .az-feature-grid--bento .az-feature-card:first-child {
	border-color: var(--az-black);
	background: var(--az-black);
	color: var(--az-white);
}

.az-main--page .az-feature-grid--bento .az-feature-card:first-child::before {
	background: var(--az-white-16);
}

.az-main--page .az-feature-grid--bento .az-feature-card:first-child::after {
	background:
		linear-gradient(135deg, transparent 0 49%, rgb(255 255 255 / 0.28) 50%, transparent 51%),
		linear-gradient(135deg, transparent 0 65%, rgb(255 255 255 / 0.1) 66%, transparent 67%);
}

.az-main--page .az-feature-grid--bento .az-feature-card:first-child .az-feature-number,
.az-main--page .az-feature-grid--bento .az-feature-card:first-child h3,
.az-main--page .az-feature-grid--bento .az-feature-card:first-child .az-inline-link {
	color: var(--az-white);
}

.az-main--page .az-feature-grid--bento .az-feature-card:first-child p,
.az-main--page .az-feature-grid--bento .az-feature-card:first-child .az-feature-result {
	color: var(--az-white-72);
}

.az-main--page .az-content-split-grid {
	align-items: stretch;
}

.az-main--page .az-content-split-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-block: clamp(18px, 3vw, 34px);
	border-block: 1px solid var(--az-border);
}

.az-main--page .az-content-split-media {
	min-height: min(560px, 46vw);
	border-radius: var(--az-radius-lg);
}

.az-main--page .az-rich-text {
	position: relative;
	padding-left: clamp(22px, 3vw, 40px);
	border-left: 1px solid var(--az-border);
}

.az-main--page > .az-rich-text-section:last-of-type .az-rich-text {
	border-left: 1px solid var(--az-black);
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.az-main--page > .az-rich-text-section:last-of-type .az-rich-text::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgb(255 255 255 / 0.06) 0 1px, transparent 1px 100%),
		linear-gradient(180deg, rgb(255 255 255 / 0.045) 0 1px, transparent 1px 100%);
	background-size: 72px 72px;
	content: "";
	mask-image: linear-gradient(90deg, #000 0%, #000 42%, transparent 100%);
}

.az-main--page > .az-rich-text-section:last-of-type .az-rich-text::after {
	position: absolute;
	right: clamp(28px, 4vw, 54px);
	bottom: clamp(28px, 4vw, 54px);
	width: clamp(72px, 9vw, 132px);
	height: 1px;
	background: linear-gradient(90deg, rgb(255 255 255 / 0), var(--az-lavender));
	content: "";
}

.az-main--page .az-form-grid {
	align-items: stretch;
}

.az-main--page .az-form-intro {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	justify-content: center;
	padding: clamp(32px, 4.5vw, 64px);
	border-radius: var(--az-radius-md);
	background: var(--az-black);
	color: var(--az-white);
}

.az-main--page .az-form-intro .az-eyebrow,
.az-main--page .az-form-intro .az-content-split-body,
.az-main--page .az-form-intro .az-content-split-body p {
	color: var(--az-white-72);
}

.az-main--page .az-form-intro .az-eyebrow::before {
	background: var(--az-lavender);
}

.az-main--page .az-form-intro .az-section-title {
	color: var(--az-white);
}

.az-main--page .az-form-shell {
	padding: clamp(28px, 4vw, 48px);
	border-radius: var(--az-radius-md);
	background: var(--az-white);
	box-shadow: var(--az-shadow-sm);
}

.az-main--page .az-native-form input,
.az-main--page .az-native-form textarea {
	min-height: 50px;
	border-radius: var(--az-radius-xs);
	background: rgb(238 242 248 / 0.42);
	transition: border-color var(--az-duration-fast) ease, background-color var(--az-duration-fast) ease, box-shadow var(--az-duration-fast) ease;
}

.az-main--page .az-native-form textarea {
	min-height: 150px;
}

.az-main--page .az-native-form input:focus,
.az-main--page .az-native-form textarea:focus {
	border-color: rgb(98 103 199 / 0.58);
	background: var(--az-white);
	box-shadow: 0 0 0 4px rgb(98 103 199 / 0.1);
}

.az-main--page .az-faq-list {
	padding: clamp(22px, 3vw, 36px);
	border: 1px solid var(--az-border);
	border-radius: var(--az-radius-md);
	background: var(--az-white);
}

@media (hover: hover) {
	.az-main--page .az-faq-list details:hover summary {
		color: var(--az-indigo);
	}

	.az-main--page .az-faq-list details:hover summary span {
		transform: rotate(90deg) scale(1.04);
	}
}

.az-archive {
	padding-block: clamp(72px, 9vw, 132px);
	background:
		linear-gradient(180deg, rgb(255 255 255 / 0.72), rgb(238 242 248 / 0.92)),
		var(--az-lightgray);
}

.az-archive > .az-container {
	width: min(100% - 48px, var(--az-content-max));
}

.az-archive-header {
	max-width: 820px;
	margin-bottom: clamp(36px, 5vw, 64px);
	padding-bottom: clamp(26px, 3vw, 38px);
	border-bottom: 1px solid var(--az-border);
}

.az-archive .az-entry-title {
	font-size: clamp(52px, 7vw, 96px);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 0.98;
}

.az-empty-state {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: clamp(28px, 4vw, 48px);
	border: 1px solid var(--az-border);
	border-radius: var(--az-radius-md);
	background: var(--az-white);
	box-shadow: var(--az-shadow-sm);
	font-size: clamp(17px, 1.4vw, 20px);
	line-height: 1.55;
}

@media (hover: hover) {
	.az-main--page .az-feature-card:hover {
		border-color: rgb(98 103 199 / 0.38);
		box-shadow: 0 18px 48px var(--az-black-08), 0 1px 0 rgb(255 255 255 / 0.92) inset;
		transform: translateY(-3px);
	}

	.az-main--page .az-hero:not(.az-hero--pricing) .az-button--secondary:hover {
		border-color: var(--az-white);
		background: var(--az-white);
		color: var(--az-black);
	}
}

@media (max-width: 900px) {
	.az-main--page .az-hero:not(.az-hero--pricing) {
		min-height: 0;
	}

	.az-main--page .az-hero:not(.az-hero--pricing) .az-hero-grid,
	.az-main--page .az-form-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.az-main--page .az-feature-grid,
	.az-main--page .az-feature-grid--bento {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.az-main--page .az-feature-grid--bento .az-feature-card:first-child {
		grid-column: 1 / -1;
		min-height: 320px;
	}
}

@media (max-width: 620px) {
	.az-main--page .az-hero:not(.az-hero--pricing) {
		padding-block: 46px 56px;
	}

	.az-main--page .az-feature-grid,
	.az-main--page .az-feature-grid--bento {
		grid-template-columns: minmax(0, 1fr);
	}

	.az-main--page .az-feature-grid--bento .az-feature-card:first-child,
	.az-main--page .az-feature-card {
		min-height: 0;
	}

	.az-main--page .az-content-split-copy {
		padding-block: 24px;
	}

	.az-main--page .az-rich-text {
		padding-left: 18px;
	}

	.az-main--page .az-form-intro,
	.az-main--page .az-form-shell,
	.az-main--page .az-faq-list,
	.az-empty-state {
		padding: 24px;
	}

	.az-empty-state {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* Aira-inspired homepage composition: cinematic chapters and product-led scale. */
:root {
	--az-space-hero: clamp(96px, 10vw, 154px);
	--az-space-page: clamp(78px, 8vw, 132px);
	--az-header-height: 76px;
}

body.home .az-site-header .az-container,
body.front-page .az-site-header .az-container,
.az-main--front .az-hero .az-container {
	width: min(100% - 48px, var(--az-content-max));
}

body.home .az-site-header,
body.front-page .az-site-header {
	border-bottom-color: transparent;
	background: rgb(11 13 18 / 0.04);
	backdrop-filter: none;
}

body.home .az-site-header:not(.is-scrolled),
body.front-page .az-site-header:not(.is-scrolled) {
	color: var(--az-white);
}

body.home .az-site-header.is-scrolled,
body.front-page .az-site-header.is-scrolled {
	border-bottom-color: rgb(221 227 238 / 0.82);
	background: rgb(255 255 255 / 0.92);
	box-shadow: 0 12px 34px rgb(11 13 18 / 0.08);
	backdrop-filter: blur(18px);
}

body.home .az-site-header:not(.is-scrolled) .az-wordmark,
body.home .az-site-header:not(.is-scrolled) .az-menu a,
body.home .az-site-header:not(.is-scrolled) .az-language-link,
body.front-page .az-site-header:not(.is-scrolled) .az-wordmark,
body.front-page .az-site-header:not(.is-scrolled) .az-menu a,
body.front-page .az-site-header:not(.is-scrolled) .az-language-link {
	color: var(--az-white);
}

body.home .az-site-header:not(.is-scrolled) .custom-logo,
body.front-page .az-site-header:not(.is-scrolled) .custom-logo {
	filter: brightness(0) invert(1);
}

body.home .az-site-header:not(.is-scrolled) .az-header-cta,
body.front-page .az-site-header:not(.is-scrolled) .az-header-cta {
	border-color: var(--az-white);
	background: var(--az-white);
	color: var(--az-black);
}

body.home .az-site-header:not(.is-scrolled) .az-language-link.is-current,
body.front-page .az-site-header:not(.is-scrolled) .az-language-link.is-current {
	border-bottom-color: var(--az-white);
}

.az-header-inner {
	min-height: var(--az-header-height);
}

.az-site-header .az-mobile-menu > summary {
	min-width: 44px;
	min-height: 44px;
}

body.home .az-site-header:not(.is-scrolled) .az-mobile-menu > summary,
body.front-page .az-site-header:not(.is-scrolled) .az-mobile-menu > summary {
	border-color: rgb(255 255 255 / 0.28);
	color: var(--az-white);
}

body.home .az-site-header:not(.is-scrolled) .az-mobile-menu-icon,
body.home .az-site-header:not(.is-scrolled) .az-mobile-menu-icon::before,
body.home .az-site-header:not(.is-scrolled) .az-mobile-menu-icon::after,
body.front-page .az-site-header:not(.is-scrolled) .az-mobile-menu-icon,
body.front-page .az-site-header:not(.is-scrolled) .az-mobile-menu-icon::before,
body.front-page .az-site-header:not(.is-scrolled) .az-mobile-menu-icon::after {
	background: var(--az-white);
}

.az-main--front {
	background: var(--az-white);
}

.az-main--front .az-hero {
	position: relative;
	display: grid;
	align-content: center;
	isolation: isolate;
	min-height: 100svh;
	margin-top: calc(-1 * var(--az-header-height));
	padding-block: calc(var(--az-header-height) + clamp(52px, 6vw, 104px)) clamp(64px, 7vw, 118px);
	border: 0;
	background:
		linear-gradient(135deg, rgb(76 94 129 / 0.32) 0%, rgb(11 13 18 / 0) 42%),
		linear-gradient(90deg, rgb(11 13 18 / 0.98) 0%, rgb(11 13 18 / 0.88) 48%, rgb(11 13 18 / 0.58) 100%),
		var(--az-black);
	color: var(--az-white);
	overflow: hidden;
}

.az-main--front .az-hero::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgb(11 13 18 / 0.98) 0%, rgb(11 13 18 / 0.74) 50%, rgb(11 13 18 / 0.34) 100%),
		url("../../../../uploads/start.webp") 72% center / cover no-repeat,
		var(--az-black);
	content: "";
}

.az-main--front .az-hero::after {
	position: absolute;
	inset: auto max(24px, calc((100% - var(--az-content-max)) / 2)) 0;
	height: 1px;
	background: rgb(255 255 255 / 0.16);
	content: "";
	pointer-events: none;
}

.az-main--front .az-hero-grid {
	align-items: center;
	grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
	gap: clamp(32px, 3.8vw, 58px);
}

.az-main--front .az-hero-content {
	max-width: 680px;
	padding-block: 18px;
}

.az-main--front .az-hero-content::before {
	background: rgb(255 255 255 / 0.16);
}

.az-main--front .az-hero .az-eyebrow,
.az-main--front .az-hero-title,
.az-main--front .az-hero-title span,
.az-main--front .az-hero-lead,
.az-main--front .az-hero-lead p,
.az-main--front .az-equation,
.az-main--front .az-proof {
	color: var(--az-white);
}

.az-main--front .az-hero .az-eyebrow {
	color: rgb(255 255 255 / 0.72);
}

.az-main--front .az-hero .az-eyebrow::before {
	background: var(--az-lavender);
}

.az-main--front .az-hero-title {
	max-width: 680px;
	font-size: clamp(42px, 3.9vw, 56px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.06;
	hyphens: manual;
	overflow-wrap: normal;
	word-break: normal;
}

.az-main--front .az-hero-title span {
	display: block;
	color: var(--az-lavender);
}

.az-main--front .az-hero-lead {
	max-width: 560px;
	color: rgb(255 255 255 / 0.72);
	font-size: clamp(16px, 1.25vw, 19px);
	line-height: 1.58;
}

.az-motion-ready .az-main--front .az-hero-visual[data-az-reveal] {
	transform: translate3d(24px, 0, 0) scale(0.985);
}

.az-motion-ready .az-main--front .az-hero-visual[data-az-reveal].is-visible {
	transform: translate3d(0, 0, 0) scale(1);
}

.az-main--front .az-equation {
	border-top-color: rgb(255 255 255 / 0.16);
}

.az-main--front .az-equation span {
	background: rgb(255 255 255 / 0.08);
	color: var(--az-lavender);
}

.az-main--front .az-actions .az-button {
	min-height: 44px;
	border-radius: 999px;
	padding-inline: 18px;
	font-size: 13px;
}

.az-main--front .az-button--primary {
	border-color: var(--az-white);
	background: var(--az-white);
	color: var(--az-black);
}

.az-main--front .az-button--secondary {
	border-color: rgb(255 255 255 / 0.28);
	background: transparent;
	color: var(--az-white);
}

.az-main--front .az-proof {
	border-top-color: rgb(255 255 255 / 0.16);
	color: rgb(255 255 255 / 0.72);
}

.az-main--front .az-hero-visual {
	justify-self: end;
	width: min(100%, 790px);
	max-width: none;
	padding: clamp(12px, 1.6vw, 24px) clamp(18px, 1.8vw, 28px) clamp(20px, 2.6vw, 38px) clamp(12px, 1.6vw, 24px);
	transform: translateX(clamp(20px, 3.2vw, 54px));
}

.az-main--front .az-hero-visual::before {
	right: clamp(18px, 2vw, 34px);
	border-color: rgb(255 255 255 / 0.16);
}

.az-main--front .az-product-frame {
	border-color: rgb(255 255 255 / 0.12);
	border-radius: 18px;
	background: rgb(11 13 18 / 0.18);
	box-shadow: 0 40px 110px rgb(11 13 18 / 0.56);
	transform: perspective(1100px) rotateZ(-2deg) rotateY(-5deg);
	transform-origin: center;
}

.az-main--front .az-browser-bar {
	display: none;
}

.az-main--front .az-product-frame img {
	aspect-ratio: 3 / 2;
	background: var(--az-white);
	object-fit: contain;
	object-position: 50% 50%;
}

.az-main--front .az-float-card {
	max-width: 236px;
	border-color: rgb(255 255 255 / 0.16);
	border-radius: 999px;
	background: rgb(11 13 18 / 0.72);
	box-shadow: none;
	color: var(--az-white);
}

.az-main--front .az-float-card--top {
	top: 34px;
	right: 28px;
}

.az-main--front .az-float-card--bottom {
	bottom: 14px;
	left: 22px;
}

.az-main--front .az-float-card strong {
	color: var(--az-white);
}

.az-main--front .az-float-card small {
	color: rgb(255 255 255 / 0.72);
}

.az-main--front .az-float-icon {
	border-color: rgb(255 255 255 / 0.16);
	background: rgb(255 255 255 / 0.08);
	color: var(--az-lavender);
}

.az-site-footer {
	border-top: 1px solid var(--az-border);
	background: var(--az-white);
	color: var(--az-text);
}

.az-footer-shell {
	padding-block: clamp(44px, 5vw, 72px) 22px;
}

.az-footer-top {
	gap: clamp(26px, 3vw, 48px);
	padding-bottom: clamp(30px, 3vw, 44px);
}

.az-footer-top,
.az-footer-bottom,
.az-footer-contact {
	border-color: var(--az-border);
}

.az-footer-bottom {
	padding-block: 18px;
}

.az-footer-action {
	border-left-color: var(--az-border);
}

.az-footer-brand .az-footer-contact {
	margin-top: 24px;
	padding-top: 20px;
}

.az-site-footer .az-wordmark,
.az-footer-action h2,
.az-footer-contact-link,
.az-site-footer .az-language-link.is-current {
	color: var(--az-black);
}

.az-footer-brand p,
.az-footer-action-copy,
.az-footer-copy,
.az-footer-language,
.az-footer-contact-label,
.az-site-footer .az-footer-menu a,
.az-site-footer .az-language-link,
.az-footer-highlights,
.az-footer-contact-link span,
.az-footer-contact-line span,
.az-footer-address span {
	color: var(--az-muted);
}

.az-footer-brand .az-footer-group,
.az-footer-contact-line,
.az-footer-address {
	color: var(--az-black);
}

.az-site-footer .az-footer-menu a,
.az-site-footer .az-footer-trial,
.az-site-footer .az-footer-contact-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
}

.az-site-footer .az-footer-menu a {
	min-width: 44px;
}

.az-footer-label {
	color: var(--az-navy);
}

.az-footer-highlights li::before {
	background: var(--az-indigo);
}

.az-footer-cta.az-button--secondary {
	border-color: var(--az-border);
	background: var(--az-white);
	color: var(--az-black);
}

.az-footer-trial {
	color: var(--az-blue);
}

@media (max-width: 760px) {
	.az-footer-shell {
		padding-block: 44px 20px;
	}

	.az-footer-top {
		gap: 26px;
		padding-bottom: 30px;
	}
}

@media (min-width: 900px) and (max-width: 1060px) {
	.az-main--front .az-hero-grid {
		grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
		gap: 24px;
	}

	.az-main--front .az-hero-title {
		font-size: clamp(38px, 4.1vw, 44px);
	}

	.az-main--front .az-hero-visual {
		width: min(100%, 650px);
	}
}

@media (max-width: 899px) {
	body.home .az-site-header,
	body.front-page .az-site-header {
		background: rgb(255 255 255 / 0.92);
		backdrop-filter: blur(18px);
	}

	body.home .az-site-header:not(.is-scrolled),
	body.front-page .az-site-header:not(.is-scrolled) {
		color: var(--az-black);
	}

	body.home .az-site-header:not(.is-scrolled) .az-wordmark,
	body.home .az-site-header:not(.is-scrolled) .az-menu a,
	body.home .az-site-header:not(.is-scrolled) .az-language-link,
	body.front-page .az-site-header:not(.is-scrolled) .az-wordmark,
	body.front-page .az-site-header:not(.is-scrolled) .az-menu a,
	body.front-page .az-site-header:not(.is-scrolled) .az-language-link {
		color: var(--az-black);
	}

	body.home .az-site-header:not(.is-scrolled) .custom-logo,
	body.front-page .az-site-header:not(.is-scrolled) .custom-logo {
		filter: none;
	}

	body.home .az-site-header:not(.is-scrolled) .az-header-cta,
	body.front-page .az-site-header:not(.is-scrolled) .az-header-cta {
		border-color: var(--az-blue);
		background: var(--az-blue);
		color: var(--az-white);
	}

	body.home .az-site-header:not(.is-scrolled) .az-mobile-menu > summary,
	body.front-page .az-site-header:not(.is-scrolled) .az-mobile-menu > summary {
		border-color: var(--az-border);
		color: var(--az-black);
	}

	body.home .az-site-header:not(.is-scrolled) .az-mobile-menu-icon,
	body.home .az-site-header:not(.is-scrolled) .az-mobile-menu-icon::before,
	body.home .az-site-header:not(.is-scrolled) .az-mobile-menu-icon::after,
	body.front-page .az-site-header:not(.is-scrolled) .az-mobile-menu-icon,
	body.front-page .az-site-header:not(.is-scrolled) .az-mobile-menu-icon::before,
	body.front-page .az-site-header:not(.is-scrolled) .az-mobile-menu-icon::after {
		background: var(--az-black);
	}

	body.home .az-site-header:not(.is-scrolled) .az-mobile-menu[open] .az-mobile-menu-icon,
	body.front-page .az-site-header:not(.is-scrolled) .az-mobile-menu[open] .az-mobile-menu-icon {
		background: transparent;
	}

	.az-site-header .az-mobile-menu-panel .az-menu a,
	.az-site-header .az-mobile-menu-panel .az-language-link {
		display: flex;
		min-height: 44px;
		align-items: center;
	}

	.az-site-header .az-mobile-menu-panel .az-language-link {
		min-width: 44px;
		justify-content: center;
	}

	.az-site-footer .az-footer-menu a,
	.az-site-footer .az-footer-trial,
	.az-site-footer .az-footer-contact-link,
	.az-site-footer .az-language-link {
		display: inline-flex;
		min-height: 44px;
		align-items: center;
	}

	.az-site-footer .az-footer-menu a {
		min-width: 44px;
	}

	.az-site-footer .az-language-link {
		min-width: 44px;
		justify-content: center;
	}

	.az-main--front .az-hero {
		min-height: calc(100svh - var(--az-header-height));
		margin-top: 0;
		padding-block: clamp(52px, 14vw, 78px) clamp(58px, 14vw, 84px);
	}

	.az-main--front .az-hero-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.az-main--front .az-hero-title {
		max-width: 100%;
		font-size: clamp(42px, 12.4vw, 52px);
		line-height: 1.12;
	}

	.az-main--front .az-product-frame {
		transform: none;
	}

	.az-main--front .az-hero-visual {
		justify-self: stretch;
		width: 100%;
		transform: none;
	}
}

@media (max-width: 430px) {
	.az-main--front .az-hero-title {
		font-size: clamp(27px, 8.4vw, 36px);
		line-height: 1.1;
	}

	.az-main--front .az-actions {
		align-items: stretch;
	}

	.az-main--front .az-actions .az-button {
		width: 100%;
		justify-content: center;
	}

	.az-main--front .az-product-frame img {
		aspect-ratio: 3 / 2;
		object-position: 50% 50%;
	}
}