:root {
	--bg: #0b1020;
	--surface: #111827;
	--card: #151b2d;
	--card-soft: rgba(255, 255, 255, 0.055);
	--text: #f9fafb;
	--muted: #a7b0c0;
	--muted-2: #748095;
	--accent: #60a5fa;
	--accent-2: #a78bfa;
	--accent-3: #34d399;
	--warning: #fbbf24;
	--border: rgba(255, 255, 255, 0.12);
	--border-strong: rgba(255, 255, 255, 0.2);
	--shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
	--max: 1180px;
	--radius: 8px;
	--font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		linear-gradient(180deg, rgba(11, 16, 32, 0.96), #0b1020 32%, #090d19),
		linear-gradient(90deg, rgba(96, 165, 250, 0.08), rgba(52, 211, 153, 0.04), rgba(167, 139, 250, 0.06));
	color: var(--text);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.18));
}

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

a {
	color: inherit;
	text-decoration-color: rgba(96, 165, 250, 0.55);
	text-underline-offset: 0.22em;
	transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

a:hover {
	color: #dbeafe;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex="-1"]:focus-visible {
	outline: 2px solid var(--accent-3);
	outline-offset: 4px;
}

button {
	font: inherit;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	letter-spacing: 0;
	line-height: 1.06;
	color: var(--text);
}

h1 {
	font-size: 72px;
	max-width: 900px;
}

h2 {
	font-size: 48px;
	max-width: 780px;
}

h3 {
	font-size: 22px;
}

p {
	margin: 0;
	color: var(--muted);
}

ul,
ol {
	margin: 0;
	padding: 0;
}

.container {
	width: min(100% - 48px, var(--max));
	margin: 0 auto;
}

.container.narrow {
	width: min(100% - 48px, 820px);
}

.section {
	position: relative;
	padding: 84px 0;
	scroll-margin-top: 96px;
}

.section-tight {
	padding-top: 24px;
}

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

.screen-reader-text:focus,
.skip-link:focus {
	top: 16px;
	left: 16px;
	z-index: 1000;
	width: auto;
	height: auto;
	margin: 0;
	clip: auto;
	padding: 10px 14px;
	border-radius: var(--radius);
	background: var(--accent-3);
	color: #04120d;
	font-weight: 800;
	text-decoration: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(11, 16, 32, 0.82);
	backdrop-filter: blur(18px);
}

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

.site-brand,
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.brand-mark {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2) 52%, var(--accent-3));
	color: #07111f;
	font-weight: 900;
	box-shadow: 0 16px 40px rgba(96, 165, 250, 0.22);
}

.brand-mark-small {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	font-size: 14px;
}

.brand-name,
.brand-role {
	display: block;
}

.brand-name {
	font-weight: 800;
	color: var(--text);
}

.brand-role {
	font-size: 12px;
	color: var(--muted-2);
}

.custom-logo-wrap img {
	width: auto;
	max-height: 42px;
}

.site-nav {
	display: flex;
	align-items: center;
}

.nav-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
}

.nav-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
	border-color: var(--border);
	background: rgba(255, 255, 255, 0.055);
	color: var(--text);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.055);
	color: var(--text);
	cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	content: "";
	transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
	position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
	position: absolute;
	left: 0;
}

.nav-toggle-lines::before {
	top: -6px;
}

.nav-toggle-lines::after {
	top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
	transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
	transform: translateY(-6px) rotate(-45deg);
}

.hero {
	padding-top: 112px;
	padding-bottom: 94px;
	overflow: hidden;
}

.hero::after,
.projects-section::before,
.contact-section::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(96, 165, 250, 0), rgba(96, 165, 250, 0.2), rgba(52, 211, 153, 0.16), rgba(167, 139, 250, 0));
	height: 1px;
}

.hero::after {
	bottom: 0;
}

.projects-section::before,
.contact-section::before {
	top: 0;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
	align-items: center;
	gap: 56px;
}

.hero-copy {
	display: grid;
	gap: 24px;
}

.section-eyebrow,
.arvai-small-label,
.mock-label {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	gap: 8px;
	color: #b9f6dd;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
}

.section-eyebrow::before,
.arvai-small-label::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--accent-3);
	box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.12);
}

.lead {
	font-size: 19px;
	line-height: 1.72;
	max-width: 690px;
	color: #c7d2e2;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 850;
	text-decoration: none;
	line-height: 1;
}

.button-primary {
	background: linear-gradient(135deg, var(--accent), #8bc7ff 45%, var(--accent-3));
	color: #06111f;
	box-shadow: 0 16px 46px rgba(96, 165, 250, 0.24);
}

.button-primary:hover {
	color: #020813;
	transform: translateY(-2px);
}

.button-secondary {
	border-color: var(--border);
	background: rgba(255, 255, 255, 0.055);
	color: var(--text);
}

.button-secondary:hover {
	border-color: var(--border-strong);
	background: rgba(255, 255, 255, 0.085);
	color: var(--text);
	transform: translateY(-2px);
}

.trust-line {
	max-width: 720px;
	font-size: 14px;
	color: var(--muted-2);
}

.hero-visual {
	position: relative;
}

.mock-window {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
		rgba(17, 24, 39, 0.86);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.mock-window-top {
	display: flex;
	gap: 7px;
	align-items: center;
	height: 42px;
	padding: 0 16px;
	border-bottom: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.035);
}

.mock-window-top span {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--muted-2);
}

.mock-window-top span:nth-child(1) {
	background: #fb7185;
}

.mock-window-top span:nth-child(2) {
	background: var(--warning);
}

.mock-window-top span:nth-child(3) {
	background: var(--accent-3);
}

.mock-window-body {
	display: grid;
	gap: 18px;
	padding: 22px;
}

.mock-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.mock-header strong {
	display: block;
	margin-top: 3px;
	font-size: 24px;
	line-height: 1.15;
}

.status-pill,
.status-badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border: 1px solid rgba(52, 211, 153, 0.35);
	border-radius: 999px;
	background: rgba(52, 211, 153, 0.12);
	color: #bbf7d0;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.mock-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.mock-step {
	min-height: 80px;
	padding: 10px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
}

.mock-step span,
.mock-kpi span {
	display: block;
	color: var(--muted-2);
	font-size: 12px;
	font-weight: 800;
}

.mock-step strong {
	display: block;
	margin-top: 12px;
	font-size: 14px;
}

.mock-step.is-active {
	border-color: rgba(96, 165, 250, 0.42);
	background: rgba(96, 165, 250, 0.12);
}

.mock-dashboard {
	display: grid;
	grid-template-columns: 1fr 1fr 1.4fr;
	gap: 10px;
}

.mock-kpi,
.mock-chart,
.mock-list {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
}

.mock-kpi {
	padding: 14px;
}

.mock-kpi strong {
	display: block;
	margin-top: 8px;
	font-size: 26px;
}

.mock-chart {
	display: flex;
	align-items: end;
	gap: 8px;
	min-height: 110px;
	padding: 14px;
}

.mock-chart span {
	flex: 1;
	min-width: 10px;
	border-radius: 6px 6px 0 0;
	background: linear-gradient(180deg, var(--accent), var(--accent-3));
}

.mock-list {
	display: grid;
	gap: 10px;
	padding: 14px;
}

.mock-list div {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--muted);
	font-size: 14px;
}

.mock-list span {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--accent-3);
}

.section-heading {
	display: grid;
	gap: 14px;
	justify-items: center;
	max-width: 820px;
	margin: 0 auto 42px;
	text-align: center;
}

.section-heading.align-left {
	justify-items: start;
	margin: 0;
	text-align: left;
}

.section-heading p:not(.section-eyebrow) {
	font-size: 18px;
	max-width: 680px;
}

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

.service-card,
.project-card,
.process-step,
.content-card,
.detail-panel,
.contact-panel,
.legal-content,
.faq-item {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
		rgba(21, 27, 45, 0.78);
	box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.service-card,
.project-card,
.process-step,
.content-card {
	padding: 24px;
}

.reveal-card {
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.card-number,
.process-number,
.project-key {
	color: var(--accent-3);
	font-weight: 900;
	font-size: 13px;
	text-transform: uppercase;
}

.service-card h3,
.project-card h3,
.process-step h3,
.content-card h2 {
	margin-top: 14px;
	margin-bottom: 12px;
}

.service-card p,
.project-card p,
.process-step p,
.content-card p {
	font-size: 15px;
}

.pill-list,
.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
	list-style: none;
}

.pill-list li,
.tag-list li {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 9px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.045);
	color: #d8e1ee;
	font-size: 12px;
	font-weight: 750;
}

.projects-section {
	background: rgba(255, 255, 255, 0.018);
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.project-card {
	display: grid;
	gap: 16px;
	align-content: start;
}

.project-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.mini-preview {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	grid-template-rows: 46px 46px;
	gap: 8px;
	min-height: 100px;
	padding: 10px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: linear-gradient(135deg, rgba(96, 165, 250, 0.14), rgba(52, 211, 153, 0.08));
}

.mini-preview span {
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.12);
}

.mini-preview span:first-child {
	grid-row: 1 / 3;
	background:
		linear-gradient(180deg, rgba(96, 165, 250, 0.55), rgba(52, 211, 153, 0.38)),
		rgba(255, 255, 255, 0.1);
}

.mini-preview-quotepilot {
	background: linear-gradient(135deg, rgba(251, 191, 36, 0.14), rgba(96, 165, 250, 0.08));
}

.mini-preview-askmysite {
	background: linear-gradient(135deg, rgba(167, 139, 250, 0.18), rgba(52, 211, 153, 0.08));
}

.mini-preview-clientroom {
	background: linear-gradient(135deg, rgba(52, 211, 153, 0.14), rgba(96, 165, 250, 0.08));
}

.mini-preview-reportdash {
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(251, 191, 36, 0.1));
}

.project-subtitle {
	color: #dbeafe;
	font-weight: 700;
}

.project-detail-block {
	display: grid;
	gap: 8px;
}

.project-detail-block strong {
	color: var(--text);
	font-size: 13px;
	text-transform: uppercase;
}

.compact-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px 14px;
	list-style: none;
}

.compact-list li,
.check-list li {
	position: relative;
	padding-left: 16px;
	color: var(--muted);
	font-size: 14px;
}

.compact-list li::before,
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.78em;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--accent-3);
}

.project-note {
	padding: 12px;
	border: 1px solid rgba(251, 191, 36, 0.25);
	border-radius: var(--radius);
	background: rgba(251, 191, 36, 0.08);
	color: #fde68a;
}

.project-cta {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--text);
	font-size: 13px;
	font-weight: 800;
}

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

.process-step {
	min-height: 242px;
}

.process-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(52, 211, 153, 0.35);
	border-radius: var(--radius);
	background: rgba(52, 211, 153, 0.09);
}

.about-section {
	background: linear-gradient(90deg, rgba(96, 165, 250, 0.04), rgba(52, 211, 153, 0.025), rgba(167, 139, 250, 0.035));
}

.about-grid {
	display: grid;
	grid-template-columns: 0.78fr 1fr;
	gap: 56px;
	align-items: start;
}

.about-copy {
	display: grid;
	gap: 18px;
}

.about-copy p {
	font-size: 18px;
	color: #c7d2e2;
}

.about-metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.about-metrics span {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.045);
	color: var(--text);
	font-weight: 800;
}

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

.faq-item {
	padding: 0;
	overflow: clip;
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 66px;
	padding: 18px 20px;
	color: var(--text);
	font-size: 18px;
	font-weight: 800;
	cursor: pointer;
}

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

.faq-item summary::after {
	content: "+";
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--accent-3);
}

.faq-item[open] summary::after {
	content: "-";
}

.faq-item p {
	padding: 0 20px 20px;
}

.contact-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.7fr);
	gap: 28px;
	align-items: center;
	padding: 34px;
	background:
		linear-gradient(135deg, rgba(96, 165, 250, 0.14), rgba(52, 211, 153, 0.08) 48%, rgba(167, 139, 250, 0.12)),
		rgba(21, 27, 45, 0.92);
}

.contact-copy {
	display: grid;
	gap: 14px;
}

.contact-copy h2 {
	font-size: 52px;
}

.contact-copy p:not(.section-eyebrow) {
	font-size: 18px;
	max-width: 620px;
}

.arvai-contra-card {
	display: grid;
	gap: 14px;
	padding: 24px;
	border: 1px solid var(--border-strong);
	border-radius: var(--radius);
	background: rgba(8, 13, 28, 0.74);
}

.arvai-contra-card h3 {
	font-size: 28px;
}

.contra-badge-wrap {
	display: grid;
	gap: 12px;
	align-items: start;
	min-height: 74px;
}

.contra-hire-me-button {
	min-height: 42px;
}

.arvai-contra-fallback a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.065);
	color: var(--text);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.contra-script-ready .arvai-contra-fallback a {
	border-color: rgba(52, 211, 153, 0.35);
}

.contra-script-failed .arvai-contra-fallback a {
	border-color: rgba(251, 191, 36, 0.38);
	background: rgba(251, 191, 36, 0.08);
}

.site-footer {
	padding: 42px 0;
	border-top: 1px solid var(--border);
	background: rgba(5, 8, 17, 0.68);
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 32px;
	align-items: flex-start;
}

.footer-copy {
	display: grid;
	gap: 8px;
	max-width: 690px;
}

.footer-copy p {
	font-size: 14px;
}

.footer-menu {
	justify-content: flex-end;
	flex-wrap: wrap;
	max-width: 400px;
}

.footer-menu a {
	display: inline-flex;
	padding: 6px 9px;
	border-radius: 999px;
	color: var(--muted);
	font-size: 14px;
	font-weight: 750;
	text-decoration: none;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
	background: rgba(255, 255, 255, 0.055);
	color: var(--text);
}

.page-shell {
	padding-bottom: 36px;
}

.page-heading {
	display: grid;
	gap: 16px;
	max-width: 850px;
}

.page-heading h1 {
	font-size: 58px;
}

.page-heading p:not(.section-eyebrow) {
	font-size: 18px;
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.content-card a {
	color: var(--text);
	text-decoration: none;
}

.rich-text,
.legal-content {
	padding: 28px;
}

.rich-text > *,
.legal-content > * {
	margin-top: 18px;
}

.rich-text > *:first-child,
.legal-content > *:first-child {
	margin-top: 0;
}

.rich-text h2,
.legal-content h2 {
	font-size: 34px;
}

.rich-text h3,
.legal-content h3 {
	margin-top: 28px;
	font-size: 22px;
}

.rich-text ul,
.legal-content ul {
	padding-left: 20px;
	color: var(--muted);
}

.project-detail {
	padding-top: 96px;
}

.back-link {
	display: inline-flex;
	margin-bottom: 30px;
	color: var(--muted);
	font-weight: 800;
	text-decoration: none;
}

.project-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
	gap: 32px;
	align-items: start;
}

.project-detail-grid h1 {
	margin: 12px 0 18px;
	font-size: 62px;
}

.project-detail-grid .lead {
	margin-bottom: 14px;
}

.detail-panel {
	padding: 24px;
}

.detail-panel h2 {
	font-size: 26px;
	margin-bottom: 18px;
}

.detail-panel dl {
	display: grid;
	gap: 10px;
	margin: 0;
}

.detail-panel dt {
	color: var(--text);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.detail-panel dd {
	margin: 0 0 12px;
	color: var(--muted);
}

.project-detail-lists {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 32px;
}

.check-list {
	display: grid;
	gap: 8px;
	list-style: none;
}

.project-editor-content {
	margin-top: 32px;
}

.not-found {
	min-height: 68vh;
	display: grid;
	align-items: center;
}

.post-navigation,
.posts-navigation {
	margin-top: 32px;
}

.nav-links {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.nav-links a {
	display: inline-flex;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.045);
	font-weight: 800;
	text-decoration: none;
}

@media (hover: hover) {
	.reveal-card:hover {
		transform: translateY(-4px);
		border-color: var(--border-strong);
		background-color: rgba(255, 255, 255, 0.035);
	}
}

@media (max-width: 980px) {
	h1 {
		font-size: 56px;
	}

	h2,
	.contact-copy h2 {
		font-size: 40px;
	}

	.hero-grid,
	.about-grid,
	.contact-panel,
	.project-detail-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 78px;
	}

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

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

	.footer-inner {
		flex-direction: column;
	}

	.footer-menu {
		justify-content: flex-start;
	}
}

@media (max-width: 820px) {
	.header-inner {
		min-height: 70px;
		flex-wrap: wrap;
	}

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

	.site-nav {
		width: 100%;
		order: 3;
	}

	.js .site-nav {
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: max-height 220ms ease, opacity 180ms ease;
	}

	.js .site-nav.is-open {
		max-height: 520px;
		opacity: 1;
	}

	.nav-menu {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		padding: 0 0 16px;
	}

	.nav-menu a {
		justify-content: center;
		min-height: 44px;
	}
}

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

	.section {
		padding: 64px 0;
	}

	.section-tight {
		padding-top: 12px;
	}

	h1,
	.page-heading h1,
	.project-detail-grid h1 {
		font-size: 44px;
	}

	h2,
	.contact-copy h2 {
		font-size: 34px;
	}

	.lead {
		font-size: 17px;
	}

	.services-grid,
	.project-grid,
	.process-grid,
	.content-grid,
	.project-detail-lists {
		grid-template-columns: 1fr;
	}

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

	.compact-list,
	.about-metrics {
		grid-template-columns: 1fr;
	}

	.contact-panel {
		padding: 22px;
	}
}

@media (max-width: 520px) {
	.site-brand {
		max-width: calc(100% - 58px);
	}

	.brand-role {
		display: none;
	}

	h1,
	.page-heading h1,
	.project-detail-grid h1 {
		font-size: 38px;
	}

	.hero-actions,
	.button {
		width: 100%;
	}

	.mock-window-body {
		padding: 16px;
	}

	.mock-dashboard,
	.mock-steps {
		grid-template-columns: 1fr;
	}

	.project-card,
	.service-card,
	.process-step,
	.content-card,
	.rich-text,
	.legal-content {
		padding: 20px;
	}

	.footer-menu {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

