:root {
	--tn-primary: #2563eb;
	--tn-secondary: #14b8a6;
	--tn-font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--tn-bg: #f7f9fc;
	--tn-surface: rgba(255, 255, 255, 0.78);
	--tn-surface-solid: #ffffff;
	--tn-text: #0f172a;
	--tn-muted: #64748b;
	--tn-border: rgba(15, 23, 42, 0.1);
	--tn-shadow: 0 20px 70px rgba(15, 23, 42, 0.12);
}

[data-theme="dark"] {
	--tn-bg: #070b14;
	--tn-surface: rgba(15, 23, 42, 0.72);
	--tn-surface-solid: #111827;
	--tn-text: #f8fafc;
	--tn-muted: #aab6c7;
	--tn-border: rgba(255, 255, 255, 0.12);
	--tn-shadow: 0 20px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	background:
		radial-gradient(circle at top left, rgba(37, 99, 235, 0.1), transparent 32rem),
		radial-gradient(circle at 85% 10%, rgba(20, 184, 166, 0.12), transparent 28rem),
		var(--tn-bg);
	color: var(--tn-text);
	font-family: var(--tn-font);
	line-height: 1.7;
	overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span {
	overflow-wrap: anywhere;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--tn-primary); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(20, 184, 166, 0.45);
	outline-offset: 3px;
}
img { height: auto; max-width: 100%; }

.screen-reader-text,
.skip-link {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}
.skip-link:focus {
	background: var(--tn-surface-solid);
	clip: auto;
	height: auto;
	left: 1rem;
	padding: 0.75rem 1rem;
	top: 1rem;
	width: auto;
	z-index: 9999;
}

.site-header {
	left: 0;
	position: sticky;
	right: 0;
	top: 0;
	z-index: 999;
}
.technova-navbar {
	backdrop-filter: blur(18px);
	background: rgba(255, 255, 255, 0.78);
	border-bottom: 1px solid var(--tn-border);
	min-height: 76px;
	transition: box-shadow 180ms ease, background 180ms ease;
}
[data-theme="dark"] .technova-navbar { background: rgba(7, 11, 20, 0.78); }
.technova-navbar.is-scrolled { box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12); }
.tutorial-track-bar {
	background: #1f2433;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	min-height: 34px;
	overflow: hidden;
}
.tutorial-track-scroll {
	display: flex;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scrollbar-width: thin;
	white-space: nowrap;
}
.tutorial-track-scroll a {
	color: #fff;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0.04em;
	line-height: 1;
	min-height: 34px;
	padding: 0.62rem 1.1rem;
	text-transform: uppercase;
}
.tutorial-track-scroll a:hover,
.tutorial-track-scroll a.is-active {
	background: #f8fafc;
	color: #111827;
}
.navbar-brand {
	align-items: center;
	display: inline-flex;
	font-weight: 800;
	gap: 0.65rem;
	letter-spacing: 0;
	min-width: 0;
	max-width: min(58vw, 320px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.brand-mark {
	align-items: center;
	background: linear-gradient(135deg, var(--tn-primary), var(--tn-secondary));
	border-radius: 0.75rem;
	color: #fff;
	display: inline-flex;
	height: 2.4rem;
	justify-content: center;
	width: 2.4rem;
}
.nav-link {
	color: var(--tn-text);
	font-weight: 600;
	padding: 0.75rem 0.9rem !important;
}
.navbar-nav .menu-item > a {
	color: var(--tn-text);
	display: block;
	font-weight: 600;
	padding: 0.75rem 0.9rem;
}
.custom-logo { max-height: 54px; width: auto; }
.theme-toggle,
.navbar-toggler {
	align-items: center;
	background: var(--tn-surface);
	border: 1px solid var(--tn-border);
	border-radius: 999px;
	color: var(--tn-text);
	display: inline-flex;
	height: 42px;
	justify-content: center;
	min-width: 42px;
	width: 42px;
}

.btn {
	border-radius: 999px;
	font-weight: 700;
	line-height: 1.2;
	padding: 0.75rem 1.25rem;
	white-space: normal;
}
.btn-primary {
	background: linear-gradient(135deg, var(--tn-primary), var(--tn-secondary));
	border: 0;
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}
.btn-outline-light {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.32);
}

.section-pad { padding: 5rem 0; }
.hero-section {
	background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 52%, #0f766e 100%);
	color: #fff;
	margin-top: -76px;
	overflow: hidden;
	padding: 10rem 0 6rem;
	position: relative;
}
.hero-section > .container { position: relative; z-index: 1; }
.hero-section::after {
	background: rgba(255, 255, 255, 0.08);
	content: "";
	height: 24rem;
	position: absolute;
	right: -8rem;
	top: 6rem;
	transform: rotate(18deg);
	width: 24rem;
}
.hero-section h1,
.page-header h1,
.single-header h1,
.archive-header h1 {
	font-size: clamp(2.4rem, 8vw, 5rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.02;
}
.hero-copy {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.2rem;
	margin: 1.4rem 0 2rem;
	max-width: 42rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.home-hero {
	background:
		linear-gradient(90deg, rgba(7, 11, 20, 0.94), rgba(15, 23, 42, 0.74) 52%, rgba(15, 118, 110, 0.72)),
		linear-gradient(135deg, #07111f 0%, #172554 48%, #0f766e 100%);
	isolation: isolate;
	min-height: min(780px, calc(100vh - 56px));
	padding: 8.5rem 0 4.5rem;
}
.home-hero::before {
	background:
		linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 72px 72px;
	content: "";
	inset: 0;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.12), #000 35%, rgba(0, 0, 0, 0.76));
	position: absolute;
	z-index: -2;
}
.home-hero::after {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 28px;
	content: "";
	height: 360px;
	position: absolute;
	right: -7rem;
	top: 8rem;
	transform: rotate(14deg);
	width: 560px;
	z-index: -1;
}
.home-hero-content {
	display: grid;
	gap: 2.75rem;
	min-height: 540px;
	position: relative;
	z-index: 2;
}
.home-hero-copy {
	align-self: center;
	max-width: 760px;
}
.home-hero-copy h1 {
	max-width: 820px;
	text-wrap: balance;
}
.hero-proof {
	align-self: end;
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 760px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(18px);
}
.hero-proof div {
	background: rgba(7, 11, 20, 0.34);
	padding: 1rem 1.2rem;
}
.hero-proof strong {
	display: block;
	font-size: clamp(1.65rem, 4vw, 2.6rem);
	font-weight: 800;
	line-height: 1;
}
.hero-proof span {
	color: rgba(255, 255, 255, 0.76);
	display: block;
	font-size: 0.92rem;
	margin-top: 0.3rem;
}
.hero-product-scene {
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}
.scene-panel {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
	color: #fff;
	position: absolute;
}
.scene-panel-main {
	border-radius: 1.25rem;
	padding: 1.2rem;
	right: max(2rem, 8vw);
	top: 8.5rem;
	width: min(42vw, 560px);
}
.scene-panel-header {
	align-items: center;
	display: flex;
	gap: 0.45rem;
	margin-bottom: 1.2rem;
}
.scene-panel-header span {
	background: rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	height: 0.62rem;
	width: 0.62rem;
}
.scene-panel-header strong {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	margin-left: auto;
	text-transform: uppercase;
}
.scene-score {
	align-items: end;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}
.scene-score span,
.scene-panel-side span,
.scene-panel-mini span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.9rem;
}
.scene-score strong,
.scene-panel-side strong,
.scene-panel-mini strong {
	font-size: clamp(2rem, 6vw, 4.5rem);
	font-weight: 800;
	line-height: 0.95;
}
.scene-bars {
	align-items: end;
	display: grid;
	gap: 0.65rem;
	grid-template-columns: repeat(5, 1fr);
	height: 180px;
	margin: 1.2rem 0;
}
.scene-bars span {
	background: linear-gradient(180deg, #ffffff, rgba(20, 184, 166, 0.38));
	border-radius: 999px 999px 0.45rem 0.45rem;
	height: var(--bar-height);
}
.scene-tasks {
	display: grid;
	gap: 0.65rem;
}
.scene-tasks span {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 0.7rem;
	padding: 0.65rem 0.8rem;
}
.scene-tasks span::before {
	color: #86efac;
	content: "\F26A";
	font-family: bootstrap-icons;
	margin-right: 0.5rem;
}
.scene-panel-side {
	border-radius: 1rem;
	bottom: 9rem;
	padding: 1.1rem;
	right: min(42rem, 34vw);
	width: 210px;
}
.scene-panel-side i {
	background: linear-gradient(90deg, #f59e0b, #22c55e, #38bdf8);
	border-radius: 999px;
	display: block;
	height: 0.55rem;
	margin-top: 1rem;
	width: 100%;
}
.scene-panel-mini {
	border-radius: 1rem;
	padding: 1rem;
	right: 3rem;
	top: 30rem;
	width: 180px;
}
.client-strip {
	background: var(--tn-surface-solid);
	border-bottom: 1px solid var(--tn-border);
	border-top: 1px solid var(--tn-border);
}
.client-strip-inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	justify-content: center;
	padding: 1rem 0;
}
.client-strip-inner span {
	background: rgba(37, 99, 235, 0.08);
	border: 1px solid var(--tn-border);
	border-radius: 999px;
	color: var(--tn-muted);
	font-size: 0.86rem;
	font-weight: 800;
	padding: 0.45rem 0.85rem;
}

.section-kicker {
	color: var(--tn-secondary);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}
.section-heading {
	margin: 0 auto 2.4rem;
	max-width: 760px;
	text-align: center;
}
.section-heading h2,
.cta-inner h2 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.08;
}
.section-heading.split {
	align-items: end;
	display: flex;
	justify-content: space-between;
	max-width: none;
	text-align: left;
}
.section-heading.split > div { max-width: 680px; }
.section-heading.split > p {
	color: var(--tn-muted);
	margin: 0;
	max-width: 430px;
}
.muted-band { background: rgba(148, 163, 184, 0.08); }

.glass-card {
	background: var(--tn-surface);
	border: 1px solid var(--tn-border);
	border-radius: 1.5rem;
	box-shadow: var(--tn-shadow);
	backdrop-filter: blur(18px);
}
.will-animate {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 480ms ease, transform 480ms ease;
}
.will-animate.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.blog-article-card.will-animate,
.blog-author-card.will-animate,
.content-card.will-animate,
.widget.will-animate {
	opacity: 1;
	transform: none;
}
.hero-dashboard {
	margin-left: auto;
	max-width: 520px;
	padding: 1.5rem;
	position: relative;
	z-index: 1;
}
.dashboard-top { display: flex; gap: 0.45rem; margin-bottom: 1.5rem; }
.dashboard-top span {
	background: rgba(255, 255, 255, 0.42);
	border-radius: 999px;
	height: 0.75rem;
	width: 0.75rem;
}
.metric-row,
.stats-grid,
.feature-grid,
.post-grid,
.gallery-grid {
	display: grid;
	gap: 1.25rem;
	min-width: 0;
}
.metric-row { grid-template-columns: repeat(2, 1fr); }
.metric-row div,
.stat {
	background: rgba(255, 255, 255, 0.12);
	border-radius: 1rem;
	padding: 1rem;
}
.metric-row strong,
.stat strong {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
}
.chart-bars {
	align-items: end;
	display: flex;
	gap: 0.8rem;
	height: 170px;
	margin: 1.5rem 0;
}
.chart-bars span {
	background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.24));
	border-radius: 999px 999px 0.5rem 0.5rem;
	flex: 1;
}
.chart-bars span:nth-child(1) { height: 46%; }
.chart-bars span:nth-child(2) { height: 68%; }
.chart-bars span:nth-child(3) { height: 55%; }
.chart-bars span:nth-child(4) { height: 84%; }
.chart-bars span:nth-child(5) { height: 72%; }
.stack-list,
.stack-tags,
.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}
.stack-list span,
.stack-tags span,
.tag-list a {
	background: rgba(37, 99, 235, 0.1);
	border: 1px solid var(--tn-border);
	border-radius: 999px;
	color: var(--tn-text);
	padding: 0.45rem 0.75rem;
}

.feature-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }
.post-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.services-showcase,
.portfolio-showcase,
.blog-showcase,
.contact-showcase {
	position: relative;
}
.services-showcase::before,
.blog-showcase::before {
	background: linear-gradient(90deg, var(--tn-secondary), #f59e0b, var(--tn-primary));
	content: "";
	display: block;
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.feature-card,
.portfolio-card,
.content-card,
.testimonial,
.team-card,
.detail-panel,
.contact-form,
.no-results,
.comments-area,
.widget {
	padding: 1.4rem;
}
.feature-card,
.portfolio-card,
.content-card,
.testimonial,
.contact-form {
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.feature-card:hover,
.portfolio-card:hover,
.content-card:hover,
.testimonial:hover {
	border-color: rgba(37, 99, 235, 0.28);
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
	transform: translateY(-4px);
}
.feature-icon {
	align-items: center;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(20, 184, 166, 0.14));
	border-radius: 1rem;
	color: var(--tn-primary);
	display: inline-flex;
	font-size: 1.4rem;
	height: 3rem;
	justify-content: center;
	margin-bottom: 1.1rem;
	width: 3rem;
}
.services-archive-main .services-hero {
	background:
		linear-gradient(90deg, rgba(7, 11, 20, 0.94), rgba(15, 23, 42, 0.74) 52%, rgba(15, 118, 110, 0.72)),
		linear-gradient(135deg, #07111f 0%, #172554 48%, #0f766e 100%);
	color: #fff;
	isolation: isolate;
	overflow: hidden;
	position: relative;
}
.services-archive-main .services-hero::before {
	background:
		linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 72px 72px;
	content: "";
	inset: 0;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.12), #000 35%, rgba(0, 0, 0, 0.76));
	position: absolute;
	z-index: -2;
}
.services-archive-main .services-hero::after {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 28px;
	content: "";
	height: 360px;
	position: absolute;
	right: -7rem;
	top: 8rem;
	transform: rotate(14deg);
	width: 560px;
	z-index: -1;
}
.services-hero-grid {
	align-items: center;
	display: grid;
	gap: 2rem;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
	position: relative;
	z-index: 1;
}
.services-hero-copy {
	max-width: 760px;
}
.services-hero-copy .section-kicker {
	color: rgba(255, 255, 255, 0.82);
}
.services-hero-copy h1 {
	font-size: clamp(3rem, 8vw, 6.5rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 0.98;
	margin-bottom: 1.25rem;
}
.services-hero-copy > p {
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.12rem;
	margin: 0 0 2rem;
	max-width: 620px;
}
.services-outline-btn {
	border-color: rgba(255, 255, 255, 0.42);
	color: #fff;
}
.service-outcome-panel {
	display: grid;
	gap: 0.85rem;
}
.service-outcome-panel div {
	align-items: center;
	background: rgba(7, 11, 20, 0.34);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 1.2rem;
	display: flex;
	gap: 0.85rem;
	padding: 1rem;
}
.service-outcome-panel i {
	align-items: center;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 1rem;
	color: #86efac;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 1.25rem;
	height: 3rem;
	justify-content: center;
	width: 3rem;
}
.service-outcome-panel span {
	font-size: 1.05rem;
	font-weight: 800;
}
.services-list-section {
	background:
		linear-gradient(180deg, rgba(7, 17, 31, 0.04), rgba(15, 118, 110, 0.08)),
		var(--tn-bg);
}
.services-feature-grid {
	align-items: stretch;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.services-feature-grid .feature-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 1.55rem;
	position: relative;
}
.services-feature-grid .feature-card::after {
	background: linear-gradient(90deg, var(--tn-primary), var(--tn-secondary));
	content: "";
	height: 4px;
	inset: auto 1.55rem 1.2rem;
	position: absolute;
	transform: scaleX(0.24);
	transform-origin: left;
	transition: transform 180ms ease;
}
.services-feature-grid .feature-card:hover::after {
	transform: scaleX(1);
}
.services-feature-grid .feature-card p {
	color: var(--tn-muted);
}
.services-feature-grid .feature-card .text-link {
	margin-top: auto;
	padding-bottom: 1rem;
}
.services-topic-panel {
	background: var(--tn-surface-solid);
	border: 1px solid var(--tn-border);
	border-radius: 1.5rem;
	box-shadow: var(--tn-shadow);
	display: grid;
	gap: 1.5rem;
	grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
	margin-top: 2rem;
	padding: clamp(1.25rem, 3vw, 2rem);
}
.services-topic-panel h2 {
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0;
}
.services-topic-grid {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-topic-item {
	align-items: center;
	background: rgba(37, 99, 235, 0.06);
	border: 1px solid var(--tn-border);
	border-radius: 1rem;
	display: flex;
	gap: 0.75rem;
	min-height: 4rem;
	padding: 0.85rem 1rem;
}
.service-topic-item i {
	align-items: center;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(20, 184, 166, 0.14));
	border-radius: 0.85rem;
	color: var(--tn-primary);
	display: inline-flex;
	flex: 0 0 auto;
	height: 2.5rem;
	justify-content: center;
	width: 2.5rem;
}
.service-topic-item span {
	font-weight: 800;
	line-height: 1.25;
}
.service-method-section {
	background: #07111f;
	color: #fff;
	padding: 0 0 5rem;
}
.service-method-strip {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, 1fr);
	overflow: hidden;
}
.service-method-strip div {
	background: rgba(255, 255, 255, 0.08);
	padding: clamp(1.25rem, 3vw, 2rem);
}
.service-method-strip span {
	color: var(--tn-secondary);
	display: block;
	font-size: 0.8rem;
	font-weight: 800;
	margin-bottom: 0.55rem;
}
.service-method-strip strong {
	display: block;
	font-size: 1.35rem;
	margin-bottom: 0.55rem;
}
.service-method-strip p {
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
}
.content-card,
.portfolio-card { overflow: hidden; padding: 0; }
.card-media,
.portfolio-media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.card-media img,
.portfolio-media img,
.single-media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.content-card .card-body,
.portfolio-card .card-body { padding: 1.4rem; }
.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-bottom: 0.65rem;
}
.text-link {
	color: var(--tn-primary);
	font-weight: 800;
}
.placeholder-art {
	aspect-ratio: 16 / 10;
	background:
		linear-gradient(135deg, rgba(37, 99, 235, 0.75), rgba(20, 184, 166, 0.75)),
		linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
	background-size: auto, 28px 28px, 28px 28px;
	border-radius: 1.25rem;
	min-height: 180px;
}
.placeholder-art.tall { aspect-ratio: 4 / 5; }
.service-highlight {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-top: 1.5rem;
	padding: 1.2rem 1.4rem;
}
.service-highlight span {
	color: var(--tn-muted);
	display: block;
	font-size: 0.84rem;
	font-weight: 800;
	margin-bottom: 0.2rem;
	text-transform: uppercase;
}
.service-highlight strong {
	display: block;
	font-size: clamp(1.05rem, 3vw, 1.45rem);
	line-height: 1.25;
}
.about-showcase {
	overflow: hidden;
	position: relative;
}
.about-showcase::after {
	background:
		linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
		linear-gradient(rgba(20, 184, 166, 0.08) 1px, transparent 1px);
	background-size: 42px 42px;
	content: "";
	inset: 0;
	opacity: 0.55;
	pointer-events: none;
	position: absolute;
}
.about-showcase > .container {
	position: relative;
	z-index: 1;
}
.process-list {
	display: grid;
	gap: 0.75rem;
	margin: 1.6rem 0;
}
.process-list div {
	align-items: center;
	background: var(--tn-surface-solid);
	border: 1px solid var(--tn-border);
	border-radius: 0.9rem;
	display: flex;
	gap: 0.85rem;
	padding: 0.8rem 0.95rem;
}
.process-list span {
	align-items: center;
	background: linear-gradient(135deg, var(--tn-primary), var(--tn-secondary));
	border-radius: 0.7rem;
	color: #fff;
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 800;
	height: 2.25rem;
	justify-content: center;
	width: 2.25rem;
}
.stats-board {
	padding: 1.2rem;
}
.stats-board-header {
	align-items: center;
	border-bottom: 1px solid var(--tn-border);
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding-bottom: 0.9rem;
}
.stats-board-header span {
	color: var(--tn-muted);
	font-size: 0.84rem;
	font-weight: 800;
	text-transform: uppercase;
}
.stats-board .stat {
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(20, 184, 166, 0.08));
	border: 1px solid var(--tn-border);
}

.narrow { margin: 0 auto 2.5rem; max-width: 820px; text-align: center; }
.prose-content {
	font-size: 1.05rem;
	margin: 0 auto;
	max-width: 860px;
}
.blog-reading-layout {
	align-items: start;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 4rem minmax(0, 860px) minmax(220px, 280px);
	justify-content: center;
}
.blog-reading-rail {
	display: grid;
	gap: 0.75rem;
	position: sticky;
	top: 104px;
}
.blog-reading-rail a,
.blog-reading-rail > span {
	align-items: center;
	background: var(--tn-surface-solid);
	border: 1px solid var(--tn-border);
	border-radius: 999px;
	color: var(--tn-muted);
	display: inline-flex;
	flex-direction: column;
	font-size: 0.78rem;
	font-weight: 800;
	gap: 0.2rem;
	justify-content: center;
	min-height: 4rem;
	padding: 0.55rem;
	text-align: center;
}
.blog-reading-rail i {
	color: var(--tn-primary);
	font-size: 1.2rem;
}
.blog-article-card {
	overflow: hidden;
	padding: 0;
}
.blog-article-cover {
	aspect-ratio: 16 / 7;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(20, 184, 166, 0.14));
	border-bottom: 1px solid var(--tn-border);
	overflow: hidden;
}
.blog-article-cover img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.blog-article-header {
	border-bottom: 1px solid var(--tn-border);
	padding: clamp(1.4rem, 4vw, 2.5rem);
}
.blog-category-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-bottom: 1rem;
}
.blog-category-row a {
	background: rgba(37, 99, 235, 0.1);
	border: 1px solid rgba(37, 99, 235, 0.14);
	border-radius: 999px;
	color: var(--tn-primary);
	font-size: 0.84rem;
	font-weight: 800;
	padding: 0.35rem 0.7rem;
}
.blog-article-header h1 {
	font-size: clamp(2.1rem, 6vw, 4.2rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.04;
	margin-bottom: 1.4rem;
	text-wrap: balance;
}
.blog-author-row {
	align-items: center;
	display: flex;
	gap: 0.8rem;
}
.blog-author-avatar {
	border-radius: 50%;
	flex: 0 0 auto;
	overflow: hidden;
}
.blog-author-avatar img,
.blog-author-card img {
	border-radius: 50%;
	display: block;
}
.blog-author-name {
	display: inline-block;
	font-weight: 800;
}
.blog-meta-line {
	color: var(--tn-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.94rem;
	gap: 0.35rem 0.8rem;
}
.blog-meta-line span {
	position: relative;
}
.blog-meta-line span::before {
	content: "";
	background: currentColor;
	border-radius: 50%;
	height: 0.28rem;
	left: -0.52rem;
	opacity: 0.55;
	position: absolute;
	top: 0.72em;
	width: 0.28rem;
}
.blog-prose {
	color: var(--tn-text);
	font-size: clamp(1.04rem, 2vw, 1.14rem);
	line-height: 1.82;
	max-width: 100%;
	padding: clamp(1.4rem, 4vw, 2.6rem);
}
.blog-prose > * {
	margin-left: auto;
	margin-right: auto;
	max-width: 720px;
}
.blog-prose > :first-child {
	margin-top: 0;
}
.blog-prose p,
.blog-prose ul,
.blog-prose ol,
.blog-prose blockquote,
.blog-prose table {
	margin-bottom: 1.45rem;
}
.blog-prose h2,
.blog-prose h3,
.blog-prose h4 {
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 0.8rem;
	margin-top: 2.2rem;
}
.blog-prose h2 {
	font-size: clamp(1.7rem, 4vw, 2.35rem);
}
.blog-prose h3 {
	font-size: clamp(1.35rem, 3vw, 1.75rem);
}
.blog-prose a:not(.wp-block-button__link) {
	color: var(--tn-primary);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 0.1em;
	text-underline-offset: 0.18em;
}
.blog-prose blockquote {
	background: rgba(20, 184, 166, 0.08);
	border-left: 4px solid var(--tn-secondary);
	border-radius: 0 1rem 1rem 0;
	color: var(--tn-text);
	font-size: 1.08em;
	font-weight: 700;
	padding: 1rem 1.2rem;
}
.blog-prose img,
.blog-prose .wp-block-image,
.blog-prose .wp-block-embed {
	border-radius: 1rem;
	max-width: min(100%, 860px);
}
.blog-prose .alignwide,
.blog-prose .wp-block-image.size-full,
.blog-prose .wp-block-embed {
	max-width: min(100%, 820px);
}
.blog-prose table {
	background: var(--tn-surface-solid);
	border: 1px solid var(--tn-border);
	border-collapse: collapse;
	display: block;
	overflow-x: auto;
	width: 100%;
}
.blog-prose th,
.blog-prose td {
	border: 1px solid var(--tn-border);
	padding: 0.75rem;
}
.blog-entry-footer {
	border-top: 1px solid var(--tn-border);
	padding: 0 clamp(1.4rem, 4vw, 2.6rem) clamp(1.4rem, 4vw, 2.2rem);
}
.blog-author-card {
	padding: 1.1rem;
	position: sticky;
	top: 104px;
}
.blog-author-card strong {
	display: block;
	font-size: 1.05rem;
	margin-top: 0.8rem;
}
.blog-author-card p {
	color: var(--tn-muted);
	font-size: 0.95rem;
	margin: 0.55rem 0 0.8rem;
}
body.single-post .comments-area {
	margin-left: auto;
	margin-right: auto;
	max-width: 860px;
}
.entry-content pre,
.wp-block-code,
.wp-block-preformatted {
	background: #0b1220;
	border: 1px solid rgba(148, 163, 184, 0.24);
	border-radius: 1rem;
	box-shadow: 0 18px 55px rgba(15, 23, 42, 0.18);
	color: #e5edf7;
	margin: 1.6rem 0;
	max-width: 100%;
	overflow-x: auto;
	padding: 1rem;
}
.entry-content pre code,
.wp-block-code code,
.wp-block-preformatted code,
.entry-content code {
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}
.entry-content pre code,
.wp-block-code code,
.wp-block-preformatted code {
	background: transparent;
	color: inherit;
	display: block;
	font-size: 0.92rem;
	line-height: 1.75;
	padding: 0;
	white-space: pre;
}
.entry-content :not(pre) > code {
	background: rgba(37, 99, 235, 0.1);
	border: 1px solid var(--tn-border);
	border-radius: 0.35rem;
	color: var(--tn-primary);
	font-size: 0.9em;
	padding: 0.1rem 0.32rem;
}
.hljs {
	background: transparent;
	color: #e5edf7;
	padding: 0;
}
.single-media { margin: 0 auto 2rem; max-width: 980px; }
.single-technova_tutorial .site-main.section-pad { padding: 0; }
.single-technova_tutorial .site-main > .container {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}
.single-technova_tutorial .technova-breadcrumbs { display: none; }
.tutorial-shell {
	--tutorial-accent: #04aa6d;
	--tutorial-accent-dark: #047857;
	--tutorial-sidebar-bg: #eef1f4;
	--tutorial-code-bg: #0f172a;
	background: var(--tn-surface-solid);
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	min-height: calc(100vh - 110px);
}
.tutorial-shell.is-loading {
	cursor: progress;
	opacity: 0.72;
}
[data-theme="dark"] .tutorial-shell {
	--tutorial-sidebar-bg: #101722;
	--tutorial-code-bg: #050812;
}
.tutorial-sidebar {
	background: var(--tutorial-sidebar-bg);
	border-right: 1px solid var(--tn-border);
	height: calc(100vh - 110px);
	overflow-y: auto;
	padding: 1rem 0.75rem 1.4rem;
	position: sticky;
	top: 110px;
	z-index: 40;
}
.admin-bar .tutorial-sidebar {
	height: calc(100vh - 142px);
	top: 142px;
}
.tutorial-sidebar-head {
	align-items: center;
	display: flex;
	gap: 0.7rem;
	justify-content: space-between;
	margin-bottom: 0.75rem;
}
.tutorial-sidebar-title {
	color: var(--tn-text);
	display: block;
	font-size: 1.18rem;
	font-weight: 800;
	line-height: 1.2;
	min-width: 0;
	padding: 0.25rem 0.35rem;
}
.tutorial-sidebar-close,
.tutorial-sidebar-toggle,
.tutorial-icon-btn {
	align-items: center;
	background: var(--tn-surface-solid);
	border: 1px solid var(--tn-border);
	border-radius: 0.45rem;
	color: var(--tn-text);
	display: inline-flex;
	height: 2.45rem;
	justify-content: center;
	width: 2.45rem;
}
.tutorial-sidebar-close,
.tutorial-sidebar-toggle { display: none; }
.tutorial-search {
	align-items: center;
	background: var(--tn-surface-solid);
	border: 1px solid var(--tn-border);
	border-radius: 0.45rem;
	display: flex;
	gap: 0.55rem;
	margin-bottom: 0.9rem;
	padding: 0.62rem 0.75rem;
}
.tutorial-search i { color: var(--tn-muted); }
.tutorial-search input {
	background: transparent;
	border: 0;
	color: var(--tn-text);
	min-width: 0;
	outline: 0;
	width: 100%;
}
.tutorial-progress-card {
	background: var(--tn-surface-solid);
	border: 1px solid var(--tn-border);
	border-radius: 0.55rem;
	margin-bottom: 0.95rem;
	padding: 0.8rem;
}
.tutorial-progress-card div {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.tutorial-progress-card span {
	color: var(--tn-muted);
	font-size: 0.82rem;
	font-weight: 700;
}
.tutorial-progress-card strong {
	color: var(--tutorial-accent);
	font-size: 0.92rem;
}
.tutorial-progress-track {
	background: rgba(4, 170, 109, 0.16);
	border-radius: 999px;
	display: block;
	height: 0.45rem;
	margin-top: 0.6rem;
	overflow: hidden;
}
.tutorial-progress-track i {
	background: var(--tutorial-accent);
	display: block;
	height: 100%;
	width: 0;
}
.tutorial-topic-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.tutorial-topic-item { margin: 0.08rem 0; }
.tutorial-topic-list details { margin: 0; }
.tutorial-topic-list summary {
	align-items: center;
	cursor: pointer;
	display: grid;
	grid-template-columns: 1.25rem minmax(0, 1fr);
	list-style: none;
	padding-left: calc(var(--topic-depth, 0) * 0.85rem);
}
.tutorial-topic-list summary::-webkit-details-marker { display: none; }
.tutorial-topic-caret {
	color: var(--tn-muted);
	display: inline-flex;
	font-size: 0.78rem;
	transition: transform 160ms ease;
}
.tutorial-topic-list details[open] > summary .tutorial-topic-caret { transform: rotate(90deg); }
.tutorial-topic-list a {
	border-left: 4px solid transparent;
	border-radius: 0.35rem;
	color: var(--tn-text);
	display: block;
	font-size: 0.95rem;
	line-height: 1.25;
	min-height: 2rem;
	padding: 0.42rem 0.65rem 0.42rem calc(0.7rem + (var(--topic-depth, 0) * 0.85rem));
}
.tutorial-topic-list summary a { padding-left: 0.25rem; }
.tutorial-topic-list a:hover {
	background: rgba(4, 170, 109, 0.12);
	color: var(--tn-text);
}
.tutorial-topic-list a.is-active {
	background: var(--tutorial-accent);
	border-left-color: var(--tutorial-accent-dark);
	color: #fff;
	font-weight: 800;
}
.tutorial-topic-list a.is-complete::after {
	content: "\F26A";
	float: right;
	font-family: bootstrap-icons;
	font-size: 0.85rem;
}
.tutorial-search-empty {
	color: var(--tn-muted);
	font-size: 0.9rem;
	margin: 1rem 0.35rem;
}
.tutorial-content-wrap {
	min-width: 0;
	padding: clamp(1.35rem, 4vw, 3rem);
}
.tutorial-header {
	align-items: flex-start;
	display: flex;
	gap: 1.2rem;
	justify-content: space-between;
	margin: 0 auto 1rem;
	max-width: 1180px;
}
.tutorial-title-block { min-width: 0; }
.tutorial-inline-breadcrumbs {
	align-items: center;
	color: var(--tn-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.9rem;
	font-weight: 700;
	gap: 0.35rem;
	margin-bottom: 0.75rem;
}
.tutorial-inline-breadcrumbs a { color: var(--tutorial-accent-dark); }
.tutorial-header h1 {
	font-size: clamp(2.2rem, 5vw, 4rem);
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0;
	max-width: 920px;
}
.tutorial-summary {
	color: var(--tn-muted);
	font-size: 1.06rem;
	margin: 1rem 0 0;
	max-width: 780px;
}
.tutorial-meta-line {
	align-items: center;
	color: var(--tn-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.9rem;
	font-weight: 700;
	gap: 0.6rem 1rem;
	margin-top: 1rem;
}
.tutorial-meta-line span {
	align-items: center;
	display: inline-flex;
	gap: 0.35rem;
}
.tutorial-actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 0.6rem;
}
.tutorial-icon-btn.is-active,
.tutorial-complete-btn.is-complete {
	background: rgba(4, 170, 109, 0.12);
	border-color: rgba(4, 170, 109, 0.42);
	color: var(--tutorial-accent-dark);
}
.tutorial-complete-btn {
	align-items: center;
	background: var(--tn-surface-solid);
	border: 1px solid var(--tn-border);
	border-radius: 0.45rem;
	color: var(--tn-text);
	display: inline-flex;
	font-weight: 800;
	gap: 0.45rem;
	min-height: 2.45rem;
	padding: 0.55rem 0.8rem;
}
.tutorial-nav {
	align-items: center;
	border-bottom: 1px solid var(--tn-border);
	display: flex;
	justify-content: space-between;
	margin: 0 auto 2rem;
	max-width: 1180px;
	padding: 0.75rem 0 1.25rem;
}
.tutorial-nav-bottom {
	border-bottom: 0;
	border-top: 1px solid var(--tn-border);
	margin-bottom: 0;
	margin-top: 2.3rem;
	padding: 1.25rem 0 0;
}
.tutorial-nav-btn {
	background: var(--tutorial-accent);
	border: 0;
	border-radius: 0.35rem;
	color: #fff;
	font-weight: 800;
}
.tutorial-nav-btn:hover {
	background: var(--tutorial-accent-dark);
	color: #fff;
}
.tutorial-reading-layout {
	margin: 0 auto;
	max-width: 1180px;
}
.tutorial-prose {
	font-size: 1.04rem;
	line-height: 1.8;
	min-width: 0;
}
.tutorial-prose > * {
	max-width: 840px;
}
.tutorial-prose > .alignwide,
.tutorial-prose > .wp-block-table,
.tutorial-prose > table,
.tutorial-prose > pre,
.tutorial-prose > .wp-block-code,
.tutorial-prose > .tutorial-toc {
	max-width: 100%;
}
.tutorial-prose h2 {
	border-top: 1px solid var(--tn-border);
	font-size: clamp(1.75rem, 4vw, 2.55rem);
	font-weight: 650;
	letter-spacing: 0;
	margin-top: 2.2rem;
	padding-top: 1.5rem;
}
.tutorial-prose h2:first-child {
	border-top: 0;
	margin-top: 0;
	padding-top: 0;
}
.tutorial-prose h3 {
	font-size: clamp(1.35rem, 3vw, 1.8rem);
	font-weight: 700;
	margin-top: 1.7rem;
}
.tutorial-prose table,
.tutorial-prose .wp-block-table table {
	border-collapse: collapse;
	display: table;
	font-size: 0.96rem;
	width: 100%;
}
.tutorial-prose th,
.tutorial-prose td {
	border: 1px solid var(--tn-border);
	padding: 0.78rem 0.9rem;
	text-align: left;
	vertical-align: top;
}
.tutorial-prose th {
	background: rgba(4, 170, 109, 0.1);
	font-weight: 800;
}
.tutorial-prose blockquote,
.tutorial-prose .wp-block-quote,
.tutorial-prose .wp-block-pullquote,
.tutorial-prose .is-style-callout {
	background: rgba(4, 170, 109, 0.1);
	border-left: 5px solid var(--tutorial-accent);
	border-radius: 0.5rem;
	margin-left: 0;
	padding: 1rem 1.15rem;
}
.tutorial-prose details,
.tutorial-prose .wp-block-details {
	border: 1px solid var(--tn-border);
	border-radius: 0.5rem;
	margin: 1rem 0;
	padding: 0.9rem 1rem;
}
.tutorial-prose details summary {
	cursor: pointer;
	font-weight: 800;
}
.tutorial-prose pre,
.tutorial-prose .wp-block-code {
	background: var(--tutorial-code-bg);
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 0.6rem;
	color: #e5edf7;
	overflow-x: auto;
	padding: 1rem;
}
.tutorial-toc {
	background: rgba(148, 163, 184, 0.1);
	border: 1px solid var(--tn-border);
	border-radius: 0.6rem;
	display: grid;
	gap: 0.3rem;
	margin-bottom: 2rem;
	padding: 1rem;
}
.tutorial-toc strong {
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.tutorial-toc a {
	color: var(--tn-muted);
	font-weight: 700;
	padding: 0.18rem 0;
}
.tutorial-toc a:hover { color: var(--tutorial-accent-dark); }
.tutorial-toc .toc-level-3 { padding-left: 1rem; }
.tutorial-related {
	margin: 2.5rem auto 0;
	max-width: 1180px;
}
.tutorial-related h2 {
	font-size: 1.35rem;
	font-weight: 800;
	margin-bottom: 1rem;
}
.tutorial-related-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}
.tutorial-related-card {
	background: var(--tn-surface-solid);
	border: 1px solid var(--tn-border);
	border-radius: 0.6rem;
	display: grid;
	gap: 0.35rem;
	padding: 1rem;
}
.tutorial-related-card:hover {
	border-color: rgba(4, 170, 109, 0.45);
	color: var(--tn-text);
}
.tutorial-related-card span {
	color: var(--tn-muted);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
}
.tutorial-related-card strong { font-size: 1rem; }
.tutorial-card-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}
.tutorial-track-card {
	padding: 1.5rem;
}
.tutorial-track-meta {
	align-items: center;
	color: var(--tn-muted);
	display: flex;
	font-size: 0.92rem;
	font-weight: 800;
	gap: 0.4rem;
	margin-bottom: 0.8rem;
}
.check-list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.check-list li { margin-bottom: 0.75rem; padding-left: 1.8rem; position: relative; }
.check-list li::before {
	color: var(--tn-secondary);
	content: "\F26A";
	font-family: bootstrap-icons;
	left: 0;
	position: absolute;
}
.gallery-grid { grid-template-columns: repeat(3, 1fr); margin-top: 1rem; }
.project-gallery-image {
	aspect-ratio: 16 / 10;
	border-radius: 1.25rem;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.skill { margin-bottom: 1rem; }
.skill span { display: block; font-weight: 800; margin-bottom: 0.4rem; }
.skill div {
	background: rgba(148, 163, 184, 0.22);
	border-radius: 999px;
	height: 0.7rem;
	overflow: hidden;
}
.skill i {
	background: linear-gradient(135deg, var(--tn-primary), var(--tn-secondary));
	display: block;
	height: 100%;
}
.timeline {
	border-left: 2px solid var(--tn-border);
	padding-left: 1.5rem;
}
.timeline div { margin-bottom: 1.4rem; position: relative; }
.timeline div::before {
	background: var(--tn-secondary);
	border-radius: 50%;
	content: "";
	height: 0.8rem;
	left: -1.95rem;
	position: absolute;
	top: 0.45rem;
	width: 0.8rem;
}
.avatar-placeholder {
	background: linear-gradient(135deg, var(--tn-primary), var(--tn-secondary));
	border-radius: 50%;
	height: 4.5rem;
	margin-bottom: 1rem;
	width: 4.5rem;
}

.contact-form label { display: block; font-weight: 800; margin-bottom: 0.4rem; }
.contact-form input,
.contact-form textarea,
.search-form input,
.newsletter-form input {
	background: var(--tn-surface-solid);
	border: 1px solid var(--tn-border);
	border-radius: 1rem;
	color: var(--tn-text);
	outline: 0;
	padding: 0.8rem 1rem;
	width: 100%;
}
.contact-form input,
.contact-form textarea {
	max-width: 100%;
}
.technova-hp {
	height: 0;
	left: -9999px;
	margin: 0;
	overflow: hidden;
	position: absolute;
	width: 0;
}
.search-form,
.newsletter-form {
	display: flex;
	gap: 0.6rem;
}
.map-section iframe {
	border: 0;
	filter: grayscale(0.25);
	height: 420px;
	width: 100%;
}
.business-info {
	display: grid;
	gap: 0.9rem;
	padding: clamp(1.25rem, 3vw, 1.8rem);
}
.business-info p {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	margin: 0;
}
.business-info i {
	color: var(--tn-primary);
	flex: 0 0 auto;
	width: 1.1rem;
}
.contact-intro {
	padding: 1.5rem 1rem 1.5rem 0;
}
.contact-intro h1 {
	margin-bottom: 1.5rem;
}
.testimonials-showcase .testimonial {
	min-height: 240px;
	position: relative;
}
.testimonial .bi-quote {
	color: var(--tn-primary);
	display: inline-block;
	font-size: 2rem;
	margin-bottom: 0.5rem;
}
.testimonial p {
	font-size: 1.08rem;
	font-weight: 700;
}
.testimonial cite {
	color: var(--tn-muted);
	font-style: normal;
	font-weight: 800;
}
.contact-shell {
	margin: 0;
	padding: 1.4rem;
}
.contact-shell .contact-form {
	background: var(--tn-surface-solid);
	box-shadow: none;
}
.contact-points {
	display: grid;
	gap: 0.8rem;
	margin-top: 1.3rem;
}
.contact-points span {
	align-items: center;
	display: flex;
	font-weight: 800;
	gap: 0.65rem;
}
.contact-points i {
	align-items: center;
	background: rgba(20, 184, 166, 0.14);
	border-radius: 999px;
	color: var(--tn-secondary);
	display: inline-flex;
	height: 2.1rem;
	justify-content: center;
	width: 2.1rem;
}

.cta-section {
	background:
		linear-gradient(90deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0)),
		linear-gradient(135deg, var(--tn-primary), var(--tn-secondary));
	color: #fff;
	overflow: hidden;
	padding: 5rem 0;
	position: relative;
}
.cta-section::before {
	background:
		linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
	background-size: 56px 56px;
	content: "";
	inset: 0;
	opacity: 0.35;
	position: absolute;
}
.cta-section .container {
	position: relative;
	z-index: 1;
}
.cta-inner {
	margin: 0 auto;
	max-width: 820px;
	text-align: center;
}
.cta-inner p:not(.section-kicker) {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.1rem;
	margin: 1rem auto 1.5rem;
	max-width: 660px;
}

.technova-breadcrumbs {
	background: rgba(148, 163, 184, 0.08);
	border-bottom: 1px solid var(--tn-border);
	padding: 1rem 0;
}
.technova-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.technova-breadcrumbs li::after { content: "/"; margin-left: 0.5rem; opacity: 0.45; }
.technova-breadcrumbs li:last-child::after { content: ""; }

.sidebar { display: grid; gap: 1.25rem; position: sticky; top: 96px; }
.widget ul { margin-bottom: 0; padding-left: 1.2rem; }
.navigation.pagination {
	display: block;
	margin: 2rem 0 0;
	width: 100%;
}
.pagination,
.navigation.pagination .nav-links,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}
.page-numbers {
	background: var(--tn-surface-solid);
	border: 1px solid var(--tn-border);
	border-radius: 999px;
	display: inline-flex;
	line-height: 1.2;
	min-height: 2.55rem;
	padding: 0.5rem 0.85rem;
	align-items: center;
	justify-content: center;
}
.page-numbers.current { background: var(--tn-primary); color: #fff; }

.comments-area {
	margin-top: 2.5rem;
}
.comments-title,
.comment-reply-title {
	font-weight: 800;
	margin-bottom: 1.1rem;
}
.comment-list {
	display: grid;
	gap: 1rem;
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}
.comment-list .children {
	border-left: 2px solid var(--tn-border);
	display: grid;
	gap: 1rem;
	list-style: none;
	margin: 1rem 0 0 1.5rem;
	padding: 0 0 0 1rem;
}
.comment-body {
	background: var(--tn-surface-solid);
	border: 1px solid var(--tn-border);
	border-radius: 1rem;
	padding: 1rem;
}
.comment-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.75rem;
	margin-bottom: 0.85rem;
}
.comment-author {
	align-items: center;
	display: flex;
	gap: 0.75rem;
}
.comment-author .avatar {
	border-radius: 50%;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
	height: 3rem;
	width: 3rem;
}
.comment-author .fn {
	font-weight: 800;
}
.comment-metadata,
.comment-awaiting-moderation,
.logged-in-as,
.comment-notes {
	color: var(--tn-muted);
	font-size: 0.92rem;
}
.comment-content {
	color: var(--tn-text);
	margin-left: 3.75rem;
}
.comment-content p:last-child {
	margin-bottom: 0;
}
.reply {
	margin: 0.75rem 0 0 3.75rem;
}
.comment-reply-link,
#cancel-comment-reply-link {
	color: var(--tn-primary);
	font-weight: 800;
}
.comment-respond {
	background: rgba(148, 163, 184, 0.08);
	border: 1px solid var(--tn-border);
	border-radius: 1rem;
	margin-top: 1.5rem;
	padding: 1.2rem;
}
.comment-form {
	display: grid;
	gap: 0.9rem;
}
.comment-form p {
	margin-bottom: 0;
}
.comment-form label {
	display: block;
	font-weight: 800;
	margin-bottom: 0.4rem;
}
.comment-form input:not([type="checkbox"]):not([type="submit"]),
.comment-form textarea {
	background: var(--tn-surface-solid);
	border: 1px solid var(--tn-border);
	border-radius: 1rem;
	color: var(--tn-text);
	outline: 0;
	padding: 0.8rem 1rem;
	width: 100%;
}
.comment-form textarea {
	min-height: 150px;
	resize: vertical;
}
.comment-form-cookies-consent {
	align-items: flex-start;
	display: flex;
	gap: 0.55rem;
}
.comment-form-cookies-consent input {
	margin-top: 0.35rem;
}
.comment-form .submit {
	background: linear-gradient(135deg, var(--tn-primary), var(--tn-secondary));
	border: 0;
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
	color: #fff;
	font-weight: 800;
	padding: 0.8rem 1.3rem;
}

.site-footer {
	background: #07111f;
	color: #dbeafe;
}
.footer-newsletter { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 3rem 0; }
.newsletter-inner {
	align-items: center;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
}
.newsletter-inner > * { min-width: 0; }
.newsletter-form {
	flex: 0 1 520px;
	max-width: 100%;
}
.newsletter-inner h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; margin: 0; }
.footer-brand { color: #fff; font-size: 1.4rem; font-weight: 800; }
.footer-widget-title { color: #fff; font-weight: 800; }
.footer-widget ul { list-style: none; margin: 0; padding: 0; }
.footer-widget li { margin-bottom: 0.5rem; }
.social-links { display: flex; gap: 0.65rem; }
.social-links a {
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	display: inline-flex;
	height: 2.3rem;
	justify-content: center;
	width: 2.3rem;
}
.footer-bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-top: 2rem;
	padding-top: 1.5rem;
}
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 991px) {
	.section-pad { padding: 4rem 0; }
	.hero-section { margin-top: 0; padding: 5rem 0 4rem; }
	.home-hero {
		min-height: auto;
		padding: 5rem 0 3rem;
	}
	.home-hero-content {
		min-height: 0;
	}
	.scene-panel-main {
		opacity: 0.34;
		right: -2rem;
		top: 5rem;
		width: 520px;
	}
	.scene-panel-side,
	.scene-panel-mini {
		display: none;
	}
	.gallery-grid { grid-template-columns: 1fr 1fr; }
	.section-heading.split,
	.newsletter-inner,
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
	.navbar-collapse {
		background: var(--tn-surface-solid);
		border: 1px solid var(--tn-border);
		border-radius: 1rem;
		box-shadow: var(--tn-shadow);
		margin-top: 1rem;
		max-height: calc(100vh - 110px);
		overflow-y: auto;
		padding: 1rem;
	}
	.navbar-nav {
		align-items: stretch !important;
		gap: 0.25rem;
	}
	.navbar-nav .menu-item > a,
	.nav-link {
		border-radius: 0.75rem;
		min-height: 44px;
		padding: 0.75rem !important;
	}
	.sidebar {
		position: static;
	}
	.service-highlight {
		align-items: flex-start;
		flex-direction: column;
	}
	.services-hero-grid,
	.services-feature-grid,
	.services-topic-panel,
	.services-topic-grid,
	.service-method-strip {
		grid-template-columns: 1fr;
	}
	.services-hero-copy h1 {
		font-size: clamp(2.6rem, 12vw, 4.6rem);
	}
	.service-method-section {
		padding-bottom: 3rem;
	}
	.blog-reading-layout {
		grid-template-columns: minmax(0, 860px);
	}
	.blog-reading-rail {
		display: flex;
		position: static;
	}
	.blog-reading-rail a,
	.blog-reading-rail > span {
		flex-direction: row;
		min-height: 2.75rem;
		min-width: 0;
		padding: 0.55rem 0.8rem;
	}
	.blog-author-card {
		position: static;
	}
	.single-technova_tutorial .site-main > .container {
		--bs-gutter-x: 0;
	}
	.tutorial-shell {
		grid-template-columns: 1fr;
	}
	.tutorial-sidebar {
		border-bottom: 0;
		border-right: 1px solid var(--tn-border);
		box-shadow: 18px 0 48px rgba(15, 23, 42, 0.18);
		height: 100vh;
		left: 0;
		max-height: none;
		max-width: calc(100vw - 3rem);
		position: fixed;
		top: 0;
		transform: translateX(-105%);
		transition: transform 180ms ease;
		width: 320px;
	}
	.admin-bar .tutorial-sidebar {
		height: calc(100vh - 32px);
		top: 32px;
	}
	body.tutorial-sidebar-open .tutorial-sidebar {
		transform: translateX(0);
	}
	body.tutorial-sidebar-open::after {
		background: rgba(15, 23, 42, 0.45);
		content: "";
		inset: 0;
		position: fixed;
		z-index: 35;
	}
	.tutorial-sidebar-close,
	.tutorial-sidebar-toggle {
		display: inline-flex;
	}
	.tutorial-header {
		align-items: flex-start;
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
	}
	.tutorial-actions {
		grid-column: 2;
	}
	.contact-shell {
		padding: 1rem;
	}
}

@media (max-width: 640px) {
	body {
		background:
			radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 18rem),
			var(--tn-bg);
	}
	.container {
		--bs-gutter-x: 1.25rem;
	}
	.section-pad { padding: 3rem 0; }
	.hero-section { padding: 4rem 0 3rem; }
	.home-hero {
		padding: 4.25rem 0 2.4rem;
	}
	.home-hero::after {
		display: none;
	}
	.home-hero .home-hero-copy h1 {
		font-size: clamp(2.35rem, 13vw, 3.35rem);
	}
	.hero-proof {
		grid-template-columns: 1fr;
	}
	.scene-panel-main {
		left: 1rem;
		opacity: 0.2;
		right: 1rem;
		top: 8rem;
		width: auto;
	}
	.scene-bars {
		height: 120px;
	}
	.client-strip-inner {
		justify-content: flex-start;
		overflow-x: auto;
		padding: 0.8rem 0;
		flex-wrap: nowrap;
	}
	.client-strip-inner span {
		flex: 0 0 auto;
	}
	.hero-section h1,
	.page-header h1,
	.single-header h1,
	.archive-header h1 {
		font-size: clamp(2.15rem, 12vw, 3.1rem);
		line-height: 1.06;
	}
	.hero-copy {
		font-size: 1rem;
	}
	.hero-actions,
	.tutorial-nav,
	.search-form,
	.newsletter-form { flex-direction: column; }
	.hero-actions .btn,
	.tutorial-nav .btn,
	.newsletter-form .btn,
	.search-form .btn,
	.contact-form .btn {
		width: 100%;
	}
	.feature-grid,
	.post-grid,
	.metric-row,
	.stats-grid,
	.gallery-grid { grid-template-columns: 1fr; }
	.glass-card,
	.feature-card,
	.portfolio-card,
	.content-card,
	.testimonial,
	.team-card,
	.detail-panel,
	.contact-form,
	.no-results,
	.comments-area,
	.widget {
		border-radius: 1rem;
		padding: 1.1rem;
	}
	.hero-dashboard {
		margin: 0;
		padding: 1rem;
	}
	.chart-bars {
		height: 120px;
	}
	.footer-menu {
		flex-direction: column;
		gap: 0.5rem;
	}
	.tutorial-content-wrap {
		padding: 1.25rem;
	}
	.tutorial-header {
		grid-template-columns: 1fr;
	}
	.tutorial-header h1 {
		font-size: clamp(2rem, 12vw, 3rem);
	}
	.tutorial-sidebar-toggle,
	.tutorial-actions {
		grid-column: 1;
	}
	.tutorial-actions {
		align-items: stretch;
		flex-wrap: wrap;
	}
	.tutorial-complete-btn {
		flex: 1 1 12rem;
		justify-content: center;
	}
	.tutorial-prose {
		font-size: 1rem;
	}
	.tutorial-prose > * {
		max-width: 100%;
	}
	.tutorial-toc .toc-level-3 {
		padding-left: 0.5rem;
	}
	.map-section iframe {
		height: 320px;
	}
	.blog-article-cover {
		aspect-ratio: 16 / 10;
	}
	.blog-article-header,
	.blog-prose {
		padding: 1.15rem;
	}
	.blog-article-header h1 {
		font-size: clamp(2rem, 12vw, 3rem);
	}
	.blog-meta-line {
		display: block;
	}
	.blog-meta-line span {
		display: block;
	}
	.blog-meta-line span::before {
		content: none;
	}
	.blog-entry-footer {
		padding: 0 1.15rem 1.15rem;
	}
	.comment-list .children {
		margin-left: 0.75rem;
		padding-left: 0.75rem;
	}
	.comment-content,
	.reply {
		margin-left: 0;
	}
	.contact-intro {
		padding: 0.5rem 0 1rem;
	}
	.process-list div,
	.stats-board-header {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 420px) {
	.navbar-brand {
		max-width: 52vw;
	}
	.brand-mark {
		height: 2.1rem;
		width: 2.1rem;
	}
	.theme-toggle,
	.navbar-toggler {
		height: 40px;
		min-width: 40px;
		width: 40px;
	}
	.content-card .card-body,
	.portfolio-card .card-body {
		padding: 1.05rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
