:root {
	--nw-blue: #367eb6;
	--nw-accent: #4a9bff;
	--nw-navy: #071b3a;
	--nw-dark: #041127;
	--nw-light: #f3f6fa;
	--nw-border: #dce5ef;
	--nw-charcoal: #1f2937;
	--nw-slate: #64748b;
	--nw-white: #ffffff;
	--nw-radius-sm: 10px;
	--nw-radius: 16px;
	--nw-radius-lg: 24px;
	--nw-shadow: 0 18px 45px rgba(7, 27, 58, 0.09);
	--nw-container: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--nw-white);
	color: var(--nw-charcoal);
	font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--nw-blue);
	text-decoration: none;
}

a:hover {
	color: var(--nw-accent);
}

:focus-visible {
	outline: 3px solid rgba(74, 155, 255, 0.7);
	outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.65em;
	color: var(--nw-dark);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

h1 {
	font-size: clamp(2.7rem, 6vw, 5.8rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
	font-size: 1.15rem;
}

p {
	margin: 0 0 1rem;
}

ul,
ol {
	padding-left: 1.25rem;
}

.container {
	width: min(var(--nw-container), calc(100% - 40px));
	margin-inline: auto;
}

.container.narrow {
	max-width: 820px;
}

.skip-link,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link:focus {
	z-index: 9999;
	top: 14px;
	left: 14px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: var(--nw-white);
	color: var(--nw-dark);
	border-radius: var(--nw-radius-sm);
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	background: rgba(4, 17, 39, 0.96);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 28px;
}

.site-branding {
	flex: 0 0 auto;
}

.custom-logo-link img {
	max-width: 210px;
	max-height: 54px;
}

.brand-text {
	display: inline-flex;
	align-items: center;
	color: var(--nw-white);
	text-transform: uppercase;
	letter-spacing: 0.18em;
}

.brand-text strong,
.brand-text em {
	display: block;
	color: var(--nw-white);
	font-style: normal;
	line-height: 1;
}

.brand-text strong {
	font-size: 1.18rem;
}

.brand-text em {
	font-size: 0.58rem;
	opacity: 0.8;
}

.orbit-center {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, var(--nw-accent), var(--nw-blue) 54%, #0d356f);
	color: var(--nw-white);
	font-weight: 800;
	box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.1);
}

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

.primary-navigation ul {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation li {
	position: relative;
}

.primary-navigation a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.86rem;
	font-weight: 700;
}

.primary-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: grid;
	min-width: 230px;
	padding: 12px;
	background: var(--nw-white);
	border: 1px solid var(--nw-border);
	border-radius: var(--nw-radius);
	box-shadow: var(--nw-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: 160ms ease;
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-navigation .sub-menu a {
	color: var(--nw-charcoal);
}

.button,
button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 0.85rem 1.25rem;
	border: 0;
	border-radius: 8px;
	font: inherit;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: 180ms ease;
}

.button-primary {
	background: linear-gradient(135deg, #2475d9, var(--nw-accent));
	color: var(--nw-white);
	box-shadow: 0 12px 30px rgba(54, 126, 182, 0.28);
}

.button-primary:hover {
	color: var(--nw-white);
	filter: brightness(1.08);
	transform: translateY(-1px);
}

.button-secondary {
	background: transparent;
	border: 1px solid var(--nw-border);
	color: var(--nw-navy);
}

.button-dark {
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--nw-white);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 10px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 22px;
	height: 2px;
	margin: 3px auto;
	background: var(--nw-white);
}

.hero {
	position: relative;
	overflow: hidden;
	padding: clamp(72px, 9vw, 135px) 0;
	background:
		radial-gradient(circle at 78% 35%, rgba(74, 155, 255, 0.27), transparent 28%),
		linear-gradient(130deg, var(--nw-dark), #061a37 55%, #06152f);
	color: rgba(255, 255, 255, 0.78);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(110deg, transparent 0 55%, rgba(74, 155, 255, 0.08) 56%, transparent 72%),
		repeating-linear-gradient(165deg, transparent 0 18px, rgba(74, 155, 255, 0.08) 19px 20px);
	opacity: 0.55;
	pointer-events: none;
}

.hero > .container {
	position: relative;
	z-index: 1;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
	align-items: center;
	gap: clamp(36px, 6vw, 82px);
}

.hero h1,
.hero h2 {
	color: var(--nw-white);
	max-width: 820px;
}

.hero-home h1 {
	max-width: 740px;
	font-size: clamp(2.55rem, 4.25vw, 4.45rem);
}

.hero-lede {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.eyebrow {
	margin-bottom: 0.8rem;
	color: var(--nw-blue);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.hero .eyebrow {
	color: #77b7ff;
}

.hero-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 30px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.86rem;
	font-weight: 700;
}

.hero-proof span::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 8px;
	border-radius: 50%;
	background: var(--nw-accent);
}

.system-dashboard,
.workflow-orbit {
	position: relative;
	padding: 22px;
	background: rgba(8, 31, 66, 0.76);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--nw-radius-lg);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.dashboard-caption {
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.82);
	text-align: center;
	font-size: 0.88rem;
}

.dashboard-metrics,
.dashboard-lower,
.system-notes,
.metric-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.dashboard-lower {
	grid-template-columns: repeat(4, 1fr);
	margin-top: 16px;
}

.dashboard-metrics div,
.dashboard-lower div,
.system-notes div,
.metric-row div {
	padding: 16px;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--nw-radius-sm);
}

.dashboard-metrics strong,
.dashboard-lower strong,
.metric-row strong {
	display: block;
	color: var(--nw-white);
	font-size: clamp(1.3rem, 2.4vw, 2.05rem);
	line-height: 1;
}

.dashboard-metrics span,
.dashboard-lower span,
.system-notes span,
.metric-row span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.78rem;
}

.system-notes {
	margin-top: 16px;
}

.system-notes strong {
	display: block;
	margin-top: 4px;
	color: var(--nw-white);
	font-size: 0.86rem;
	line-height: 1.3;
}

.pipeline {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin-top: 18px;
}

.pipeline-card,
.orbit-card {
	position: relative;
	padding: 14px 10px;
	background: rgba(74, 155, 255, 0.08);
	border: 1px solid rgba(74, 155, 255, 0.22);
	border-radius: var(--nw-radius-sm);
	color: var(--nw-white);
	text-align: center;
	font-size: 0.8rem;
}

.pipeline-card small {
	display: block;
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.72rem;
	line-height: 1.3;
}

.icon-dot,
.line-icon {
	display: inline-block;
	width: 34px;
	height: 34px;
	margin-bottom: 8px;
	border: 2px solid var(--nw-accent);
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(74, 155, 255, 0.18), transparent);
}

.section {
	padding: clamp(62px, 8vw, 110px) 0;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 34px;
}

.section-heading.center {
	margin-inline: auto;
	text-align: center;
}

.section-heading p,
.feature-card p,
.post-card p,
.footer-brand p {
	color: var(--nw-slate);
}

.split-heading,
.two-column,
.split-panel,
.cta-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	gap: clamp(28px, 5vw, 70px);
	align-items: center;
}

.problem-strip,
.benefits-section,
.industries-section,
.archive-content,
.page-main {
	background: var(--nw-light);
}

.problem-grid,
.card-grid,
.results-grid,
.post-grid,
.industry-row {
	display: grid;
	gap: 18px;
}

.problem-grid {
	grid-template-columns: repeat(6, 1fr);
	margin: 28px 0;
}

.problem-grid-compact {
	grid-template-columns: repeat(4, 1fr);
}

.mini-card,
.feature-card,
.post-card,
.result-card,
.sidebar-card,
.author-box,
.inline-cta,
.split-panel,
.content-page,
.no-results {
	background: var(--nw-white);
	border: 1px solid var(--nw-border);
	border-radius: var(--nw-radius);
	box-shadow: var(--nw-shadow);
}

.mini-card {
	padding: 18px;
	text-align: center;
	font-size: 0.86rem;
}

.centered-copy {
	max-width: 840px;
	margin: 0 auto;
	color: var(--nw-slate);
	text-align: center;
	font-weight: 700;
}

.scribble {
	color: var(--nw-navy);
	font-size: 1.2rem;
	font-weight: 700;
	font-style: italic;
	transform: rotate(-4deg);
}

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

.feature-card {
	padding: 24px;
}

.feature-card h3 {
	margin-bottom: 0.45rem;
}

.text-link {
	font-weight: 800;
}

.section-dark,
.site-footer,
.cta-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 88% 20%, rgba(74, 155, 255, 0.18), transparent 27%),
		linear-gradient(135deg, var(--nw-dark), var(--nw-navy));
	color: rgba(255, 255, 255, 0.72);
}

.section-dark h2,
.section-dark h3,
.site-footer h2,
.cta-section h2,
.light h2 {
	color: var(--nw-white);
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.process-step {
	position: relative;
	padding: 20px;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
}

.process-step span {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: var(--nw-accent);
	color: var(--nw-white);
	font-weight: 800;
}

.light-steps .process-step {
	color: var(--nw-slate);
}

.light-steps .process-step h3 {
	color: var(--nw-dark);
}

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

.result-card {
	overflow: hidden;
	padding-bottom: 22px;
}

.result-card strong {
	display: block;
	padding: 18px 20px 0;
	color: var(--nw-blue);
	font-size: 1.65rem;
}

.result-card p {
	padding: 0 20px;
	color: var(--nw-slate);
}

.image-placeholder {
	display: grid;
	place-items: center;
	min-height: 145px;
	padding: 20px;
	background:
		linear-gradient(135deg, rgba(54, 126, 182, 0.88), rgba(4, 17, 39, 0.95)),
		repeating-linear-gradient(45deg, transparent 0 12px, rgba(255, 255, 255, 0.06) 13px 14px);
	color: var(--nw-white);
	font-weight: 800;
	text-align: center;
}

.image-placeholder.small {
	min-height: 58px;
	width: 70px;
	border-radius: 10px;
}

.testimonial-card {
	margin: 0;
	padding: 30px;
	background: transparent;
	border: 0;
	color: var(--nw-charcoal);
	font-size: 1.2rem;
	font-weight: 700;
}

.industry-row {
	grid-template-columns: repeat(6, 1fr);
}

.industry-chip {
	display: grid;
	place-items: center;
	min-height: 110px;
	padding: 20px;
	background: var(--nw-white);
	border: 1px solid var(--nw-border);
	border-radius: var(--nw-radius);
	text-align: center;
	font-weight: 800;
}

.cta-section {
	padding: 56px 0;
}

.cta-grid {
	grid-template-columns: minmax(0, 1fr) auto;
}

.interior-hero .breadcrumbs,
.single-header .breadcrumbs {
	margin-bottom: 24px;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.84rem;
}

.breadcrumbs a {
	color: rgba(255, 255, 255, 0.72);
}

.workflow-orbit {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	min-height: 370px;
	align-content: center;
}

.workflow-orbit .orbit-center {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 82px;
	height: 82px;
	transform: translate(-50%, -50%);
}

.orbit-card {
	text-align: left;
}

.split-panel {
	padding: clamp(28px, 5vw, 52px);
}

.check-list {
	padding: 0;
	list-style: none;
}

.check-list li {
	margin: 0.55rem 0;
	color: var(--nw-slate);
}

.check-list li::before {
	content: "✓";
	margin-right: 9px;
	color: var(--nw-blue);
	font-weight: 800;
}

.check-list.negative li::before {
	content: "×";
}

.six-grid {
	grid-template-columns: repeat(6, 1fr);
}

.center-card {
	text-align: center;
}

.results-cta {
	padding: 58px 0;
}

.archive-hero {
	padding-bottom: 92px;
}

.search-form {
	display: flex;
	width: min(420px, 100%);
	margin-top: 24px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--nw-radius-sm);
}

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	min-height: 48px;
	padding: 0 15px;
	background: transparent;
	border: 0;
	color: var(--nw-white);
	font: inherit;
}

.search-field::placeholder {
	color: rgba(255, 255, 255, 0.58);
}

.search-submit {
	min-width: 54px;
	border-radius: 0;
	background: transparent;
	color: var(--nw-white);
}

.no-results .search-form,
.content-page .search-form {
	background: var(--nw-white);
	border-color: var(--nw-border);
}

.no-results .search-field,
.content-page .search-field {
	color: var(--nw-charcoal);
}

.no-results .search-field::placeholder,
.content-page .search-field::placeholder {
	color: var(--nw-slate);
}

.no-results .search-submit,
.content-page .search-submit {
	color: var(--nw-blue);
}

.topic-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.topic-pills a {
	padding: 10px 16px;
	background: var(--nw-white);
	border: 1px solid var(--nw-border);
	border-radius: 999px;
	color: var(--nw-charcoal);
	font-size: 0.86rem;
	font-weight: 800;
}

.topic-pills .active {
	background: var(--nw-blue);
	color: var(--nw-white);
	border-color: var(--nw-blue);
}

.featured-article {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
	gap: 30px;
	margin-bottom: 42px;
	padding: 28px;
	background: linear-gradient(135deg, var(--nw-dark), var(--nw-navy));
	border-radius: var(--nw-radius);
	color: rgba(255, 255, 255, 0.76);
}

.featured-article h2,
.featured-article h2 a {
	color: var(--nw-white);
}

.system-mini-visual {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--nw-radius);
	padding: 18px;
}

.system-mini-visual span {
	display: grid;
	place-items: center;
	min-height: 70px;
	border: 1px solid rgba(74, 155, 255, 0.25);
	border-radius: 12px;
	color: var(--nw-white);
	font-size: 0.8rem;
	font-weight: 800;
}

.archive-layout,
.single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 34px;
	align-items: start;
}

.archive-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.archive-toolbar h2 {
	margin: 0;
	font-size: 1.15rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

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

.post-card {
	overflow: hidden;
}

.post-card-image {
	position: relative;
	display: block;
	color: var(--nw-white);
}

.post-card-image img,
.single-featured img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.category-badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(54, 126, 182, 0.12);
	color: var(--nw-blue);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.post-card-image .category-badge {
	position: absolute;
	left: 14px;
	bottom: 14px;
	background: var(--nw-blue);
	color: var(--nw-white);
}

.post-card-body {
	padding: 20px;
}

.post-card-title {
	font-size: 1.08rem;
	letter-spacing: -0.02em;
}

.post-card-title a {
	color: var(--nw-dark);
}

.post-meta,
.single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	color: var(--nw-slate);
	font-size: 0.82rem;
}

.avatar-dot {
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f1c7b8, #6b88bd);
}

.avatar-dot.large {
	width: 64px;
	height: 64px;
	flex: 0 0 auto;
}

.blog-sidebar {
	display: grid;
	gap: 18px;
}

.sidebar-card {
	padding: 22px;
}

.sidebar-card h2 {
	font-size: 1.1rem;
}

.audit-card {
	background: linear-gradient(135deg, var(--nw-dark), var(--nw-navy));
	color: rgba(255, 255, 255, 0.76);
}

.audit-card h2 {
	color: var(--nw-white);
}

.popular-post {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 12px;
	align-items: center;
	margin: 14px 0;
	color: var(--nw-charcoal);
	font-weight: 800;
	line-height: 1.25;
}

.category-list {
	padding: 0;
	list-style: none;
}

.category-list li {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid var(--nw-border);
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 30px;
}

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	border: 1px solid var(--nw-border);
	border-radius: 8px;
	background: var(--nw-white);
	color: var(--nw-charcoal);
	font-weight: 800;
}

.page-numbers.current {
	background: var(--nw-blue);
	color: var(--nw-white);
	border-color: var(--nw-blue);
}

.single-header {
	padding: 72px 0 34px;
	background: var(--nw-white);
}

.single-header .breadcrumbs,
.single-header .breadcrumbs a {
	color: var(--nw-slate);
}

.single-header-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 30px;
	align-items: start;
}

.single-header h1 {
	max-width: 840px;
	font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.single-header .hero-lede {
	color: var(--nw-charcoal);
}

.share-links {
	display: flex;
	gap: 9px;
	align-items: center;
	color: var(--nw-slate);
}

.share-links a,
.social-links a {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--nw-border);
	border-radius: 50%;
	color: var(--nw-slate);
	font-size: 0.76rem;
	font-weight: 800;
}

.single-featured {
	margin-bottom: 36px;
}

.single-featured img,
.article-placeholder {
	border-radius: var(--nw-radius);
}

.article-shell {
	min-width: 0;
}

.article-content {
	font-size: 1.06rem;
}

.article-content > * {
	max-width: 760px;
}

.article-content > .alignwide {
	max-width: 100%;
}

.article-content h2,
.article-content h3 {
	margin-top: 2rem;
}

.article-content blockquote,
.article-content .growth-insight,
.article-content .automation-opportunity,
.article-content .reviewcomp-tip,
.article-content .real-world-example {
	margin: 28px 0;
	padding: 22px 24px;
	border-left: 4px solid var(--nw-blue);
	background: #eef6ff;
	border-radius: 0 var(--nw-radius-sm) var(--nw-radius-sm) 0;
}

.inline-cta,
.author-box {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	margin: 34px 0;
	padding: 24px;
}

.post-navigation {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin: 30px 0 70px;
}

.post-navigation a {
	display: block;
	padding: 18px;
	background: var(--nw-white);
	border: 1px solid var(--nw-border);
	border-radius: var(--nw-radius-sm);
	color: var(--nw-dark);
	font-weight: 800;
}

.content-page {
	margin-top: 54px;
	margin-bottom: 70px;
	padding: clamp(28px, 5vw, 58px);
}

.entry-content > * {
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

.entry-content > .alignwide {
	max-width: var(--nw-container);
}

.entry-content > .alignfull {
	max-width: none;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.full-width-page .entry-content > *,
.blank-canvas-main .entry-content > * {
	max-width: none;
}

.site-footer {
	padding-top: 66px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr);
	gap: 34px;
}

.footer-column h2 {
	font-size: 0.84rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-column a,
.footer-brand p,
.footer-contact p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.9rem;
}

.footer-column li {
	margin: 8px 0;
}

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.social-links a {
	border-color: rgba(255, 255, 255, 0.2);
	color: var(--nw-white);
}

.footer-contact {
	display: grid;
	align-content: start;
	gap: 8px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 44px;
	padding: 24px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.82rem;
}

.footer-bottom nav {
	display: flex;
	gap: 22px;
}

@media (max-width: 1080px) {
	.hero-grid,
	.two-column,
	.split-heading,
	.split-panel,
	.featured-article,
	.archive-layout,
	.single-layout,
	.cta-grid,
	.single-header-grid {
		grid-template-columns: 1fr;
	}

	.problem-grid,
	.six-grid,
	.industry-row {
		grid-template-columns: repeat(3, 1fr);
	}

	.results-grid,
	.post-grid,
	.process-steps,
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.blog-sidebar {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 860px) {
	.menu-toggle {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
	}

	.primary-navigation {
		position: fixed;
		inset: 78px 0 auto;
		display: none;
		padding: 22px 20px 28px;
		background: var(--nw-dark);
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.menu-open .primary-navigation {
		display: grid;
	}

	.primary-navigation ul {
		display: grid;
		gap: 6px;
	}

	.primary-navigation .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: rgba(255, 255, 255, 0.04);
		box-shadow: none;
	}

	.primary-navigation .sub-menu a {
		color: rgba(255, 255, 255, 0.9);
	}

	.nav-cta {
		width: 100%;
	}

	.pipeline,
	.dashboard-metrics,
	.dashboard-lower,
	.system-notes,
	.metric-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-bottom,
	.inline-cta,
	.author-box {
		display: grid;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(100% - 28px, var(--nw-container));
	}

	.hero {
		padding: 64px 0;
	}

	.problem-grid,
	.service-grid,
	.results-grid,
	.post-grid,
	.process-steps,
	.six-grid,
	.industry-row,
	.blog-sidebar,
	.footer-grid,
	.pipeline,
	.dashboard-metrics,
	.dashboard-lower,
	.system-notes,
	.metric-row {
		grid-template-columns: 1fr;
	}

	.workflow-orbit {
		grid-template-columns: 1fr;
		padding-top: 118px;
	}

	.workflow-orbit .orbit-center {
		top: 56px;
	}

	.archive-toolbar {
		display: grid;
	}
}

