:root {
	--np-page-bg: #ffffff;
	--np-surface: #ffffff;
	--np-text: #1f2933;
	--np-muted: #667085;
	--np-border: #e6e8ec;
	--np-accent: #e63946;
	--np-secondary: #2563eb;
	--np-link: #1d4ed8;
	--np-link-hover: #e63946;
	--np-header-bg: #ffffff;
	--np-header-text: #151515;
	--np-header-border: #e6e8ec;
	--np-heading: #151515;
	--np-body-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--np-heading-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--np-body-size: 16px;
	--np-body-line-height: 1.7;
	--np-h1-size: 42px;
	--np-h2-size: 32px;
	--np-h3-size: 24px;
	--np-container: 1320px;
	--np-reading-progress: #e63946;
}

*,
::before,
::after {
	border-color: currentColor;
	border-style: solid;
	border-width: 0;
	box-sizing: border-box;
}

body {
	background: var(--np-page-bg);
	color: var(--np-text);
	font-family: var(--np-body-font);
	font-size: var(--np-body-size);
	line-height: var(--np-body-line-height);
	margin: 0;
}

a {
	color: var(--np-link);
	text-decoration: none;
}

a:hover {
	color: var(--np-link-hover);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--np-heading);
	font-family: var(--np-heading-font);
	line-height: 1.16;
	margin: 0 0 0.65em;
}

h1 {
	font-size: var(--np-h1-size);
}

h2 {
	font-size: var(--np-h2-size);
}

h3 {
	font-size: var(--np-h3-size);
}

.np-primary-menu ul,
.np-footer-bottom ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

.np-primary-menu a {
	color: inherit;
	font-size: 14px;
	font-weight: 700;
}

.np-header-cta {
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
	white-space: nowrap;
}

.np-header-cta:hover {
	transform: translateY(-1px);
}

.np-entry-content p,
.np-card-excerpt p {
	margin: 0 0 1.2em;
}

.np-entry-content ul,
.np-entry-content ol {
	margin: 0 0 1.2em 1.4em;
}

.np-entry-content blockquote {
	border-left: 4px solid var(--np-accent);
	color: var(--np-muted);
	margin: 1.5em 0;
	padding-left: 1em;
}

.np-widget + .np-widget {
	margin-top: 18px;
}

.np-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.np-widget li + li {
	margin-top: 8px;
}

.np-post-grid .np-card:last-child {
	border-bottom-width: 1px;
}

.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.navigation.pagination .page-numbers {
	align-items: center;
	border: 1px solid var(--np-border);
	border-radius: 6px;
	display: inline-flex;
	font-weight: 700;
	min-height: 40px;
	padding: 0 14px;
}

.navigation.pagination .page-numbers.current {
	background: var(--np-accent);
	border-color: var(--np-accent);
	color: #ffffff;
}

.np-content-layout.no-sidebar {
	grid-template-columns: minmax(0, 860px);
	justify-content: center;
}

.np-container {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--np-container);
	width: 100%;
}

.grid {
	display: grid;
}

.flex {
	display: flex;
}

.inline-flex {
	display: inline-flex;
}

.block {
	display: block;
}

.hidden {
	display: none;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed {
	position: fixed;
}

.overflow-hidden {
	overflow: hidden;
}

.items-center {
	align-items: center;
}

.items-start {
	align-items: flex-start;
}

.items-end {
	align-items: flex-end;
}

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

.justify-between {
	justify-content: space-between;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-col {
	flex-direction: column;
}

.w-full {
	width: 100%;
}

.h-full {
	height: 100%;
}

.object-cover {
	object-fit: cover;
}

.rounded,
.rounded-md {
	border-radius: 6px;
}

.rounded-lg {
	border-radius: 8px;
}

.rounded-full {
	border-radius: 999px;
}

.border {
	border-width: 1px;
}

.border-b {
	border-bottom-width: 1px;
}

.bg-white {
	background: #ffffff;
}

.bg-slate-50 {
	background: #f8fafc;
}

.bg-slate-100 {
	background: #f1f5f9;
}

.bg-slate-950 {
	background: #020617;
}

.bg-red-600 {
	background: #dc2626;
}

.text-white {
	color: #ffffff;
}

.text-red-600 {
	color: #dc2626;
}

.text-slate-950 {
	color: #020617;
}

.text-slate-900 {
	color: #0f172a;
}

.text-slate-700 {
	color: #334155;
}

.text-slate-600 {
	color: #475569;
}

.text-slate-500 {
	color: #64748b;
}

.font-bold {
	font-weight: 700;
}

.font-black {
	font-weight: 950;
}

.uppercase {
	text-transform: uppercase;
}

.shadow-sm {
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.transition {
	transition: all 160ms ease;
}

.np-site-header {
	background: var(--np-header-bg);
	border-bottom: 1px solid var(--np-header-border);
	color: var(--np-header-text);
	position: sticky;
	top: 0;
	z-index: 20;
}

.np-site-header > .np-container,
.np-ad,
.np-breadcrumb,
.np-main > .np-container,
.np-site-footer > .np-container {
	padding-left: 24px;
	padding-right: 24px;
}

.np-header-inner {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(180px, auto) 1fr auto auto;
	min-height: 72px;
}

.np-site-branding {
	align-items: center;
	display: flex;
	gap: 12px;
	min-width: 0;
}

.np-logo {
	align-items: center;
	color: inherit;
	display: inline-flex;
	font-family: var(--np-heading-font);
	font-size: 24px;
	font-weight: 800;
}

.np-logo img {
	max-height: 54px;
	width: auto;
}

.np-site-description {
	color: var(--np-muted);
	font-size: 13px;
	margin: 0;
}

.np-header-cta,
.np-icon-button {
	align-items: center;
	display: inline-flex;
	justify-content: center;
}

.np-icon-button {
	background: transparent;
	border: 1px solid var(--np-border);
	border-radius: 6px;
	color: inherit;
	cursor: pointer;
	height: 36px;
	width: 36px;
}

.np-reading-progress {
	background: var(--np-reading-progress);
	height: 3px;
	left: 0;
	position: fixed;
	top: 0;
	transform: scaleX(0);
	transform-origin: left;
	width: 100%;
	z-index: 9999;
}

body:not(.home) .np-main {
	padding-bottom: 48px;
	padding-top: 36px;
}

.np-breadcrumb {
	color: var(--np-muted);
	font-size: 14px;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--np-container);
	padding-bottom: 16px;
	padding-top: 16px;
	width: 100%;
}

.np-breadcrumb ol,
.np-entry-meta,
.np-share-bar,
.np-post-tags,
.np-related-posts > div:first-child,
.np-footer-bottom,
.np-admin-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.np-breadcrumb ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.np-breadcrumb li {
	list-style: none;
}

.np-content-layout {
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 1fr) 320px;
}

.np-content-layout.no-sidebar {
	grid-template-columns: minmax(0, 860px);
	justify-content: center;
}

.np-post-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.np-archive-list {
	grid-template-columns: 1fr;
}

.np-archive-list .np-card {
	grid-template-columns: 240px 1fr;
}

.np-archive-header {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	margin-bottom: 32px;
	padding: 32px;
}

.np-archive-header p,
.np-author-box p:first-child,
.np-related-posts p:first-child {
	color: #dc2626;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.04em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.np-archive-header h1,
.np-entry-title {
	color: #020617;
	font-size: 48px;
	font-weight: 950;
	line-height: 1.08;
	margin: 0 0 16px;
}

.np-archive-description,
.np-card-excerpt,
.np-entry-content,
.np-author-box p,
.np-featured-card .np-card-excerpt {
	color: #475569;
	line-height: 1.75;
}

.np-card {
	border-bottom: 1px solid var(--np-border);
	display: grid;
	gap: 16px;
	padding-bottom: 24px;
}

.np-card-image,
.np-featured-card a:first-child,
.np-featured-image {
	background: #f1f5f9;
	border-radius: 8px;
	display: block;
	overflow: hidden;
}

.np-card-image img,
.np-featured-image img,
.np-featured-card img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.np-card-image img {
	aspect-ratio: 4 / 3;
}

.np-card-title {
	font-size: 24px;
	font-weight: 950;
	line-height: 1.2;
	margin: 0 0 12px;
}

.np-card-title a,
.np-entry-title a,
.np-featured-card h2 a {
	color: inherit;
}

.np-entry-meta {
	color: var(--np-muted);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 8px;
}

.np-entry-meta a {
	color: #111827;
	font-weight: 800;
}

.np-featured-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	overflow: hidden;
}

.np-featured-card > div {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
}

.np-featured-card a:first-child {
	min-height: 360px;
}

.np-featured-card > div > div:last-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 32px;
}

.np-featured-card h2 {
	color: #020617;
	font-size: 36px;
	font-weight: 950;
	line-height: 1.15;
	margin: 0 0 16px;
}

.np-featured-card .inline-flex,
.np-card-body .inline-flex,
.np-share-bar a,
.np-post-tags a {
	align-items: center;
	display: inline-flex;
}

.np-featured-card > div > div:last-child > a:last-child {
	background: #dc2626;
	border-radius: 6px;
	color: #ffffff;
	font-weight: 800;
	margin-top: 24px;
	padding: 12px 20px;
	width: fit-content;
}

.np-single {
	max-width: 100%;
}

.np-entry-header {
	margin-bottom: 32px;
}

.np-entry-title {
	font-size: 60px;
	max-width: 920px;
}

.np-entry-content {
	font-size: 18px;
	line-height: 1.8;
	max-width: 820px;
}

.np-featured-image {
	margin-bottom: 32px;
}

.np-share-bar {
	gap: 8px;
}

.np-share-bar span {
	color: #64748b;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.04em;
	margin-right: 4px;
	text-transform: uppercase;
}

.np-share-bar a {
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	color: #334155;
	font-size: 14px;
	font-weight: 800;
	padding: 8px 12px;
}

.np-post-tags {
	margin-top: 32px;
}

.np-post-tags a {
	background: #f1f5f9;
	border-radius: 6px;
	color: #334155;
	font-size: 14px;
	font-weight: 800;
	padding: 8px 12px;
}

.np-author-box {
	border: 1px solid var(--np-border);
	border-radius: 8px;
	display: grid;
	gap: 20px;
	grid-template-columns: 80px 1fr;
	margin-top: 40px;
	padding: 24px;
}

.np-author-box h2 {
	font-size: 24px;
	font-weight: 950;
	margin: 0 0 8px;
}

.np-prev-next {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 40px;
}

.np-prev-next a {
	border: 1px solid var(--np-border);
	border-radius: 8px;
	color: #020617;
	display: block;
	font-weight: 900;
	padding: 20px;
}

.np-related-posts {
	border: 1px solid var(--np-border);
	border-radius: 8px;
	margin-top: 48px;
	padding: 24px;
}

.np-related-posts > div:first-child {
	justify-content: space-between;
	margin-bottom: 24px;
}

.np-related-posts h2 {
	font-size: 30px;
	font-weight: 950;
	margin: 0;
}

.np-related-posts .grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.np-related-posts article img {
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	display: block;
	object-fit: cover;
	width: 100%;
}

.np-sidebar .np-widget,
.np-widget {
	border: 1px solid var(--np-border);
	border-radius: 8px;
	padding: 20px;
}

.np-widget-title {
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 12px;
}

/* Archive and single post redesign. */
.np-archive-page,
.np-single-page {
	padding-bottom: 56px;
}

.np-archive-page .np-content-layout {
	align-items: start;
	grid-template-columns: minmax(0, 1fr) 300px;
}

.np-archive-page .np-content-layout.no-sidebar {
	grid-template-columns: minmax(0, 1fr);
}

.np-archive-header {
	background:
		linear-gradient(135deg, rgba(217, 4, 22, 0.08), transparent 34%),
		#ffffff;
	border-color: #e5e7eb;
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
	margin-bottom: 28px;
	padding: 34px 38px;
}

.np-archive-kicker,
.np-archive-header p:first-child {
	align-items: center;
	color: #d90416;
	display: inline-flex;
	font-size: 13px;
	font-weight: 950;
	gap: 10px;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.np-archive-kicker::before,
.np-archive-header p:first-child::before {
	background: #d90416;
	content: "";
	display: inline-block;
	height: 2px;
	width: 26px;
}

.np-archive-header h1 {
	color: #111827;
	font-size: 44px;
	line-height: 1.12;
	margin-bottom: 12px;
	max-width: 900px;
}

.np-archive-description {
	color: #667085;
	font-size: 17px;
	max-width: 780px;
}

.np-featured-card {
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.09);
}

.np-featured-card__inner,
.np-featured-card > div {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.np-featured-card__media,
.np-featured-card a:first-child {
	border-radius: 0;
	min-height: 0;
}

.np-featured-card__media img,
.np-featured-card a:first-child img {
	aspect-ratio: 16 / 10;
	min-height: 0;
}

.np-featured-card__content,
.np-featured-card > div > div:last-child {
	padding: 34px;
}

.np-featured-card h2 {
	color: #111827;
	font-size: 34px;
	letter-spacing: 0;
	line-height: 1.12;
	margin-bottom: 16px;
}

.np-featured-card .np-entry-meta,
.np-card .np-entry-meta {
	color: #667085;
	font-size: 13px;
	gap: 8px;
	margin-bottom: 10px;
}

.np-featured-card .np-entry-meta a {
	color: #111827;
}

.np-featured-card > div > div:last-child > a:last-child {
	background: #d90416;
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(217, 4, 22, 0.2);
	color: #ffffff;
	margin-top: 22px;
}

.np-post-grid {
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.np-archive-list {
	grid-template-columns: 1fr;
}

.np-archive-list .np-card,
.np-card--list {
	grid-template-columns: 260px minmax(0, 1fr);
}

.np-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
	display: grid;
	gap: 0;
	overflow: hidden;
	padding-bottom: 0;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.np-card:hover {
	border-color: rgba(217, 4, 22, 0.32);
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}

.np-card-image {
	border-radius: 0;
}

.np-card-image img {
	aspect-ratio: 16 / 10;
	transition: transform 220ms ease;
}

.np-card:hover .np-card-image img {
	transform: scale(1.035);
}

.np-card-body {
	padding: 18px 18px 20px;
}

.np-card-title {
	color: #111827;
	font-size: 20px;
	letter-spacing: 0;
	line-height: 1.24;
	margin-bottom: 10px;
}

.np-card-excerpt {
	color: #667085;
	font-size: 14px;
	line-height: 1.7;
}

.np-card-readmore {
	color: #d90416;
	display: inline-flex;
	font-size: 14px;
	font-weight: 900;
	margin-top: 16px;
}

.np-card-readmore::after {
	content: "→";
	margin-left: 7px;
}

.np-sidebar {
	position: sticky;
	top: 104px;
}

.np-sidebar .np-widget,
.np-widget {
	background: #ffffff;
	border-color: #e5e7eb;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.np-pagination-wrap {
	margin-top: 34px;
}

.np-single-page .np-content-layout {
	align-items: start;
	grid-template-columns: minmax(0, 880px) 300px;
	justify-content: center;
}

.np-single-page .np-content-layout.no-sidebar {
	grid-template-columns: minmax(0, 900px);
}

.np-single {
	background: #ffffff;
}

.np-single .np-entry-header {
	border-bottom: 1px solid #e5e7eb;
	margin-bottom: 30px;
	padding-bottom: 26px;
}

.np-single .np-entry-title {
	color: #111827;
	font-size: 54px;
	letter-spacing: 0;
	line-height: 1.08;
	margin-bottom: 18px;
	max-width: 900px;
}

.np-single .np-entry-meta {
	color: #667085;
	font-size: 14px;
	gap: 10px;
}

.np-featured-image {
	border-radius: 10px;
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
	margin-bottom: 34px;
}

.np-featured-image img {
	aspect-ratio: 16 / 9;
	max-height: 560px;
}

.np-entry-content {
	color: #1f2937;
	font-size: 18px;
	line-height: 1.86;
	max-width: 780px;
}

.np-entry-content > *:first-child {
	margin-top: 0;
}

.np-entry-content h2,
.np-entry-content h3 {
	color: #111827;
	font-weight: 950;
	letter-spacing: 0;
	margin-top: 1.6em;
}

.np-entry-content img {
	border-radius: 10px;
}

.np-share-bar,
.np-post-tags {
	max-width: 780px;
}

.np-share-bar a,
.np-post-tags a {
	background: #ffffff;
	border-color: #e5e7eb;
	border-radius: 8px;
}

.np-author-box,
.np-related-posts,
.np-prev-next {
	max-width: 900px;
}

.np-author-box,
.np-related-posts {
	background: #ffffff;
	border-color: #e5e7eb;
	box-shadow: 0 12px 38px rgba(15, 23, 42, 0.05);
}

.np-related-posts .np-card {
	box-shadow: none;
}

.np-site-footer {
	background: #020617;
	color: #e2e8f0;
	padding-bottom: 20px;
	padding-top: 40px;
}

.np-footer-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.np-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #cbd5e1;
	margin-top: 28px;
	padding-top: 20px;
}

@media (max-width: 1024px) {
	.np-header-inner,
	.np-content-layout,
	.np-featured-card > div {
		grid-template-columns: 1fr;
	}

	.np-archive-list .np-card {
		grid-template-columns: 1fr;
	}

	.np-entry-title {
		font-size: 48px;
	}
}

@media (max-width: 640px) {
	.np-site-header > .np-container,
	.np-ad,
	.np-breadcrumb,
	.np-main > .np-container,
	.np-site-footer > .np-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.np-archive-header {
		padding: 24px;
	}

	.np-archive-header h1,
	.np-entry-title {
		font-size: 36px;
	}

	.np-prev-next,
	.np-author-box {
		grid-template-columns: 1fr;
	}
}

.np-reading-progress {
	transition: transform 120ms linear;
}

.az-home-hero {
	background:
		radial-gradient(circle at 78% 26%, rgba(220, 38, 38, 0.34), transparent 34%),
		linear-gradient(115deg, #020617 0%, #0f172a 54%, #450a0a 100%);
	min-height: 720px;
}

.az-home-hero__image {
	filter: saturate(0.95) contrast(1.1);
	opacity: 0.22;
}

.az-home-hero__overlay {
	background:
		linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.82) 52%, rgba(127, 29, 29, 0.55)),
		linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.88));
}

.az-home-hero__spotlight {
	background:
		radial-gradient(circle at 70% 35%, rgba(248, 113, 113, 0.2), transparent 28%),
		radial-gradient(circle at 44% 92%, rgba(255, 255, 255, 0.12), transparent 24%);
}

.az-home-hero__inner {
	min-height: 720px;
}

.az-home-eyebrow,
.az-home-btn,
.az-home-card,
.az-home-post,
.az-home-step,
.az-home-brief,
.az-home-cta,
.az-home-stat {
	border-radius: 8px;
}

.az-home-hero__title,
.az-home-heading {
	letter-spacing: 0;
}

.az-home-btn {
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.az-home-btn:hover {
	transform: translateY(-1px);
}

.az-home-stat {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.az-home-brief {
	box-shadow: 0 24px 80px rgba(2, 6, 23, 0.32);
}

.az-home-strip span {
	position: relative;
}

.az-home-strip span::before {
	background: var(--np-accent);
	border-radius: 999px;
	content: "";
	display: inline-block;
	height: 6px;
	margin-right: 10px;
	vertical-align: middle;
	width: 6px;
}

.az-home-section {
	padding-bottom: 72px;
	padding-top: 72px;
}

.az-home-card,
.az-home-post {
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.az-home-card:hover,
.az-home-post:hover {
	border-color: rgba(230, 57, 70, 0.38);
	box-shadow: 0 18px 54px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}

.az-home-service {
	min-height: 260px;
}

.az-home-post img {
	background: #f1f5f9;
	display: block;
}

.az-home-process {
	background:
		radial-gradient(circle at 82% 12%, rgba(220, 38, 38, 0.22), transparent 24%),
		linear-gradient(135deg, #020617, #0f172a 58%, #111827);
}

.az-home-step {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.az-home-cta {
	box-shadow: 0 24px 70px rgba(220, 38, 38, 0.18);
}

[data-theme="dark"] {
	color-scheme: dark;
}

[data-theme="dark"] .np-site-header,
[data-theme="dark"] .np-card,
[data-theme="dark"] .np-author-box,
[data-theme="dark"] .np-related-posts,
[data-theme="dark"] .np-widget {
	border-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 900px) {
	.np-primary-menu ul {
		justify-content: flex-start;
	}

	.az-home-hero,
	.az-home-hero__inner {
		min-height: auto;
	}

	.az-home-hero__inner {
		padding-bottom: 48px;
		padding-top: 72px;
	}

	.az-home-hero__title {
		font-size: 48px;
	}
}

@media (max-width: 640px) {
	h1 {
		font-size: 34px;
	}

	.az-home-hero__title,
	.az-home-heading {
		font-size: 36px;
		line-height: 1.06;
	}

	.az-home-hero__lead,
	.az-home-section p {
		font-size: 16px;
		line-height: 1.7;
	}

	.az-home-section {
		padding-bottom: 52px;
		padding-top: 52px;
	}
}

/* AzEvent homepage visual system. */
.np-site-header--home {
	background: #050505;
	border-color: rgba(255, 255, 255, 0.08);
}

.np-site-header--home .np-container {
	padding-left: 32px;
	padding-right: 32px;
}

.np-site-header--home .np-header-inner {
	align-items: center;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(180px, auto) 1fr auto;
	min-height: 88px;
}

.np-site-header--home .np-logo {
	align-items: center;
	color: #ffffff;
	display: inline-flex;
	font-size: 30px;
	gap: 10px;
	line-height: 1;
}

.az-site-logo-mark {
	align-items: center;
	color: #ef1d2f;
	display: inline-flex;
	font-weight: 950;
	height: 42px;
	justify-content: center;
	line-height: 1;
	transform: skew(-10deg);
	width: 34px;
}

.az-site-logo-mark::before {
	content: "A";
	font-size: 44px;
}

.np-site-header--home .np-site-description {
	display: none;
}

.np-site-header--home .np-primary-menu ul {
	gap: 42px;
	justify-content: center;
}

.np-site-header--home .np-primary-menu a {
	color: #ffffff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	min-height: 88px;
	position: relative;
	align-items: center;
}

.np-site-header--home .np-primary-menu li:first-child a,
.np-site-header--home .np-primary-menu .current-menu-item > a {
	color: #ef1d2f;
}

.np-site-header--home .np-primary-menu li:first-child a::after,
.np-site-header--home .np-primary-menu .current-menu-item > a::after {
	background: #ef1d2f;
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
}

.np-site-header--home .np-header-cta {
	align-items: center;
	background: #ef1d2f;
	border-radius: 8px;
	box-shadow: 0 12px 26px rgba(239, 29, 47, 0.24);
	color: #ffffff;
	display: inline-flex;
	justify-content: center;
	min-height: 48px;
	padding: 0 26px;
	white-space: nowrap;
}

.az-home-hero {
	background: #050505;
	color: #ffffff;
	min-height: 760px;
	overflow: hidden;
	position: relative;
}

.az-home-hero__image {
	filter: saturate(1.08) contrast(1.18);
	height: 100%;
	inset: 0;
	object-position: center center;
	object-fit: cover;
	opacity: 0.76;
	position: absolute;
	width: 100%;
	z-index: 0;
}

.az-home-hero__overlay {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.34) 66%, rgba(0, 0, 0, 0.72) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.82));
	inset: 0;
	position: absolute;
	z-index: 1;
}

.az-home-hero__inner {
	display: flex;
	flex-direction: column;
	gap: 58px;
	justify-content: center;
	min-height: 760px;
	padding-bottom: 34px;
	padding-left: 32px;
	padding-right: 32px;
	padding-top: 66px;
	position: relative;
	z-index: 2;
}

.az-home-capabilities > .np-container,
.az-home-section > .np-container,
.az-home-process > .np-container,
.az-home-quote > .np-container {
	padding-left: 32px;
	padding-right: 32px;
}

.az-home-hero__copy {
	max-width: 620px;
}

.az-home-kicker {
	align-items: center;
	color: #ef1d2f;
	display: flex;
	font-size: 14px;
	font-weight: 900;
	gap: 14px;
	letter-spacing: 0.08em;
	margin: 0 0 28px;
	text-transform: uppercase;
}

.az-home-kicker span {
	background: rgba(255, 255, 255, 0.74);
	display: inline-block;
	height: 1px;
	width: 28px;
}

.az-home-hero__title {
	color: #ffffff;
	font-size: 64px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0 0 22px;
	max-width: 600px;
}

.az-home-hero__title span {
	color: #ef1d2f;
	display: block;
}

.az-home-hero__lead {
	color: rgba(255, 255, 255, 0.78);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0 0 34px;
	max-width: 560px;
}

.az-home-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.az-home-btn {
	align-items: center;
	border-radius: 8px;
	display: inline-flex;
	font-size: 15px;
	font-weight: 900;
	gap: 10px;
	min-height: 58px;
	padding: 0 26px;
}

.az-home-btn--primary {
	background: #ef1d2f;
	color: #ffffff;
}

.az-home-btn--primary:hover {
	background: #f43f4d;
	color: #ffffff;
}

.az-home-btn--ghost {
	border: 1px solid rgba(255, 255, 255, 0.72);
	color: #ffffff;
}

.az-home-btn--ghost:hover {
	background: #ffffff;
	color: #111827;
}

.az-home-stats {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.az-home-stat {
	align-items: center;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(15, 23, 42, 0.74));
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
	display: grid;
	grid-template-columns: 52px 1fr;
	min-height: 110px;
	padding: 20px 24px;
}

.az-home-stat__icon {
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.az-home-stat strong {
	color: #ef1d2f;
	display: block;
	font-size: 30px;
	font-weight: 950;
	line-height: 1;
}

.az-home-stat span:last-child {
	color: rgba(255, 255, 255, 0.76);
	display: block;
	font-size: 13px;
	font-weight: 700;
	grid-column: 2;
	margin-top: 4px;
}

.az-home-capabilities {
	padding: 40px 0 18px;
}

.az-home-reasons-heading {
	margin: 0 auto 22px;
	max-width: 760px;
	text-align: center;
}

.az-home-reasons-heading h3 {
	color: #111827;
	font-size: 30px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0;
}

.az-home-capabilities__panel {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
}

.az-home-capability {
	padding: 30px 22px;
	position: relative;
	text-align: center;
}

.az-home-capability + .az-home-capability {
	border-left: 1px solid #e5e7eb;
}

.az-home-capability__icon {
	align-items: center;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	color: #ef1d2f;
	display: inline-flex;
	font-size: 13px;
	font-weight: 950;
	height: 42px;
	justify-content: center;
	margin-bottom: 18px;
	width: 42px;
}

.az-home-capability h3,
.az-home-capability h4 {
	color: #111827;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.35;
	margin: 0 0 9px;
}

.az-home-capability p {
	color: #6b7280;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.65;
	margin: 0;
}

.az-home-about {
	padding: 44px 0 58px;
}

.az-home-about__grid {
	align-items: center;
	background: #111827;
	border-radius: 8px;
	color: #ffffff;
	display: grid;
	gap: 38px;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	overflow: hidden;
	padding: 44px;
	position: relative;
}

.az-home-about__grid::after {
	background: #ef1d2f;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 6px;
}

.az-home-kicker--dark {
	color: #ef1d2f;
	margin-bottom: 14px;
}

.az-home-about h2 {
	color: #ffffff;
	font-size: 34px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.16;
	margin: 0;
}

.az-home-about h2 + h2 {
	color: #ef1d2f;
	margin-top: 8px;
}

.az-home-about p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
}

.az-home-about p + p {
	margin-top: 16px;
}

.az-home-section {
	padding: 58px 0;
}

.az-home-section-heading {
	margin-bottom: 38px;
}

.az-home-section-heading--center {
	margin-left: auto;
	margin-right: auto;
	max-width: 760px;
	text-align: center;
}

.az-home-section-heading--split {
	align-items: end;
	display: flex;
	justify-content: space-between;
}

.az-home-section-heading p {
	color: #ef1d2f;
	font-size: 14px;
	font-weight: 950;
	letter-spacing: 0.08em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.az-home-section-heading h2 {
	color: #111827;
	font-size: 44px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 0;
}

.az-home-section-heading span {
	color: #6b7280;
	display: block;
	font-size: 16px;
	line-height: 1.8;
	margin-top: 18px;
}

.az-home-section-heading > a,
.az-home-project-card__content > a,
.az-home-service-card__content > a {
	color: #ef1d2f;
	font-size: 14px;
	font-weight: 900;
}

.az-home-service-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.az-home-service-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: -12px auto 34px;
	max-width: 1040px;
}

.az-home-service-chips span {
	background: #fff5f5;
	border: 1px solid rgba(217, 4, 22, 0.14);
	border-radius: 999px;
	color: #b91c1c;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	padding: 9px 14px;
}

.az-home-service-card,
.az-home-project-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}

.az-home-service-card__image,
.az-home-project-card__image {
	background: #111827;
	display: block;
	overflow: hidden;
	position: relative;
}

.az-home-service-card__image img,
.az-home-project-card__image img {
	aspect-ratio: 16 / 9;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.az-home-service-card__image::after,
.az-home-project-card__image::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22));
	content: "";
	inset: 0;
	position: absolute;
}

.az-home-service-card__image > span {
	align-items: center;
	background: #d90416;
	border-radius: 8px;
	bottom: 18px;
	color: #ffffff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 950;
	height: 54px;
	justify-content: center;
	left: 18px;
	position: absolute;
	width: 54px;
	z-index: 1;
}

.az-home-service-card__content {
	padding: 24px 24px 26px;
}

.az-home-service-card__content h3,
.az-home-project-card__content h3 {
	color: #111827;
	font-size: 22px;
	font-weight: 950;
	line-height: 1.25;
	margin: 0 0 10px;
}

.az-home-service-card__content p,
.az-home-project-card__content p {
	color: #6b7280;
	font-size: 15px;
	line-height: 1.75;
	margin: 0 0 24px;
}

.az-home-projects {
	padding-top: 24px;
}

.az-home-project-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.az-home-project-card__image img {
	aspect-ratio: 4 / 3;
}

.az-home-project-card__image > span {
	background: #d90416;
	border-radius: 6px;
	bottom: 14px;
	color: #ffffff;
	font-size: 10px;
	font-weight: 950;
	left: 14px;
	max-width: calc(100% - 28px);
	overflow: hidden;
	padding: 6px 10px;
	position: absolute;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
	z-index: 1;
}

.az-home-project-card__content {
	padding: 18px 18px 22px;
}

.az-home-project-card__content time {
	color: #6b7280;
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 10px;
}

.az-home-project-card__content h3 {
	font-size: 18px;
	margin-bottom: 12px;
}

.az-home-project-card__content h3 a {
	color: inherit;
}

.az-home-process {
	background: #f8fafc;
	padding: 64px 0 76px;
}

.az-home-process-list {
	display: grid;
	gap: 34px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	position: relative;
}

.az-home-process-item {
	padding-top: 18px;
	position: relative;
	text-align: center;
}

.az-home-process-item::after {
	background: #9ca3af;
	content: "";
	height: 1px;
	left: calc(50% + 28px);
	position: absolute;
	top: 42px;
	width: calc(100% - 22px);
}

.az-home-process-item:last-child::after {
	display: none;
}

.az-home-process-item > span {
	align-items: center;
	background: #d90416;
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 950;
	height: 48px;
	justify-content: center;
	margin-bottom: 40px;
	position: relative;
	width: 48px;
	z-index: 1;
}

.az-home-process-item strong {
	color: #111827;
	display: block;
	font-size: 17px;
	font-weight: 950;
	margin: 0 0 10px;
}

.az-home-process-item p {
	color: #6b7280;
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
}

.az-home-empty {
	background: #f8fafc;
	border: 1px dashed #cbd5e1;
	border-radius: 8px;
	color: #667085;
	padding: 28px;
}

.az-home-seo {
	padding: 64px 0;
}

.az-home-seo__intro {
	margin: 0 auto 34px;
	max-width: 920px;
	text-align: center;
}

.az-home-seo__intro h3 {
	color: #ef1d2f;
	font-size: 18px;
	font-weight: 950;
	letter-spacing: 0.04em;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.az-home-seo__intro h2,
.az-home-seo__requirement h2 {
	color: #111827;
	font-size: 36px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0 0 14px;
}

.az-home-seo__intro p,
.az-home-seo__requirement p {
	color: #6b7280;
	font-size: 16px;
	line-height: 1.8;
	margin: 0 auto 24px;
	max-width: 760px;
}

.az-home-seo__grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.az-home-seo-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 22px;
}

.az-home-seo-card h2,
.az-home-seo-card h3 {
	color: #111827;
	font-size: 18px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0 0 16px;
}

.az-home-seo-card h4 {
	color: #ef1d2f;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.45;
	margin: 10px 0 0;
}

.az-home-seo__requirement {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	margin-top: 18px;
	padding: 30px;
	text-align: center;
}

.az-home-quote {
	padding: 58px 0;
}

.az-home-quote__panel {
	align-items: center;
	background: #d90416;
	border-radius: 8px;
	color: #ffffff;
	display: flex;
	gap: 28px;
	justify-content: space-between;
	padding: 34px;
}

.az-home-quote__panel p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-weight: 950;
	letter-spacing: 0.08em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.az-home-quote__panel h2,
.az-home-quote__panel h3 {
	color: #ffffff;
	font-size: 34px;
	font-weight: 950;
	margin: 0 0 10px;
}

.az-home-quote__panel h3 + h3 {
	color: rgba(255, 255, 255, 0.86);
	font-size: 22px;
}

.az-home-quote__panel span {
	color: rgba(255, 255, 255, 0.86);
	display: block;
	max-width: 720px;
}

.az-home-quote__panel > a {
	background: #ffffff;
	border-radius: 8px;
	color: #d90416;
	flex: 0 0 auto;
	font-weight: 950;
	padding: 14px 22px;
}

.az-home-contact-links {
	padding: 0 0 58px;
}

.az-home-contact-links__grid {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	display: grid;
	gap: 26px;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
	padding: 30px;
}

.az-home-contact-links h3 {
	color: #111827;
	font-size: 18px;
	font-weight: 950;
	letter-spacing: 0.04em;
	margin: 0 0 18px;
}

.az-home-contact-links__items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.az-home-contact-links__items a {
	background: #ffffff;
	border: 1px solid rgba(217, 4, 22, 0.14);
	border-radius: 999px;
	color: #b91c1c;
	font-size: 13px;
	font-weight: 850;
	padding: 8px 12px;
}

.az-home-contact-links p {
	color: #6b7280;
	font-size: 15px;
	font-weight: 750;
	margin: 0 0 10px;
}

.az-home-contact-links p a {
	color: #d90416;
}

/* Homepage layout presets. */
.np-site-header--preset-corporate,
.np-site-header--preset-magazine {
	background: rgba(255, 255, 255, 0.96);
	border-color: #e5e7eb;
	color: #111827;
}

.np-site-header--preset-corporate .np-logo,
.np-site-header--preset-magazine .np-logo,
.np-site-header--preset-corporate .np-primary-menu a,
.np-site-header--preset-magazine .np-primary-menu a {
	color: #111827;
}

.np-site-header--preset-corporate .np-primary-menu li:first-child a,
.np-site-header--preset-magazine .np-primary-menu li:first-child a {
	color: #d90416;
}

.np-site-header--preset-portfolio {
	background: rgba(2, 6, 23, 0.96);
	border-color: rgba(255, 255, 255, 0.1);
}

.az-home--corporate .az-home-hero {
	background: #f8fafc;
	color: #111827;
	min-height: 660px;
}

.az-home--corporate .az-home-hero__image {
	filter: saturate(0.9) contrast(1.02);
	object-position: right center;
	opacity: 0.16;
}

.az-home--corporate .az-home-hero__overlay {
	background: linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0.98) 44%, rgba(248, 250, 252, 0.5) 100%);
}

.az-home--corporate .az-home-hero__inner {
	min-height: 660px;
}

.az-home--corporate .az-home-kicker,
.az-home--corporate .az-home-hero__title span {
	color: #d90416;
}

.az-home--corporate .az-home-kicker span {
	background: #d90416;
}

.az-home--corporate .az-home-hero__title {
	color: #111827;
	max-width: 760px;
}

.az-home--corporate .az-home-hero__lead {
	color: #4b5563;
	max-width: 640px;
}

.az-home--corporate .az-home-btn--ghost {
	border-color: #111827;
	color: #111827;
}

.az-home--corporate .az-home-btn--ghost:hover {
	background: #111827;
	color: #ffffff;
}

.az-home--corporate .az-home-stat {
	background: #ffffff;
	border-color: #e5e7eb;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.az-home--corporate .az-home-stat__icon {
	border-color: #e5e7eb;
	color: #d90416;
}

.az-home--corporate .az-home-stat span:last-child {
	color: #4b5563;
}

.az-home--corporate .az-home-capabilities {
	background: #f8fafc;
}

.az-home--magazine .az-home-hero {
	min-height: 620px;
}

.az-home--magazine .az-home-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
	min-height: 620px;
}

.az-home--magazine .az-home-stats {
	align-self: end;
	grid-template-columns: 1fr;
}

.az-home--magazine .az-home-stat {
	min-height: 84px;
}

.az-home--magazine .az-home-capabilities__panel {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.az-home--magazine .az-home-project-card:first-child {
	grid-column: span 2;
}

.az-home--magazine .az-home-project-card:first-child .az-home-project-card__image img {
	aspect-ratio: 16 / 9;
}

.az-home--magazine .az-home-project-card:first-child h3 {
	font-size: 24px;
}

.az-home--portfolio .az-home-hero {
	min-height: 700px;
}

.az-home--portfolio .az-home-hero__overlay {
	background:
		linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.68) 48%, rgba(185, 28, 28, 0.38)),
		linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.92));
}

.az-home--portfolio .az-home-hero__inner {
	align-items: center;
	min-height: 700px;
	text-align: center;
}

.az-home--portfolio .az-home-hero__copy,
.az-home--portfolio .az-home-hero__title,
.az-home--portfolio .az-home-hero__lead {
	margin-left: auto;
	margin-right: auto;
	max-width: 820px;
}

.az-home--portfolio .az-home-kicker,
.az-home--portfolio .az-home-actions {
	justify-content: center;
}

.az-home--portfolio .az-home-stats {
	max-width: 980px;
	width: 100%;
}

.az-home--portfolio .az-home-capabilities {
	display: none;
}

.az-home--portfolio .az-home-section-heading--center {
	max-width: 860px;
}

.az-home--portfolio .az-home-service-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.az-home--portfolio .az-home-project-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.az-home--portfolio .az-home-project-card:first-child {
	grid-column: span 2;
	grid-row: span 2;
}

.az-home--portfolio .az-home-project-card:first-child .az-home-project-card__image img {
	aspect-ratio: 16 / 10;
}

.az-home--portfolio .az-home-project-card:first-child h3 {
	font-size: 28px;
}

@media (max-width: 1100px) {
	.np-site-header--home .np-primary-menu ul {
		gap: 24px;
	}

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

	.az-home-process-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.az-home-capability + .az-home-capability {
		border-left: 0;
	}

	.az-home-capability:nth-child(even) {
		border-left: 1px solid #e5e7eb;
	}

	.az-home-capability:nth-child(n+3) {
		border-top: 1px solid #e5e7eb;
	}

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

	.az-home--magazine .az-home-hero__inner,
	.az-home--portfolio .az-home-service-grid,
	.az-home--portfolio .az-home-project-grid {
		grid-template-columns: 1fr;
	}

	.az-home--magazine .az-home-project-card:first-child,
	.az-home--portfolio .az-home-project-card:first-child {
		grid-column: auto;
		grid-row: auto;
	}

	.az-home-process-item::after {
		display: none;
	}
}

@media (max-width: 720px) {
	.np-site-header--home .np-primary-menu ul {
		align-items: flex-start;
		gap: 14px;
	}

	.np-site-header--home .np-primary-menu a {
		min-height: auto;
	}

	.np-site-header--home .np-primary-menu li:first-child a::after,
	.np-site-header--home .np-primary-menu .current-menu-item > a::after {
		display: none;
	}

	.az-home-hero,
	.az-home-hero__inner {
		min-height: auto;
	}

	.az-home-hero__inner {
		padding-bottom: 36px;
		padding-top: 64px;
	}

	.az-home-hero__title {
		font-size: 42px;
	}

	.az-home-actions,
	.az-home-quote__panel {
		align-items: stretch;
		flex-direction: column;
	}

	.az-home-stats,
	.az-home-capabilities__panel,
	.az-home-project-grid,
	.az-home-process-list,
	.az-home-seo__grid,
	.az-home-about__grid,
	.az-home-contact-links__grid {
		grid-template-columns: 1fr;
	}

	.az-home-capability + .az-home-capability {
		border-left: 0;
		border-top: 1px solid #e5e7eb;
	}

	.az-home-capability:nth-child(even) {
		border-left: 0;
	}

	.az-home-section-heading--split {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.az-home-section-heading h2 {
		font-size: 34px;
	}
}

@media (max-width: 1180px) {
	.np-archive-page .np-content-layout,
	.np-single-page .np-content-layout {
		grid-template-columns: 1fr;
	}

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

	.np-sidebar {
		position: static;
	}
}

@media (max-width: 760px) {
	.np-featured-card__inner,
	.np-featured-card > div,
	.np-archive-list .np-card,
	.np-card--list {
		grid-template-columns: 1fr;
	}

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

	.np-archive-header {
		padding: 24px;
	}

	.np-archive-header h1 {
		font-size: 34px;
	}

	.np-featured-card h2,
	.np-single .np-entry-title {
		font-size: 32px;
	}

	.np-featured-card__content,
	.np-featured-card > div > div:last-child {
		padding: 24px;
	}

	.np-entry-content {
		font-size: 17px;
	}
}

/* Homepage preset redesign */
.az-home-capabilities {
	padding: 26px 0 22px;
}

.az-home-capabilities__panel {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.az-home-capability {
	padding: 24px 16px;
}

.az-home-capability h3 {
	font-size: 14px;
}

.az-home-capability p {
	font-size: 12px;
	line-height: 1.5;
}

.az-home--portfolio .az-home-capabilities,
.az-home--immersive .az-home-capabilities {
	display: block;
}

.az-home--corporate .az-home-capabilities,
.az-home--magazine .az-home-capabilities,
.az-home--portfolio .az-home-capabilities,
.az-home--immersive .az-home-capabilities {
	background: #ffffff;
}

.az-home--corporate .az-home-capabilities__panel,
.az-home--magazine .az-home-capabilities__panel,
.az-home--portfolio .az-home-capabilities__panel,
.az-home--immersive .az-home-capabilities__panel {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.np-site-header--preset-corporate,
.np-site-header--preset-magazine {
	background: rgba(255, 255, 255, 0.98);
	border-color: #e5e7eb;
	color: #111827;
}

.np-site-header--preset-corporate .np-logo,
.np-site-header--preset-magazine .np-logo,
.np-site-header--preset-corporate .np-primary-menu a,
.np-site-header--preset-magazine .np-primary-menu a {
	color: #111827;
}

.np-site-header--preset-portfolio {
	background: rgba(2, 6, 23, 0.96);
	border-color: rgba(255, 255, 255, 0.14);
}

.np-site-header--preset-immersive {
	background: linear-gradient(90deg, rgba(15, 23, 42, 0.97), rgba(76, 29, 149, 0.9));
	border-color: rgba(255, 255, 255, 0.14);
}

.az-home-hero--stage .az-home-hero__overlay {
	background: linear-gradient(98deg, rgba(2, 6, 23, 0.94) 8%, rgba(2, 6, 23, 0.5) 56%, rgba(2, 6, 23, 0.2) 100%);
}

.az-home-hero--corporate-layout {
	background: linear-gradient(180deg, #f8fafc, #eef2ff);
	padding: 64px 0 56px;
}

.az-home-hero-corporate-layout {
	align-items: stretch;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.az-home-hero-corporate-layout__copy {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 40px;
}

.az-home-hero--corporate-layout .az-home-kicker,
.az-home-hero--corporate-layout .az-home-hero__title span {
	color: #d90416;
}

.az-home-hero--corporate-layout .az-home-kicker span {
	background: #d90416;
}

.az-home-hero--corporate-layout .az-home-hero__title {
	color: #111827;
	font-size: 54px;
	max-width: none;
}

.az-home-hero--corporate-layout .az-home-hero__lead {
	color: #475569;
	margin-bottom: 26px;
	max-width: none;
}

.az-home-hero-corporate-layout__list {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.az-home-hero-corporate-layout__list li {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	color: #334155;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 14px;
}

.az-home-hero-corporate-layout__media {
	background: #0f172a;
	border-radius: 8px;
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	overflow: hidden;
}

.az-home-hero-corporate-layout__media > img {
	display: block;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	width: 100%;
}

.az-home-hero-corporate-layout__stats {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: 14px;
}

.az-home-stat--compact {
	min-height: 92px;
	padding: 12px 14px;
}

.az-home-hero--corporate-layout .az-home-btn--ghost {
	border-color: #0f172a;
	color: #0f172a;
}

.az-home-hero--corporate-layout .az-home-btn--ghost:hover {
	background: #0f172a;
	color: #ffffff;
}

.az-home-hero--magazine-layout {
	background: #09090b;
	color: #ffffff;
	padding: 62px 0 44px;
}

.az-home-hero-magazine-layout {
	align-items: start;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.az-home-hero-magazine-layout__lead {
	background: #111827;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	padding: 36px;
}

.az-home-hero-magazine-layout__feature {
	background: #ffffff;
	border-radius: 8px;
	color: #111827;
	display: grid;
	grid-template-rows: 220px auto;
	overflow: hidden;
}

.az-home-hero-magazine-layout__feature img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.az-home-hero-magazine-layout__feature div {
	padding: 20px;
}

.az-home-hero-magazine-layout__feature p {
	color: #d90416;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.az-home-hero-magazine-layout__feature h3 {
	color: #111827;
	font-size: 26px;
	margin: 0 0 10px;
}

.az-home-hero-magazine-layout__feature span {
	color: #475569;
	display: block;
	line-height: 1.7;
}

.az-home--magazine .az-home-stats--magazine {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 18px;
}

.az-home--magazine .az-home-service-grid {
	gap: 16px;
	grid-template-columns: 1fr;
}

.az-home--magazine .az-home-service-card {
	display: grid;
	grid-template-columns: 320px 1fr;
}

.az-home--magazine .az-home-service-card__image img {
	aspect-ratio: auto;
	height: 100%;
}

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

.az-home--magazine .az-home-process {
	background: #f4f4f5;
}

.az-home-hero--portfolio-layout {
	background: #0f172a;
	padding: 60px 0 48px;
}

.az-home-hero-portfolio-layout {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.az-home-hero-portfolio-layout__gallery {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: 220px 220px;
}

.az-home-hero-portfolio-layout__gallery img {
	border-radius: 8px;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.az-home-hero-portfolio-layout__gallery img:first-child {
	grid-column: span 2;
}

.az-home-hero-portfolio-layout__copy {
	background: linear-gradient(165deg, #111827, #1f2937);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	padding: 34px;
}

.az-home--portfolio .az-home-kicker,
.az-home--portfolio .az-home-hero__title span {
	color: #f43f5e;
}

.az-home--portfolio .az-home-kicker span {
	background: #f43f5e;
}

.az-home--portfolio .az-home-hero__title {
	font-size: 52px;
}

.az-home--portfolio .az-home-service-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.az-home--portfolio .az-home-service-card:first-child {
	grid-column: span 2;
	grid-row: span 2;
}

.az-home--portfolio .az-home-project-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.az-home--portfolio .az-home-process {
	background: #f1f5f9;
}

.az-home-hero--immersive-layout {
	background:
		radial-gradient(circle at 18% 24%, rgba(239, 29, 47, 0.36), transparent 42%),
		radial-gradient(circle at 86% 14%, rgba(37, 99, 235, 0.35), transparent 42%),
		linear-gradient(140deg, #020617, #1e1b4b 56%, #3f0a3d);
	padding: 64px 0 42px;
}

.az-home-hero-immersive-layout {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.az-home-hero-immersive-layout__copy {
	background: rgba(2, 6, 23, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 34px;
}

.az-home--immersive .az-home-kicker,
.az-home--immersive .az-home-hero__title span {
	color: #f43f5e;
}

.az-home--immersive .az-home-kicker span {
	background: #f43f5e;
}

.az-home-hero-immersive-layout__panel {
	display: grid;
	gap: 12px;
}

.az-home-hero-immersive-layout__panel > div {
	background: rgba(15, 23, 42, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	padding: 20px;
}

.az-home-hero-immersive-layout__panel strong {
	color: #f43f5e;
	display: block;
	font-size: 16px;
	font-weight: 900;
	margin-bottom: 8px;
}

.az-home-hero-immersive-layout__panel h3 {
	color: #ffffff;
	font-size: 20px;
	margin: 0 0 8px;
}

.az-home-hero-immersive-layout__panel p {
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
}

.az-home--immersive .az-home-stats--strip {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 16px;
}

.az-home--immersive .az-home-section,
.az-home--immersive .az-home-quote,
.az-home--immersive .az-home-contact-links {
	background: #070b18;
}

.az-home--immersive .az-home-section-heading h2,
.az-home--immersive .az-home-project-card__content h3,
.az-home--immersive .az-home-service-card__content h3,
.az-home--immersive .az-home-process-item strong,
.az-home--immersive .az-home-contact-links h3,
.az-home--immersive .az-home-seo__intro h2,
.az-home--immersive .az-home-seo__requirement h2 {
	color: #ffffff;
}

.az-home--immersive .az-home-section-heading span,
.az-home--immersive .az-home-project-card__content p,
.az-home--immersive .az-home-service-card__content p,
.az-home--immersive .az-home-process-item p,
.az-home--immersive .az-home-seo__intro p,
.az-home--immersive .az-home-seo__requirement p,
.az-home--immersive .az-home-contact-links p {
	color: rgba(226, 232, 240, 0.82);
}

.az-home--immersive .az-home-service-card,
.az-home--immersive .az-home-project-card,
.az-home--immersive .az-home-seo-card,
.az-home--immersive .az-home-seo__requirement,
.az-home--immersive .az-home-contact-links__grid {
	background: rgba(15, 23, 42, 0.72);
	border-color: rgba(148, 163, 184, 0.34);
}

.az-home--immersive .az-home-seo__intro-copy {
	background: rgba(15, 23, 42, 0.72);
	border-color: rgba(148, 163, 184, 0.34);
	box-shadow: none;
}

.az-home--immersive .az-home-seo__aside-item {
	background: rgba(2, 6, 23, 0.78);
	border-color: rgba(148, 163, 184, 0.24);
}

@media (max-width: 1280px) {
	.az-home-capabilities__panel {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.az-home-capability:nth-child(3n + 1) {
		border-left: 0;
	}

	.az-home-capability:nth-child(n + 4) {
		border-top: 1px solid #e5e7eb;
	}
}

@media (max-width: 1100px) {
	.az-home-hero-corporate-layout,
	.az-home-hero-magazine-layout,
	.az-home-hero-portfolio-layout,
	.az-home-hero-immersive-layout {
		grid-template-columns: 1fr;
	}

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

	.az-home--portfolio .az-home-service-card:first-child {
		grid-column: auto;
		grid-row: auto;
	}
}

@media (max-width: 860px) {
	.az-home-capabilities__panel,
	.az-home--portfolio .az-home-service-grid,
	.az-home--magazine .az-home-project-grid,
	.az-home--immersive .az-home-stats--strip,
	.az-home--magazine .az-home-stats--magazine {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.az-home--magazine .az-home-service-card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.az-home-capabilities__panel,
	.az-home--portfolio .az-home-service-grid,
	.az-home--magazine .az-home-project-grid,
	.az-home--immersive .az-home-stats--strip,
	.az-home--magazine .az-home-stats--magazine,
	.az-home-hero-corporate-layout__stats {
		grid-template-columns: 1fr;
	}

	.az-home-hero--corporate-layout .az-home-hero__title,
	.az-home--portfolio .az-home-hero__title {
		font-size: 40px;
	}
}

/* UX/UI refinement */
body {
	background: #f4f6fa;
	color: #0f172a;
}

.home {
	background: #ffffff;
}

.np-site-header {
	backdrop-filter: blur(18px);
	box-shadow: 0 10px 34px rgba(15, 23, 42, 0.08);
}

.np-header-inner {
	gap: 28px;
	min-height: 82px;
}

.np-site-description {
	line-height: 1.45;
	max-width: 280px;
}

.np-primary-menu ul {
	gap: 28px;
}

.np-primary-menu a {
	font-size: 15px;
	font-weight: 800;
	padding-bottom: 32px;
	padding-top: 32px;
}

.np-header-cta {
	border-radius: 12px;
	box-shadow: 0 16px 34px rgba(217, 4, 22, 0.18);
	min-height: 48px;
	padding-left: 22px;
	padding-right: 22px;
}

.np-site-header--home .np-site-description {
	display: none;
}

.np-site-footer {
	background:
		radial-gradient(circle at top left, rgba(239, 29, 47, 0.16), transparent 28%),
		linear-gradient(180deg, #020617, #0f172a);
	margin-top: 44px;
}

.np-footer-grid {
	gap: 30px;
}

.np-footer-bottom {
	justify-content: space-between;
	padding-top: 24px;
}

.az-home .np-container,
.np-archive-page,
.np-single-page {
	max-width: 1360px;
}

.az-home {
	background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 60%, #ffffff 100%);
}

.az-home-hero__inner {
	gap: 44px;
	padding-bottom: 56px;
	padding-top: 84px;
}

.az-home-hero__title {
	max-width: 700px;
}

.az-home-hero__lead {
	font-size: 18px;
	max-width: 620px;
}

.az-home-stats {
	gap: 18px;
}

.az-home-stat {
	backdrop-filter: blur(18px);
	border-radius: 20px;
	min-height: 124px;
	padding: 24px;
}

.az-home-stat strong {
	font-size: 32px;
}

.az-home--stage .az-home-capabilities {
	margin-top: -36px;
	padding: 0 0 56px;
	position: relative;
	z-index: 3;
}

.az-home--corporate .az-home-capabilities,
.az-home--magazine .az-home-capabilities,
.az-home--portfolio .az-home-capabilities,
.az-home--immersive .az-home-capabilities {
	padding-bottom: 56px;
	padding-top: 18px;
}

.az-home-capabilities__panel {
	border: 1px solid #edf1f6;
	border-radius: 20px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.az-home-capability {
	padding: 28px 18px;
}

.az-home-capability__icon {
	border-radius: 12px;
	height: 46px;
	width: 46px;
}

.az-home-about {
	padding: 8px 0 78px;
}

.az-home-about__grid {
	border-radius: 24px;
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
	padding: 56px;
}

.az-home-about__intro {
	align-content: start;
	display: grid;
}

.az-home-about__lead {
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.8;
	margin: 22px 0 0;
	max-width: 520px;
}

.az-home-about__body {
	display: grid;
	gap: 18px;
}

.az-home-about__grid::after {
	border-radius: 999px 0 0 999px;
	opacity: 0.24;
	width: 120px;
}

.az-home-about__highlights {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 8px;
}

.az-home-about__highlight {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	padding: 22px 20px 20px;
}

.az-home-about__highlight strong {
	color: #ef1d2f;
	display: block;
	font-size: 13px;
	font-weight: 950;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}

.az-home-about__highlight h3 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.25;
	margin: 0 0 8px;
}

.az-home-about__highlight p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

.az-home-section,
.az-home-seo,
.az-home-quote,
.az-home-contact-links {
	padding-bottom: 84px;
	padding-top: 84px;
}

.az-home-section-heading {
	margin-bottom: 42px;
}

.az-home-section-heading--split {
	align-items: center;
}

.az-home-section-heading h2 {
	max-width: 980px;
}

.az-home-service-chips {
	margin-bottom: 38px;
	margin-top: -6px;
}

.az-home--stage .az-home-service-grid,
.az-home--corporate .az-home-service-grid,
.az-home--immersive .az-home-service-grid {
	gap: 24px;
	grid-template-columns: repeat(12, minmax(0, 1fr));
}

.az-home--stage .az-home-service-card,
.az-home--corporate .az-home-service-card,
.az-home--immersive .az-home-service-card {
	border-radius: 20px;
	grid-column: span 4;
	min-height: 100%;
}

.az-home--stage .az-home-service-card:first-child,
.az-home--corporate .az-home-service-card:first-child,
.az-home--immersive .az-home-service-card:first-child {
	display: grid;
	grid-column: span 8;
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.az-home--stage .az-home-service-card:first-child .az-home-service-card__image img,
.az-home--corporate .az-home-service-card:first-child .az-home-service-card__image img,
.az-home--immersive .az-home-service-card:first-child .az-home-service-card__image img {
	aspect-ratio: auto;
	height: 100%;
}

.az-home--stage .az-home-service-card:first-child .az-home-service-card__content,
.az-home--corporate .az-home-service-card:first-child .az-home-service-card__content,
.az-home--immersive .az-home-service-card:first-child .az-home-service-card__content {
	align-content: center;
	display: grid;
	padding: 30px 32px;
}

.az-home-service-card,
.az-home-project-card,
.az-home-seo-card {
	border-radius: 20px;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.az-home-service-card:hover,
.az-home-project-card:hover,
.az-home-seo-card:hover {
	border-color: rgba(217, 4, 22, 0.18);
	box-shadow: 0 24px 58px rgba(15, 23, 42, 0.1);
	transform: translateY(-4px);
}

.az-home-service-card__content,
.az-home-project-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.az-home-service-card__content p,
.az-home-project-card__content p {
	flex: 1;
}

.az-home--stage .az-home-project-grid,
.az-home--corporate .az-home-project-grid,
.az-home--immersive .az-home-project-grid {
	gap: 24px;
	grid-template-columns: repeat(12, minmax(0, 1fr));
}

.az-home--stage .az-home-project-card,
.az-home--corporate .az-home-project-card,
.az-home--immersive .az-home-project-card {
	border-radius: 20px;
	grid-column: span 3;
}

.az-home--stage .az-home-project-card:first-child,
.az-home--corporate .az-home-project-card:first-child,
.az-home--immersive .az-home-project-card:first-child {
	display: grid;
	grid-column: span 6;
	grid-template-columns: minmax(280px, 1.02fr) minmax(0, 0.98fr);
}

.az-home--stage .az-home-project-card:first-child .az-home-project-card__image img,
.az-home--corporate .az-home-project-card:first-child .az-home-project-card__image img,
.az-home--immersive .az-home-project-card:first-child .az-home-project-card__image img {
	aspect-ratio: auto;
	height: 100%;
}

.az-home--stage .az-home-project-card:first-child .az-home-project-card__content,
.az-home--corporate .az-home-project-card:first-child .az-home-project-card__content,
.az-home--immersive .az-home-project-card:first-child .az-home-project-card__content {
	padding: 24px 24px 26px;
}

.az-home-process {
	padding-bottom: 92px;
	padding-top: 84px;
}

.az-home-process-list {
	gap: 22px;
	margin-top: 20px;
}

.az-home-process-item {
	background: #ffffff;
	border: 1px solid #e7edf3;
	border-radius: 20px;
	box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
	padding: 30px 24px 28px;
	text-align: left;
}

.az-home-process-item::after {
	display: none;
}

.az-home-process-item > span {
	margin-bottom: 22px;
}

.az-home-seo__grid {
	gap: 20px;
}

.az-home-seo__intro {
	align-items: start;
	display: grid;
	gap: 26px;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	margin: 0 0 40px;
	max-width: none;
	text-align: left;
}

.az-home-seo__intro-copy {
	background:
		linear-gradient(135deg, rgba(217, 4, 22, 0.08), rgba(255, 255, 255, 0) 34%),
		#ffffff;
	border: 1px solid #e7edf3;
	border-radius: 24px;
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
	padding: 34px 36px;
}

.az-home-seo__intro-copy h2:last-child,
.az-home-seo__intro-copy p:last-child {
	margin-bottom: 0;
}

.az-home-seo__intro-aside {
	display: grid;
	gap: 14px;
}

.az-home-seo__aside-item {
	background: #0f172a;
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 20px;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
	padding: 22px 22px 20px;
}

.az-home-seo__aside-item strong {
	color: #ef1d2f;
	display: block;
	font-size: 13px;
	font-weight: 950;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}

.az-home-seo__aside-item span {
	color: rgba(255, 255, 255, 0.82);
	display: block;
	font-size: 15px;
	line-height: 1.75;
}

.az-home-seo-card {
	border-top: 4px solid rgba(217, 4, 22, 0.82);
	padding: 24px;
}

.az-home-seo__requirement {
	border-radius: 20px;
	margin-top: 24px;
	padding: 36px;
}

.az-home-quote__panel {
	border-radius: 24px;
	box-shadow: 0 30px 68px rgba(217, 4, 22, 0.24);
	padding: 42px 46px;
}

.az-home-quote__panel a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.34);
	color: #ffffff;
	font-size: 36px;
	font-weight: 950;
	line-height: 1;
	padding-bottom: 8px;
	white-space: nowrap;
}

.az-home-contact-links__grid {
	background: #0f172a;
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 24px;
	color: #ffffff;
	padding: 38px 40px;
}

.az-home-contact-links__items a {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	padding: 10px 14px;
}

.az-home-contact-links p,
.az-home-contact-links p a {
	color: rgba(255, 255, 255, 0.86);
}

.np-archive-page {
	padding-top: 18px;
}

.np-archive-main {
	min-width: 0;
}

.np-archive-header {
	border-radius: 24px;
	margin-bottom: 34px;
	padding: 42px 46px;
}

.np-archive-header__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.np-archive-header__meta span {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	color: #475569;
	font-size: 13px;
	font-weight: 800;
	padding: 10px 14px;
}

.np-featured-card {
	border-radius: 24px;
}

.np-featured-card__content,
.np-featured-card > div > div:last-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 38px;
}

.np-post-grid {
	gap: 26px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.np-archive-list .np-card,
.np-card--list {
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.np-card {
	border-radius: 20px;
}

.np-card-body {
	display: flex;
	flex-direction: column;
	padding: 24px 24px 26px;
}

.np-card-title {
	font-size: 22px;
}

.np-card-readmore {
	margin-top: auto;
	padding-top: 12px;
}

.np-single-page .np-content-layout {
	gap: 40px;
	grid-template-columns: minmax(0, 980px) 300px;
}

.np-single-page .np-content-layout.no-sidebar {
	grid-template-columns: minmax(0, 1040px);
}

.np-single {
	background: #ffffff;
	border: 1px solid #e7edf3;
	border-radius: 28px;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.07);
	padding: clamp(24px, 3vw, 42px);
}

.np-single .np-entry-header {
	border-bottom: 0;
	margin-bottom: 26px;
	padding-bottom: 0;
}

.np-entry-summary {
	color: #475569;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.8;
	margin: 18px 0 0;
	max-width: 760px;
}

.np-featured-image {
	border-radius: 22px;
	margin-left: auto;
	margin-right: auto;
}

.np-entry-content {
	margin-left: auto;
	margin-right: auto;
	max-width: 760px;
}

.np-entry-content h2 {
	font-size: 36px;
	line-height: 1.16;
}

.np-entry-content h3 {
	font-size: 28px;
	line-height: 1.22;
}

.np-share-bar,
.np-post-tags {
	background: #f8fafc;
	border: 1px solid #e7edf3;
	border-radius: 18px;
	padding: 18px 20px;
}

.np-share-bar a,
.np-post-tags a {
	background: #ffffff;
	border-radius: 999px;
}

.np-prev-next a,
.np-author-box,
.np-related-posts {
	background: #ffffff;
	border-color: #e7edf3;
	border-radius: 22px;
	box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.np-related-posts .np-card {
	box-shadow: none;
}

@media (max-width: 1180px) {
	.az-home--stage .az-home-service-grid,
	.az-home--corporate .az-home-service-grid,
	.az-home--immersive .az-home-service-grid,
	.az-home--stage .az-home-project-grid,
	.az-home--corporate .az-home-project-grid,
	.az-home--immersive .az-home-project-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.az-home--stage .az-home-service-card,
	.az-home--corporate .az-home-service-card,
	.az-home--immersive .az-home-service-card,
	.az-home--stage .az-home-project-card,
	.az-home--corporate .az-home-project-card,
	.az-home--immersive .az-home-project-card {
		grid-column: auto;
	}

	.az-home--stage .az-home-service-card:first-child,
	.az-home--corporate .az-home-service-card:first-child,
	.az-home--immersive .az-home-service-card:first-child,
	.az-home--stage .az-home-project-card:first-child,
	.az-home--corporate .az-home-project-card:first-child,
	.az-home--immersive .az-home-project-card:first-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 1024px) {
	.np-header-inner {
		grid-template-columns: 1fr;
		min-height: 0;
		padding-bottom: 16px;
		padding-top: 16px;
	}

	.np-primary-menu ul {
		justify-content: flex-start;
	}

	.np-primary-menu a {
		padding-bottom: 8px;
		padding-top: 8px;
	}

	.az-home-hero__inner,
	.az-home-hero--corporate-layout,
	.az-home-hero-magazine-layout,
	.az-home-hero-portfolio-layout,
	.az-home-hero-immersive-layout {
		gap: 28px;
	}

	.az-home-stats,
	.az-home-process-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.az-home-about__grid,
	.az-home-contact-links__grid,
	.az-home-quote__panel,
	.az-home-seo__intro,
	.np-featured-card__inner,
	.np-featured-card > div {
		grid-template-columns: 1fr;
	}

	.np-archive-page .np-content-layout,
	.np-single-page .np-content-layout {
		grid-template-columns: 1fr;
	}

	.np-single-page .np-content-layout.no-sidebar {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.az-home-section,
	.az-home-seo,
	.az-home-quote,
	.az-home-contact-links,
	.az-home-process {
		padding-bottom: 64px;
		padding-top: 64px;
	}

	.az-home--stage .az-home-capabilities {
		margin-top: 0;
		padding-top: 28px;
	}

	.az-home-hero {
		min-height: auto;
	}

	.az-home-hero__inner {
		min-height: auto;
		padding-bottom: 42px;
		padding-top: 54px;
	}

	.az-home-hero__title,
	.az-home-section-heading h2,
	.np-archive-header h1,
	.np-single .np-entry-title {
		font-size: 38px;
	}

	.az-home-stats,
	.az-home-capabilities__panel,
	.az-home-seo__grid,
	.az-home-process-list,
	.az-home--stage .az-home-service-grid,
	.az-home--corporate .az-home-service-grid,
	.az-home--immersive .az-home-service-grid,
	.az-home--stage .az-home-project-grid,
	.az-home--corporate .az-home-project-grid,
	.az-home--immersive .az-home-project-grid {
		grid-template-columns: 1fr;
	}

	.az-home-about__grid,
	.az-home-quote__panel,
	.az-home-contact-links__grid,
	.az-home-seo__intro-copy,
	.np-archive-header,
	.np-single {
		padding: 28px 24px;
	}

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

	.az-home--stage .az-home-service-card:first-child,
	.az-home--corporate .az-home-service-card:first-child,
	.az-home--immersive .az-home-service-card:first-child,
	.az-home--stage .az-home-project-card:first-child,
	.az-home--corporate .az-home-project-card:first-child,
	.az-home--immersive .az-home-project-card:first-child {
		grid-template-columns: 1fr;
	}

	.np-card--list,
	.np-archive-list .np-card {
		grid-template-columns: 1fr;
	}

	.np-entry-summary {
		font-size: 18px;
	}

	.np-entry-content h2 {
		font-size: 30px;
	}

	.np-entry-content h3 {
		font-size: 24px;
	}
}
