/*
 * DC Voice Agent Theme — Main Stylesheet
 *
 * Design system extracted from React 19 / Tailwind v4 source:
 *   --color-brand-dark:    rgb(10, 10, 10)
 *   --color-brand-black:   rgb(0, 0, 0)
 *   --color-brand-white:   rgb(255, 255, 255)
 *   --color-brand-accent:  #4F46E5
 *   Font: Geist (sans), Geist Mono (mono)
 *
 * Compiled output. Source-of-truth lives here, not in a build step.
 */

/* === 1. CSS Variables === */
:root {
	--c-brand-dark: rgb(10, 10, 10);
	--c-brand-black: rgb(0, 0, 0);
	--c-brand-white: rgb(255, 255, 255);
	--c-brand-accent: #4F46E5;
	--c-brand-accent-soft: rgba(79, 70, 229, 0.1);
	--c-white-90: rgba(255, 255, 255, 0.9);
	--c-white-70: rgba(255, 255, 255, 0.7);
	--c-white-50: rgba(255, 255, 255, 0.5);
	--c-white-40: rgba(255, 255, 255, 0.4);
	--c-white-20: rgba(255, 255, 255, 0.2);
	--c-white-10: rgba(255, 255, 255, 0.1);
	--c-white-05: rgba(255, 255, 255, 0.05);

	--font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
	--font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	--max-w: 80rem; /* matches max-w-7xl */
	--px: 1.5rem;
	--px-lg: 3rem;

	--r-sm: 0.5rem;
	--r-md: 1rem;
	--r-lg: 1.5rem;
	--r-xl: 2rem;
	--r-2xl: 2.5rem;

	--ease-out-quart: cubic-bezier(0.16, 1, 0.3, 1);
	--dur-fast: 0.2s;
	--dur-med: 0.4s;
	--dur-slow: 0.8s;
}

/* === 2. Reset === */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--c-brand-white);
	background-color: var(--c-brand-dark);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	min-height: 100vh;
}
body::selection,
::selection { background: var(--c-brand-accent); color: white; }
img,picture,video,canvas,svg { display: block; max-width: 100%; height: auto; }
input,button,textarea,select { font: inherit; }
button { background: none; border: none; padding: 0; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease-out-quart); }
a:hover { color: var(--c-brand-accent); }
h1,h2,h3,h4,h5,h6 { font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; }
ul,ol { padding: 0; list-style: none; }

/* Skip link for accessibility */
.dcvat-skip-link {
	position: absolute; top: -100px; left: 0;
	padding: 1rem; background: var(--c-brand-accent); color: white;
	z-index: 100000; font-weight: 600;
}
.dcvat-skip-link:focus { top: 0; }

.screen-reader-text {
	clip: rect(1px,1px,1px,1px); position: absolute !important;
	height: 1px; width: 1px; overflow: hidden; word-wrap: normal;
}

/* === 3. Layout primitives === */
.dcvat-container {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 var(--px);
}
@media (min-width: 1024px) {
	.dcvat-container { padding: 0 var(--px-lg); }
}
.dcvat-container--full { max-width: none; padding: 0; }

.dcvat-content { min-height: 60vh; }

.dcvat-section { padding: 6rem 0; }
@media (min-width: 1024px) {
	.dcvat-section { padding: 8rem 0; }
}
.dcvat-section--page-header { padding: 10rem 0 4rem; }
.dcvat-section--page-body { padding: 2rem 0 6rem; }

.dcvat-grid { display: grid; gap: 2rem; }
.dcvat-grid--2 { grid-template-columns: 1fr; }
.dcvat-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px)  { .dcvat-grid--2,.dcvat-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dcvat-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.dcvat-eyebrow {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--c-brand-accent);
	padding: 0.375rem 0.875rem;
	border: 1px solid var(--c-brand-accent);
	border-radius: 999px;
	margin-bottom: 1.5rem;
	background: var(--c-brand-accent-soft);
}

/* === 4. Header === */
.dcvat-header {
	position: fixed; top: 0; left: 0; right: 0;
	z-index: 50;
	padding: 1.5rem var(--px);
	transition: all var(--dur-med) var(--ease-out-quart);
	background: transparent;
}
@media (min-width: 1024px) {
	.dcvat-header { padding: 1.5rem var(--px-lg); }
}
.dcvat-header[data-scroll-state="scrolled"] {
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 1rem var(--px);
	box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
@media (min-width: 1024px) {
	.dcvat-header[data-scroll-state="scrolled"] { padding: 1rem var(--px-lg); }
}
.dcvat-header[data-scroll-state="hidden"] { transform: translateY(-100%); }

.dcvat-header__inner {
	max-width: var(--max-w);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
.dcvat-header__logo { z-index: 51; }
.dcvat-wordmark {
	font-weight: 500;
	font-size: 1.25rem;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: white;
}
.dcvat-wordmark:hover { color: white; }
.custom-logo { max-height: 40px; width: auto; }
.custom-logo-link { display: inline-block; }

.dcvat-header__nav { display: none; }
@media (min-width: 1024px) {
	.dcvat-header__nav { display: block; flex: 1; }
}
.dcvat-nav-list {
	display: flex;
	align-items: center;
	gap: 2rem;
	justify-content: center;
}
.dcvat-nav-item > a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--c-white-70);
}
.dcvat-nav-item > a:hover,
.dcvat-nav-item.is-active > a { color: white; }
.dcvat-nav-item--cta > a { padding: 0.5rem 1.5rem 0.5rem 1.25rem; }

.dcvat-header__cta { display: none; }
@media (min-width: 1024px) { .dcvat-header__cta { display: block; } }

/* CTA button system */
.dcvat-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.5rem 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 999px;
	border: 1px solid transparent;
	transition: all var(--dur-med) var(--ease-out-quart);
	white-space: nowrap;
}
.dcvat-cta:hover { color: inherit; transform: translateY(-1px); }
.dcvat-cta--light {
	background: white;
	color: var(--c-brand-dark);
}
.dcvat-cta--light:hover {
	background: var(--c-brand-accent);
	color: white;
}
.dcvat-cta--dark {
	background: var(--c-brand-dark);
	color: white;
	border-color: var(--c-white-10);
}
.dcvat-cta--dark:hover {
	background: var(--c-brand-accent);
	border-color: var(--c-brand-accent);
}
.dcvat-cta__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem; height: 1.75rem;
	border-radius: 999px;
	background: var(--c-brand-accent);
	color: white;
	font-size: 0.875rem;
	transition: transform var(--dur-med) var(--ease-out-quart);
}
.dcvat-cta:hover .dcvat-cta__arrow { transform: translateX(2px); }

/* Mobile menu toggle */
.dcvat-header__menu-toggle {
	display: flex; z-index: 51;
	width: 32px; height: 32px;
	align-items: center; justify-content: center;
	color: white;
}
@media (min-width: 1024px) { .dcvat-header__menu-toggle { display: none; } }
.dcvat-hamburger {
	display: flex; flex-direction: column; gap: 5px;
	width: 24px;
}
.dcvat-hamburger span {
	display: block; width: 100%; height: 2px;
	background: currentColor;
	transition: transform var(--dur-med) var(--ease-out-quart),
	            opacity var(--dur-fast) linear;
}
.dcvat-header__menu-toggle[aria-expanded="true"] .dcvat-hamburger span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.dcvat-header__menu-toggle[aria-expanded="true"] .dcvat-hamburger span:nth-child(2) {
	opacity: 0;
}
.dcvat-header__menu-toggle[aria-expanded="true"] .dcvat-hamburger span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.dcvat-mobile-menu {
	position: fixed; inset: 0;
	z-index: 40;
	background: var(--c-brand-dark);
	display: flex; flex-direction: column; justify-content: center;
	padding: 6rem 1.5rem 2rem;
	opacity: 0; visibility: hidden;
	transition: all var(--dur-slow) var(--ease-out-quart);
}
.dcvat-mobile-menu.is-open { opacity: 1; visibility: visible; }
@media (min-width: 1024px) { .dcvat-mobile-menu { display: none; } }
.dcvat-mobile-nav-list {
	display: flex; flex-direction: column; gap: 1.5rem;
	font-size: 2rem; font-weight: 500; letter-spacing: -0.02em;
}
.dcvat-mobile-nav-list a { color: var(--c-white-50); }
.dcvat-mobile-nav-list a:hover { color: white; }
.dcvat-mobile-menu__cta {
	position: absolute; bottom: 3rem; left: 1.5rem; right: 1.5rem;
}
.dcvat-mobile-menu__cta .dcvat-cta { width: 100%; justify-content: space-between; }

/* === 5. Hero === */
.dcvat-hero {
	min-height: 100vh;
	display: flex; align-items: center;
	padding: 8rem 0 4rem;
	position: relative;
	overflow: hidden;
}
.dcvat-hero::before {
	content: "";
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at top, rgba(79,70,229,0.15) 0%, transparent 50%);
	pointer-events: none;
}
.dcvat-hero__eyebrow {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--c-white-50);
	margin-bottom: 2rem;
}
.dcvat-hero__title {
	font-size: clamp(2.5rem, 6vw, 5.5rem);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin-bottom: 2rem;
	max-width: 60rem;
	text-wrap: balance;
}
.dcvat-hero__lede {
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	color: var(--c-white-70);
	max-width: 42rem;
	margin-bottom: 3rem;
	line-height: 1.5;
}
.dcvat-hero__ctas {
	display: flex; flex-wrap: wrap; align-items: center; gap: 2rem;
}
.dcvat-link {
	font-size: 0.95rem; color: var(--c-white-70);
}
.dcvat-link:hover { color: white; }

/* === 6. Pillars === */
.dcvat-section__header { max-width: 50rem; margin-bottom: 4rem; }
.dcvat-section__header--centered { margin-left: auto; margin-right: auto; text-align: center; }
.dcvat-section__title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.1;
	text-wrap: balance;
}
.dcvat-section__lede { color: var(--c-white-70); font-size: 1.125rem; margin-top: 1rem; }
.dcvat-section__cta { margin-top: 4rem; text-align: center; }

.dcvat-pillar {
	background: var(--c-white-05);
	border: 1px solid var(--c-white-10);
	border-radius: var(--r-xl);
	padding: 2.5rem;
	display: flex; flex-direction: column;
	transition: all var(--dur-med) var(--ease-out-quart);
}
.dcvat-pillar:hover {
	border-color: var(--c-brand-accent);
	background: rgba(79,70,229,0.05);
	transform: translateY(-4px);
}
.dcvat-pillar__index {
	font-family: var(--font-mono);
	font-size: 0.75rem; color: var(--c-white-40);
	letter-spacing: 0.2em;
	margin-bottom: 1.5rem;
}
.dcvat-pillar__title { font-size: 1.75rem; margin-bottom: 0.5rem; }
.dcvat-pillar__sub {
	font-family: var(--font-mono); font-size: 0.75rem;
	color: var(--c-brand-accent); letter-spacing: 0.15em;
	text-transform: uppercase; margin-bottom: 1.5rem;
}
.dcvat-pillar__body { color: var(--c-white-70); margin-bottom: 2rem; flex: 1; }
.dcvat-pillar__link {
	font-weight: 500; color: white;
	border-bottom: 1px solid var(--c-white-20);
	padding-bottom: 0.25rem;
	align-self: flex-start;
}
.dcvat-pillar__link:hover { color: var(--c-brand-accent); border-color: var(--c-brand-accent); }

/* === 7. Product cards (homepage teaser + store) === */
.dcvat-product-card {
	display: flex; flex-direction: column;
	background: var(--c-white-05);
	border: 1px solid var(--c-white-10);
	border-radius: var(--r-xl);
	overflow: hidden;
	transition: all var(--dur-med) var(--ease-out-quart);
	color: white;
}
.dcvat-product-card:hover {
	border-color: var(--c-brand-accent);
	transform: translateY(-4px);
	color: white;
}
.dcvat-product-card__image-wrap {
	aspect-ratio: 4 / 3;
	background: var(--c-brand-black);
	overflow: hidden;
}
.dcvat-product-card__image {
	width: 100%; height: 100%; object-fit: cover;
	filter: grayscale(1);
	transition: filter var(--dur-slow) var(--ease-out-quart),
	            transform var(--dur-slow) var(--ease-out-quart);
}
.dcvat-product-card:hover .dcvat-product-card__image {
	filter: grayscale(0);
	transform: scale(1.05);
}
.dcvat-product-card__image-placeholder {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--c-brand-black), #1a1a1a);
}
.dcvat-product-card__body { padding: 2rem; }
.dcvat-product-card__title { font-size: 1.5rem; margin-bottom: 0.75rem; }
.dcvat-product-card__price {
	font-family: var(--font-mono);
	color: var(--c-brand-accent);
	font-size: 1.125rem;
	letter-spacing: 0.1em;
}

/* === 8. Proof / Quote === */
.dcvat-proof { max-width: 60rem; margin: 0 auto; text-align: center; }
.dcvat-proof__quote {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.3;
	margin-bottom: 2rem;
	color: white;
	text-wrap: balance;
}
.dcvat-proof__attr {
	font-family: var(--font-mono); font-size: 0.875rem;
	color: var(--c-white-50);
}

/* === 9. Final CTA === */
.dcvat-final-cta {
	background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(79,70,229,0.03));
	border: 1px solid rgba(79,70,229,0.3);
	border-radius: var(--r-2xl);
	padding: 4rem 2rem;
	text-align: center;
}
@media (min-width: 768px) { .dcvat-final-cta { padding: 6rem 4rem; } }
.dcvat-final-cta__title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	margin-bottom: 1.5rem;
	text-wrap: balance;
}
.dcvat-final-cta__lede {
	font-size: 1.125rem;
	color: var(--c-white-70);
	max-width: 40rem;
	margin: 0 auto 3rem;
}

/* === 10. Page header (non-Elementor pages) === */
.dcvat-page-header { padding-top: 4rem; }
.dcvat-page-title {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	letter-spacing: -0.03em;
	margin-bottom: 1.5rem;
	max-width: 50rem;
	text-wrap: balance;
}
.dcvat-page-lead { font-size: 1.25rem; color: var(--c-white-70); max-width: 40rem; }
.dcvat-page-content { font-size: 1.125rem; color: var(--c-white-70); line-height: 1.7; max-width: 50rem; }
.dcvat-page-content > * + * { margin-top: 1.25rem; }
.dcvat-page-content h2,
.dcvat-page-content h3 { color: white; margin-top: 3rem; margin-bottom: 1rem; }
.dcvat-page-content h2 { font-size: 2rem; }
.dcvat-page-content h3 { font-size: 1.5rem; }
.dcvat-page-content a { color: var(--c-brand-accent); border-bottom: 1px solid currentColor; }
.dcvat-page-content blockquote {
	border-left: 3px solid var(--c-brand-accent);
	padding-left: 1.5rem; font-style: italic;
}
.dcvat-page-content code {
	background: var(--c-white-05); padding: 0.125rem 0.375rem;
	border-radius: 0.25rem; font-family: var(--font-mono); font-size: 0.875em;
}

/* === 11. Cards (insights, work) === */
.dcvat-card {
	background: var(--c-white-05);
	border: 1px solid var(--c-white-10);
	border-radius: var(--r-xl);
	overflow: hidden;
	transition: all var(--dur-med) var(--ease-out-quart);
}
.dcvat-card:hover { border-color: var(--c-brand-accent); transform: translateY(-4px); }
.dcvat-card__image-wrap { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--c-brand-black); }
.dcvat-card__image { width: 100%; height: 100%; object-fit: cover;
	filter: grayscale(1); transition: filter var(--dur-slow), transform var(--dur-slow); }
.dcvat-card:hover .dcvat-card__image { filter: grayscale(0); transform: scale(1.05); }
.dcvat-card__body { padding: 2rem; }
.dcvat-card__meta {
	display: flex; gap: 0.5rem; font-family: var(--font-mono);
	font-size: 0.75rem; color: var(--c-white-50);
	letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem;
}
.dcvat-card__title { font-size: 1.5rem; margin-bottom: 1rem; line-height: 1.2; }
.dcvat-card__title a:hover { color: var(--c-brand-accent); }
.dcvat-card__excerpt { color: var(--c-white-70); margin-bottom: 1.5rem; }
.dcvat-card__link {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 0.875rem; font-weight: 500; color: white;
	border-bottom: 1px solid var(--c-white-20); padding-bottom: 0.25rem;
}
.dcvat-card__link:hover { color: var(--c-brand-accent); border-color: var(--c-brand-accent); }

/* === 12. Footer === */
.dcvat-footer {
	background: var(--c-brand-black);
	padding: 6rem 0 3rem;
	color: white;
}
@media (min-width: 1024px) { .dcvat-footer { padding: 8rem 0 3rem; } }
.dcvat-footer__inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 var(--px);
}
@media (min-width: 1024px) { .dcvat-footer__inner { padding: 0 var(--px-lg); } }

.dcvat-footer__top {
	display: flex; flex-direction: column; gap: 4rem;
	margin-bottom: 6rem;
}
@media (min-width: 1024px) {
	.dcvat-footer__top { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 6rem; }
}
.dcvat-footer__pitch { max-width: 36rem; }
.dcvat-footer__tagline {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	text-wrap: balance;
}
.dcvat-footer__description { color: var(--c-white-50); margin-bottom: 2rem; line-height: 1.6; }

.dcvat-footer__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (min-width: 1024px) { .dcvat-footer__columns { gap: 6rem; } }
.dcvat-footer__col-title {
	font-size: 0.875rem; font-weight: 500;
	color: var(--c-white-50);
	margin-bottom: 1.5rem;
}
.dcvat-footer__list { display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; }
.dcvat-footer__list a { color: var(--c-white-70); }
.dcvat-footer__list a:hover { color: white; }

.dcvat-footer__compliance {
	border-top: 1px solid var(--c-white-10);
	padding: 2rem 0;
	font-size: 0.875rem; color: var(--c-white-40);
	display: flex; flex-direction: column; gap: 1rem;
}
.dcvat-footer__bottom {
	border-top: 1px solid var(--c-white-10);
	padding-top: 2rem;
	display: flex; flex-direction: column; gap: 1rem;
	justify-content: space-between; align-items: center;
	font-size: 0.875rem;
}
@media (min-width: 768px) { .dcvat-footer__bottom { flex-direction: row; } }
.dcvat-footer__wordmark { color: var(--c-white-90); font-weight: 500; }
.dcvat-footer__copyright { color: var(--c-white-50); }

/* === 13. Pagination === */
.dcvat-pagination {
	margin-top: 4rem;
	display: flex; justify-content: center;
}
.dcvat-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 2.5rem; height: 2.5rem; padding: 0 0.75rem;
	margin: 0 0.25rem;
	border-radius: 999px;
	background: var(--c-white-05);
	color: var(--c-white-70);
	font-size: 0.875rem;
	transition: all var(--dur-fast) var(--ease-out-quart);
}
.dcvat-pagination .page-numbers:hover,
.dcvat-pagination .page-numbers.current {
	background: var(--c-brand-accent);
	color: white;
}

/* === 14. Empty state === */
.dcvat-empty { text-align: center; padding: 6rem 0; }
.dcvat-empty h1 { margin-bottom: 1rem; }
.dcvat-empty p { color: var(--c-white-70); margin-bottom: 2rem; }

/* === 15. Search === */
.search-form { display: flex; gap: 0.5rem; max-width: 24rem; margin: 2rem auto; }
.search-field {
	flex: 1; padding: 0.75rem 1rem;
	background: var(--c-white-05);
	border: 1px solid var(--c-white-10);
	border-radius: var(--r-sm);
	color: white;
}
.search-submit {
	padding: 0.75rem 1.5rem;
	background: var(--c-brand-accent);
	color: white;
	border-radius: var(--r-sm);
	font-weight: 500;
}

/* === 16. Custom cursor (desktop only) === */
.custom-cursor {
	position: fixed; top: 0; left: 0;
	width: 20px; height: 20px;
	background: white; border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: width 0.2s, height 0.2s, background-color 0.2s;
	mix-blend-mode: difference;
	display: none;
}
@media (min-width: 1024px) and (hover: hover) {
	.has-custom-cursor .custom-cursor { display: block; }
	.has-custom-cursor { cursor: none; }
	.has-custom-cursor a,
	.has-custom-cursor button { cursor: none; }
}
.cursor-hover .custom-cursor {
	width: 60px; height: 60px;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(2px);
}

/* === 17. WP block editor compatibility === */
.aligncenter { margin-left: auto; margin-right: auto; display: block; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.alignwide { max-width: 1280px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; max-width: none; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--c-white-50); margin-top: 0.5rem; }

/* === 18. Reduced motion === */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.custom-cursor { display: none !important; }
}

/* ============================================================
   PAGE TEMPLATE STYLES — About / Services / Contact
   ============================================================ */

/* ---- About template ---- */
.dcvat-about-hero {
	position: relative;
	min-height: 100vh;
	padding: 10rem var(--px) 4rem;
	background: #000;
	display: flex; align-items: flex-end;
	overflow: hidden;
}
@media (min-width: 1024px) { .dcvat-about-hero { padding: 10rem var(--px-lg) 4rem; } }
.dcvat-about-hero__bg {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(79,70,229,0.08) 0%, transparent 50%, rgba(0,0,0,0.9) 100%);
}
.dcvat-about-hero__inner { position: relative; z-index: 2; }
.dcvat-about-hero__title {
	font-size: clamp(3rem, 7vw, 6.25rem);
	letter-spacing: -0.03em;
	line-height: 0.95;
	margin: 1.5rem 0 2.5rem;
	max-width: 60rem;
	text-wrap: balance;
}
.dcvat-about-hero__cols {
	display: grid; grid-template-columns: 1fr; gap: 2rem;
	padding-top: 2rem; border-top: 1px solid var(--c-white-10);
}
@media (min-width: 1024px) { .dcvat-about-hero__cols { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.dcvat-about-hero__cols p {
	font-size: 1.25rem; color: var(--c-white-70); line-height: 1.6; font-weight: 300;
}
.dcvat-about-hero__cols strong { color: white; font-weight: 500; }
.dcvat-about-hero__credentials {
	margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--c-white-10);
	display: flex; flex-wrap: wrap; gap: 0.5rem 2rem;
	font-family: var(--font-mono); font-size: 0.75rem;
	letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-white-50);
}
.dcvat-about-hero__credentials .dot { display: none; }
@media (min-width: 640px) { .dcvat-about-hero__credentials .dot { display: inline; } }

.dcvat-about-problem {
	background: white; color: var(--c-brand-black);
	padding: 8rem var(--px);
}
@media (min-width: 1024px) { .dcvat-about-problem { padding: 12rem var(--px-lg); } }
.dcvat-about-problem__grid {
	display: grid; grid-template-columns: 1fr; gap: 4rem;
}
@media (min-width: 1024px) {
	.dcvat-about-problem__grid { grid-template-columns: 5fr 7fr; gap: 6rem; }
}
.dcvat-about-problem__sticky h2 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	letter-spacing: -0.03em; line-height: 1;
}
.dcvat-about-problem__body { display: flex; flex-direction: column; gap: 2rem; max-width: 50rem; }
.dcvat-about-problem__body .big {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	color: #6b7280; line-height: 1.3; font-weight: 300;
}
.dcvat-about-problem__body p {
	font-size: 1.25rem; color: #1f2937; line-height: 1.6; font-weight: 300;
}
.dcvat-about-problem__body strong.accent { color: var(--c-brand-accent); font-weight: 500; }
.dcvat-about-problem__body blockquote {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	color: #111827; line-height: 1.25; font-weight: 500;
	border-left: 4px solid var(--c-brand-accent); padding-left: 2rem; margin-top: 1rem;
}

.dcvat-about-moment {
	background: #fcfcfc; color: var(--c-brand-black);
	padding: 8rem var(--px);
	border-top: 1px solid #e5e7eb;
}
@media (min-width: 1024px) { .dcvat-about-moment { padding: 12rem var(--px-lg); } }
.dcvat-about-moment__title {
	font-size: clamp(2.5rem, 5vw, 5rem);
	letter-spacing: -0.03em; line-height: 1;
	margin-bottom: 6rem; max-width: 60rem;
}
.dcvat-about-moment__grid {
	display: grid; grid-template-columns: 1fr; gap: 4rem;
}
@media (min-width: 1024px) {
	.dcvat-about-moment__grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}
.dcvat-about-moment__col { display: flex; flex-direction: column; gap: 2rem; max-width: 36rem; }
.dcvat-about-moment__col p { font-size: 1.25rem; color: #4b5563; line-height: 1.6; font-weight: 300; }
.dcvat-about-moment__col p.emphasis { color: #111827; font-weight: 500; font-size: 1.5rem; padding: 1.5rem 0; }
.dcvat-about-moment__col blockquote {
	border-left: 2px solid var(--c-brand-accent); padding-left: 2rem;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: #111827; font-weight: 500; line-height: 1.3;
}
.dcvat-about-moment__col .accent { color: var(--c-brand-accent); }
.dcvat-about-moment__pullquote {
	margin-top: 6rem;
	background: var(--c-brand-dark);
	color: white;
	padding: 4rem 2rem;
	border-radius: 3rem;
	text-align: center;
}
@media (min-width: 1024px) { .dcvat-about-moment__pullquote { padding: 6rem 4rem; } }
.dcvat-about-moment__pullquote p {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 500; line-height: 1.25;
	max-width: 60rem; margin: 0 auto;
	text-wrap: balance;
}
.dcvat-about-moment__pullquote .accent { color: var(--c-brand-accent); }

.dcvat-about-journey {
	background: var(--c-brand-black);
	padding: 8rem var(--px);
	border-top: 1px solid var(--c-white-10);
}
@media (min-width: 1024px) { .dcvat-about-journey { padding: 12rem var(--px-lg); } }
.dcvat-about-journey__intro { max-width: 60rem; padding-top: 3rem; border-top: 1px solid var(--c-white-10); margin-bottom: 6rem; }
.dcvat-about-journey__intro h2 {
	font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -0.03em; line-height: 0.95;
	margin: 1rem 0 3rem;
}
.dcvat-about-journey__copy { display: flex; flex-direction: column; gap: 2rem; }
.dcvat-about-journey__copy p { font-size: 1.25rem; color: var(--c-white-50); line-height: 1.6; font-weight: 300; }
.dcvat-about-journey__copy strong { color: white; font-weight: 500; }
.dcvat-about-journey__copy strong.accent { color: var(--c-brand-accent); }
.dcvat-about-journey__heading { color: white; font-size: 2rem; font-weight: 500; margin-bottom: 3rem; }
.dcvat-about-journey__rule {
	background: rgba(10,10,10,0.5);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 1.5rem; padding: 2.5rem;
	transition: border-color 0.4s var(--ease-out-quart);
}
.dcvat-about-journey__rule:hover { border-color: rgba(79,70,229,0.5); }
.dcvat-about-journey__check {
	color: var(--c-brand-accent); font-size: 2rem; margin-bottom: 1.5rem;
}
.dcvat-about-journey__rule p { color: var(--c-white-70); font-weight: 300; line-height: 1.6; }

.dcvat-about-believe {
	background: var(--c-brand-dark);
	padding: 8rem var(--px);
	border-top: 1px solid var(--c-white-05);
}
@media (min-width: 1024px) { .dcvat-about-believe { padding: 12rem var(--px-lg); } }
.dcvat-about-believe__grid {
	display: grid; grid-template-columns: 1fr; gap: 4rem;
}
@media (min-width: 1024px) {
	.dcvat-about-believe__grid { grid-template-columns: 4fr 8fr; gap: 6rem; }
}
.dcvat-about-believe__sticky h2 {
	font-size: clamp(3rem, 7vw, 6.25rem);
	letter-spacing: -0.03em; line-height: 0.9; margin-bottom: 2rem;
}
.dcvat-about-believe__sticky p { color: var(--c-white-50); font-size: 1.25rem; font-weight: 300; line-height: 1.6; max-width: 26rem; }
.dcvat-about-believe__list { display: flex; flex-direction: column; gap: 1.5rem; }
.dcvat-about-believe__card {
	background: #111;
	border: 1px solid var(--c-white-05);
	border-radius: 2rem;
	padding: 2.5rem;
	transition: border-color 0.5s var(--ease-out-quart);
}
@media (min-width: 1024px) { .dcvat-about-believe__card { padding: 3.5rem; } }
.dcvat-about-believe__card:hover { border-color: var(--c-white-20); }
.dcvat-about-believe__card h3 {
	font-size: clamp(1.5rem, 2.5vw, 2.25rem);
	font-weight: 500; letter-spacing: -0.01em; line-height: 1.15;
	color: white; margin-bottom: 1.5rem;
}
.dcvat-about-believe__divider {
	width: 3rem; height: 2px; background: rgba(79,70,229,0.5);
	transition: all 0.5s var(--ease-out-quart);
	margin-bottom: 1.5rem;
}
.dcvat-about-believe__card:hover .dcvat-about-believe__divider { width: 6rem; background: var(--c-brand-accent); }
.dcvat-about-believe__card p { font-size: 1.25rem; color: var(--c-white-50); font-weight: 300; line-height: 1.6; }

.dcvat-about-comparison {
	background: black;
	padding: 8rem var(--px);
	border-top: 1px solid var(--c-white-05);
	position: relative;
}
@media (min-width: 1024px) { .dcvat-about-comparison { padding: 12rem var(--px-lg); } }
.dcvat-about-comparison__header { max-width: 60rem; margin: 0 auto 6rem; text-align: center; }
.dcvat-about-comparison__header h2 { font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -0.03em; line-height: 0.95; margin-bottom: 2.5rem; }
.dcvat-about-comparison__header p { color: var(--c-white-50); font-size: 1.25rem; font-weight: 300; line-height: 1.6; margin-bottom: 1rem; }
.dcvat-about-comparison__header p.emphasis { color: white; }
.dcvat-about-comparison__header .accent { color: var(--c-brand-accent); font-weight: 500; }
.dcvat-about-comparison__labels {
	display: none;
	padding: 0 3.5rem; margin-bottom: 1rem;
}
@media (min-width: 1024px) { .dcvat-about-comparison__labels { display: grid; grid-template-columns: 5fr 7fr; } }
.dcvat-about-comparison__labels > div {
	font-family: var(--font-mono); font-size: 0.75rem;
	letter-spacing: 0.2em; text-transform: uppercase;
}
.dcvat-about-comparison__labels .bad { color: var(--c-white-40); }
.dcvat-about-comparison__labels .good { color: var(--c-brand-accent); font-weight: 600; }
.dcvat-about-comparison__rows { display: flex; flex-direction: column; gap: 1.5rem; }
.dcvat-about-comparison__row {
	display: grid; grid-template-columns: 1fr; gap: 0;
	background: var(--c-brand-dark);
	border: 1px solid var(--c-white-10);
	border-radius: 2rem; overflow: hidden;
	transition: transform 0.5s, border-color 0.5s, box-shadow 0.5s;
}
@media (min-width: 1024px) { .dcvat-about-comparison__row { grid-template-columns: 5fr 7fr; } }
.dcvat-about-comparison__row:hover {
	transform: translateY(-0.5rem);
	border-color: rgba(79,70,229,0.5);
	box-shadow: 0 20px 40px -10px rgba(79,70,229,0.3);
}
.dcvat-about-comparison__bad {
	padding: 2.5rem; color: var(--c-white-40);
	font-size: 1.25rem; line-height: 1.6; font-weight: 300;
	border-right: 1px solid var(--c-white-05);
}
.dcvat-about-comparison__good {
	padding: 2.5rem; color: rgba(255,255,255,0.9);
	font-size: 1.5rem; line-height: 1.5; font-weight: 500;
	background: rgba(255,255,255,0.01);
	position: relative;
}
.dcvat-about-comparison__row:hover .dcvat-about-comparison__good { background: rgba(79,70,229,0.1); }

.dcvat-about-layers {
	background: var(--c-brand-black);
	padding: 8rem var(--px);
	border-top: 1px solid var(--c-white-10);
}
@media (min-width: 1024px) { .dcvat-about-layers { padding: 12rem var(--px-lg); } }
.dcvat-about-layers__header { margin-bottom: 6rem; max-width: 60rem; }
.dcvat-about-layers__header h2 { font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -0.03em; line-height: 0.95; margin-bottom: 2rem; }
.dcvat-about-layers__header p { color: var(--c-white-50); font-size: 1.5rem; font-weight: 300; line-height: 1.5; max-width: 50rem; }
.dcvat-about-layers__header .accent { color: var(--c-brand-accent); font-weight: 500; }
.dcvat-about-layer {
	position: relative; padding: 4rem 0;
	border-top: 1px solid var(--c-white-10);
}
@media (min-width: 1024px) { .dcvat-about-layer { padding: 8rem 0; } }
.dcvat-about-layer__big-num {
	position: absolute; top: -3rem; right: 0;
	font-size: clamp(8rem, 16vw, 16rem);
	font-weight: 500; color: rgba(255,255,255,0.02);
	letter-spacing: -0.05em; line-height: 1;
	pointer-events: none; user-select: none;
}
.dcvat-about-layer__inner {
	display: grid; grid-template-columns: 1fr; gap: 3rem;
	position: relative; z-index: 2;
}
@media (min-width: 1024px) { .dcvat-about-layer__inner { grid-template-columns: 5fr 7fr; gap: 6rem; } }
.dcvat-about-layer__head h3 {
	font-size: clamp(2.5rem, 4vw, 4rem);
	letter-spacing: -0.03em; line-height: 1;
	color: white; margin-top: 1.5rem;
}
.dcvat-about-layer__body { display: flex; flex-direction: column; gap: 1.5rem; }
.dcvat-about-layer__body p {
	font-size: 1.25rem; color: rgba(255,255,255,0.6);
	line-height: 1.6; font-weight: 300;
}

.dcvat-about-research {
	background: var(--c-brand-dark);
	padding: 8rem var(--px);
}
@media (min-width: 1024px) { .dcvat-about-research { padding: 12rem var(--px-lg); } }
.dcvat-about-research__header { max-width: 80rem; margin-bottom: 6rem; }
.dcvat-about-research__header h2 { font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -0.03em; line-height: 1; margin-bottom: 2.5rem; }
.dcvat-about-research__header p { color: var(--c-white-50); font-size: 1.25rem; font-weight: 300; line-height: 1.6; max-width: 60rem; }
.dcvat-about-research__card {
	background: var(--c-brand-black);
	border: 1px solid var(--c-white-05);
	border-radius: 1.5rem; padding: 2.5rem;
	display: flex; flex-direction: column;
	transition: border-color 0.3s;
}
.dcvat-about-research__card:hover { border-color: rgba(79,70,229,0.3); }
.dcvat-about-research__stat {
	font-size: clamp(4rem, 6vw, 5rem);
	color: var(--c-brand-accent); font-weight: 500;
	letter-spacing: -0.05em; line-height: 1; margin-bottom: 2rem;
}
.dcvat-about-research__text { font-size: 1.25rem; font-weight: 300; line-height: 1.3; margin-bottom: 2rem; }
.dcvat-about-research__source {
	font-family: var(--font-mono); font-size: 0.7rem;
	color: var(--c-white-40); letter-spacing: 0.15em;
	text-transform: uppercase; margin-top: auto;
}

.dcvat-about-people {
	background: white; color: var(--c-brand-black);
	padding: 8rem var(--px);
}
@media (min-width: 1024px) { .dcvat-about-people { padding: 12rem var(--px-lg); } }
.dcvat-about-people__title { font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -0.03em; line-height: 1; margin-bottom: 4rem; }
.dcvat-about-people__body { display: flex; flex-direction: column; gap: 3rem; max-width: 50rem; font-size: 1.25rem; color: #4b5563; line-height: 1.6; font-weight: 300; }
.dcvat-about-people__founder {
	padding: 2.5rem 0; border-top: 1px solid #f3f4f6;
}
.dcvat-about-people__founder strong {
	display: block; color: #111827; margin-bottom: 1rem;
	font-size: 1.875rem; font-weight: 500; letter-spacing: -0.01em;
}
.dcvat-about-people__body p.emphasis { color: #111827; font-weight: 500; }
.dcvat-about-people__warning {
	background: #fafafa; padding: 3rem;
	border-radius: 2rem; border: 1px solid #e5e7eb;
	border-left: 4px solid var(--c-brand-accent);
	margin-top: 3rem;
}
.dcvat-about-people__warning h3 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 500; letter-spacing: -0.01em; color: #111827; margin-bottom: 1.5rem;
}
.dcvat-about-people__warning blockquote {
	background: white; padding: 2rem;
	border-radius: 1rem; margin-top: 2rem;
	font-size: 1.5rem; color: #111827;
	font-weight: 500; font-style: italic; line-height: 1.4;
}

.dcvat-about-cta {
	background: var(--c-brand-dark);
	padding: 8rem var(--px);
	text-align: center;
}
@media (min-width: 1024px) { .dcvat-about-cta { padding: 12rem var(--px-lg); } }
.dcvat-about-cta__card {
	background: #111;
	border: 1px solid var(--c-white-10);
	border-radius: 2.5rem;
	padding: 3rem;
	max-width: 60rem; margin: 0 auto;
	text-align: left; position: relative; overflow: hidden;
}
@media (min-width: 1024px) { .dcvat-about-cta__card { padding: 6rem; } }
.dcvat-about-cta__card h2 {
	font-size: clamp(2rem, 5vw, 4rem);
	letter-spacing: -0.03em; line-height: 1.05;
	margin-bottom: 3rem; text-wrap: balance;
}
.dcvat-about-cta__body { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 4rem; }
.dcvat-about-cta__body p { font-size: 1.25rem; color: var(--c-white-50); line-height: 1.6; font-weight: 300; }
.dcvat-about-cta__button { margin-bottom: 1.5rem; }
.dcvat-about-cta__subtext { color: var(--c-white-50); font-size: 1rem; }

/* ---- Services template ---- */
.dcvat-services-hero {
	position: relative; padding: 10rem var(--px) 6rem;
	background: black; overflow: hidden;
}
@media (min-width: 1024px) { .dcvat-services-hero { padding: 10rem var(--px-lg) 8rem; } }
.dcvat-services-hero__bg {
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at top right, rgba(79,70,229,0.15), transparent 60%),
		linear-gradient(180deg, rgba(10,10,10,0.8), black);
}
.dcvat-services-hero__inner { position: relative; z-index: 2; text-align: center; max-width: 90rem; margin: 0 auto; }
.dcvat-services-hero__pill {
	display: inline-flex; align-items: center; gap: 1rem;
	border: 1px solid rgba(79,70,229,0.2);
	background: rgba(79,70,229,0.1);
	padding: 0.5rem 1.5rem; border-radius: 999px;
	margin: 0 auto 2rem; backdrop-filter: blur(8px);
}
.dcvat-services-hero__pill .dot { width: 0.5rem; height: 0.5rem; background: var(--c-brand-accent); border-radius: 50%; }
.dcvat-services-hero__pill span:last-child {
	font-family: var(--font-mono); font-size: 0.875rem;
	color: var(--c-brand-accent); letter-spacing: 0.15em;
	text-transform: uppercase;
}
.dcvat-services-hero__title {
	font-size: clamp(2.75rem, 7vw, 6.875rem);
	letter-spacing: -0.03em; line-height: 0.9;
	margin-bottom: 2.5rem; max-width: 60rem; margin-left: auto; margin-right: auto;
	text-wrap: balance;
}
.dcvat-services-hero__title .accent { color: var(--c-brand-accent); }
.dcvat-services-hero__lede {
	font-size: clamp(1.25rem, 2vw, 1.875rem);
	color: var(--c-white-70); font-weight: 300;
	line-height: 1.5; max-width: 50rem; margin: 0 auto;
}
.dcvat-services-hero__lede strong { color: white; font-weight: 500; }

.dcvat-services-stats { background: #f9fafb; padding: 2rem var(--px) 8rem; }
@media (min-width: 1024px) { .dcvat-services-stats { padding: 4rem var(--px-lg) 8rem; } }
.dcvat-services-stat {
	border-radius: 2rem; padding: 3rem;
	box-shadow: 0 20px 60px -15px rgba(0,0,0,0.1);
	display: flex; flex-direction: column; align-items: center; text-align: center;
	min-height: 24rem; transition: transform 0.5s;
}
.dcvat-services-stat:hover { transform: translateY(-0.5rem); }
.dcvat-services-stat--light { background: white; border: 1px solid rgba(0,0,0,0.05); color: var(--c-brand-black); }
.dcvat-services-stat--accent {
	background: var(--c-brand-accent); border: 1px solid var(--c-brand-accent);
	color: white; box-shadow: 0 20px 60px -15px rgba(79,70,229,0.3);
}
.dcvat-services-stat__num {
	font-size: clamp(3.5rem, 7vw, 6.25rem);
	font-weight: 500; letter-spacing: -0.05em;
	line-height: 1; margin-bottom: 1.5rem;
}
.dcvat-services-stat__num span { font-size: 0.4em; font-weight: 300; }
.dcvat-services-stat p { font-size: 1.125rem; font-weight: 300; line-height: 1.5; max-width: 16rem; margin: 0 auto 2rem; }
.dcvat-services-stat--light p { color: #6b7280; }
.dcvat-services-stat--accent p { color: rgba(255,255,255,0.9); }
.dcvat-services-stat__source {
	font-family: var(--font-mono); font-size: 0.7rem;
	letter-spacing: 0.2em; text-transform: uppercase;
	margin-top: auto; padding-top: 2rem; width: 100%;
}
.dcvat-services-stat--light .dcvat-services-stat__source { color: #9ca3af; }
.dcvat-services-stat--accent .dcvat-services-stat__source {
	color: rgba(255,255,255,0.7);
	border-top: 1px solid rgba(255,255,255,0.2);
}

.dcvat-services-empathy {
	background: #f9fafb; color: var(--c-brand-black);
	padding: 4rem var(--px);
}
@media (min-width: 1024px) { .dcvat-services-empathy { padding: 8rem var(--px-lg); } }
.dcvat-services-empathy__grid {
	display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) {
	.dcvat-services-empathy__grid { grid-template-columns: 5fr 7fr; gap: 6rem; }
}
.dcvat-services-empathy__title h2 { font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -0.03em; line-height: 0.95; margin-bottom: 2rem; }
.dcvat-services-empathy__title blockquote {
	font-size: 1.5rem; color: #6b7280; font-style: italic;
	border-left: 2px solid var(--c-brand-accent); padding-left: 1.5rem;
}
.dcvat-services-empathy__cards { display: flex; flex-direction: column; gap: 1.5rem; }
.dcvat-services-empathy__card {
	background: white; border: 1px solid #f3f4f6;
	padding: 2.5rem; border-radius: 2rem; box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
}
@media (min-width: 1024px) { .dcvat-services-empathy__card { padding: 3.5rem; } }
.dcvat-services-empathy__card p { font-size: 1.25rem; font-weight: 300; line-height: 1.6; color: #374151; }
.dcvat-services-empathy__card strong { color: #111827; font-weight: 500; }
.dcvat-services-empathy__card .hr { height: 1px; background: #f3f4f6; margin: 2rem 0; }
.dcvat-services-empathy__card .muted { color: #6b7280; font-size: 1rem; }

.dcvat-services-three {
	background: black; padding: 8rem var(--px);
	border-top: 1px solid var(--c-white-05); position: relative;
}
@media (min-width: 1024px) { .dcvat-services-three { padding: 12rem var(--px-lg); } }
.dcvat-services-three__header { max-width: 60rem; margin-bottom: 6rem; }
.dcvat-services-three__header h2 { font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -0.03em; line-height: 1; margin-bottom: 2.5rem; }
.dcvat-services-three__header p { font-size: 1.25rem; color: var(--c-white-50); line-height: 1.6; font-weight: 300; margin-bottom: 1rem; }
.dcvat-services-three__header p.emphasis { color: white; }
.dcvat-services-three__header .dcvat-eyebrow {
	background: transparent; border: none; color: var(--c-brand-accent);
	padding: 0; font-size: 0.875rem; margin-bottom: 1.5rem;
}
.dcvat-services-three__card {
	background: linear-gradient(180deg, #111, #0a0a0a);
	border: 1px solid var(--c-white-10);
	border-radius: 2rem; padding: 2.5rem;
	display: flex; flex-direction: column;
	transition: transform 0.5s, border-color 0.5s, box-shadow 0.5s;
}
.dcvat-services-three__card:hover {
	transform: translateY(-0.5rem);
	border-color: rgba(79,70,229,0.5);
	box-shadow: 0 20px 40px -10px rgba(79,70,229,0.2);
}
.dcvat-services-three__icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.dcvat-services-three__card h3 { font-size: 2rem; font-weight: 500; letter-spacing: -0.01em; color: white; margin-bottom: 0.5rem; }
.dcvat-services-three__sub {
	font-family: var(--font-mono); font-size: 0.75rem;
	color: var(--c-brand-accent); letter-spacing: 0.15em;
	text-transform: uppercase; margin-bottom: 1.5rem;
}
.dcvat-services-three__tag {
	font-size: 0.875rem; color: var(--c-white-50);
	margin-bottom: 1.5rem; padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--c-white-10);
}
.dcvat-services-three__body {
	color: var(--c-white-70); line-height: 1.6;
	font-weight: 300; margin-bottom: 2rem; flex: 1;
}
.dcvat-services-three__link {
	color: white; font-weight: 500;
	display: inline-flex; align-items: center; gap: 0.5rem;
	border-bottom: 1px solid var(--c-white-20);
	padding-bottom: 0.25rem; align-self: flex-start;
}
.dcvat-services-three__link:hover { color: var(--c-brand-accent); border-color: var(--c-brand-accent); }

.dcvat-services-why {
	background: var(--c-brand-dark);
	padding: 8rem var(--px);
	border-top: 1px solid var(--c-white-05);
}
@media (min-width: 1024px) { .dcvat-services-why { padding: 12rem var(--px-lg); } }
.dcvat-services-why__inner { max-width: 60rem; margin-bottom: 6rem; }
.dcvat-services-why__inner h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }
.dcvat-services-why__inner p { font-size: 1.25rem; color: var(--c-white-70); font-weight: 300; line-height: 1.6; }
.dcvat-services-why__inner .dcvat-eyebrow {
	background: transparent; border: none; color: var(--c-brand-accent);
	padding: 0; font-size: 0.875rem; margin-bottom: 1.5rem;
}
.dcvat-services-why__card {
	background: rgba(255,255,255,0.05);
	border: 1px solid var(--c-white-10);
	border-radius: 1.5rem; padding: 2.5rem;
}
.dcvat-services-why__card h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 1rem; color: white; }
.dcvat-services-why__card p { color: var(--c-white-70); font-weight: 300; line-height: 1.6; }

.dcvat-services-cta { background: var(--c-brand-dark); padding: 4rem var(--px) 8rem; }

/* ---- Contact template ---- */
.dcvat-contact-hero {
	position: relative; padding: 10rem var(--px) 8rem;
	background: black; overflow: hidden;
	border-bottom: 1px solid var(--c-white-10);
}
@media (min-width: 1024px) { .dcvat-contact-hero { padding: 10rem var(--px-lg) 12rem; } }
.dcvat-contact-hero__bg {
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at bottom left, rgba(79,70,229,0.15), transparent 60%),
		linear-gradient(180deg, var(--c-brand-dark), black);
}
.dcvat-contact-hero__inner { position: relative; z-index: 2; max-width: 60rem; }
.dcvat-contact-hero__title {
	font-size: clamp(3rem, 7vw, 6.875rem);
	letter-spacing: -0.03em; line-height: 0.9;
	margin-bottom: 2rem;
}
.dcvat-contact-hero__title .accent { color: var(--c-brand-accent); }
.dcvat-contact-hero__sub {
	font-size: clamp(1.25rem, 2vw, 1.875rem);
	color: white; font-weight: 500;
	margin-bottom: 2rem; max-width: 45rem; line-height: 1.5;
}
.dcvat-contact-hero__lede {
	font-size: 1.25rem; color: var(--c-white-50);
	font-weight: 300; line-height: 1.6; max-width: 45rem;
}

.dcvat-contact-steps {
	background: #f9fafb; color: var(--c-brand-black);
	padding: 6rem var(--px);
}
@media (min-width: 1024px) { .dcvat-contact-steps { padding: 8rem var(--px-lg); } }
.dcvat-contact-steps__header {
	display: flex; flex-direction: column;
	gap: 2rem; margin-bottom: 4rem; align-items: flex-start;
}
@media (min-width: 1024px) {
	.dcvat-contact-steps__header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.dcvat-contact-steps__header h2 { font-size: clamp(2.5rem, 5vw, 4.375rem); letter-spacing: -0.03em; line-height: 1; max-width: 36rem; }
.dcvat-contact-steps__header p { color: #6b7280; font-style: italic; max-width: 24rem; }
@media (min-width: 1024px) { .dcvat-contact-steps__header p { text-align: right; } }
.dcvat-contact-steps__card {
	background: white; border: 1px solid #f3f4f6;
	border-radius: 2rem; padding: 2.5rem;
	box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
	position: relative; overflow: hidden;
	transition: transform 0.5s;
}
.dcvat-contact-steps__card:hover { transform: translateY(-0.5rem); }
.dcvat-contact-steps__card::before {
	content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: #e5e7eb;
	transition: background 0.5s;
}
.dcvat-contact-steps__card:hover::before { background: var(--c-brand-accent); }
.dcvat-contact-steps__num {
	font-size: 5rem; font-weight: 500;
	letter-spacing: -0.05em; line-height: 1;
	color: #f3f4f6; margin-bottom: 1.5rem;
}
.dcvat-contact-steps__card h3 { font-size: 1.5rem; font-weight: 500; color: #111827; margin-bottom: 1.5rem; line-height: 1.2; }
.dcvat-contact-steps__card p { font-size: 1.125rem; color: #6b7280; line-height: 1.6; font-weight: 300; }

.dcvat-contact-form {
	background: var(--c-brand-dark);
	padding: 6rem var(--px);
}
@media (min-width: 1024px) { .dcvat-contact-form { padding: 8rem var(--px-lg); } }
.dcvat-contact-form__grid {
	display: grid; grid-template-columns: 1fr; gap: 4rem;
}
@media (min-width: 1024px) {
	.dcvat-contact-form__grid { grid-template-columns: 5fr 7fr; gap: 6rem; align-items: start; }
}
.dcvat-contact-form__left .dcvat-eyebrow { margin-bottom: 1.5rem; }
.dcvat-contact-form__left h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
.dcvat-contact-form__left p { color: var(--c-white-70); font-size: 1.125rem; line-height: 1.6; margin-bottom: 2rem; }
.dcvat-contact-form__bullets {
	display: flex; flex-direction: column; gap: 1rem;
	color: var(--c-white-70); font-size: 1rem;
}
.dcvat-contact-form__bullets li {
	padding-left: 1.5rem; position: relative;
}
.dcvat-contact-form__bullets li::before {
	content: "✓"; color: var(--c-brand-accent);
	position: absolute; left: 0; top: 0;
	font-weight: bold;
}
.dcvat-contact-form__panel {
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--c-white-10);
	border-radius: 2rem;
	padding: 3rem;
	min-height: 24rem;
}
.dcvat-contact-form__placeholder { color: var(--c-white-70); }
.dcvat-contact-form__placeholder h3 { color: white; margin-bottom: 1rem; }
.dcvat-contact-form__placeholder p { margin-bottom: 1rem; line-height: 1.6; }
.dcvat-contact-form__placeholder code {
	background: rgba(255,255,255,0.05);
	padding: 0.125rem 0.5rem; border-radius: 0.25rem;
	color: var(--c-brand-accent);
	font-family: var(--font-mono); font-size: 0.875em;
}
.dcvat-contact-form__placeholder a { color: var(--c-brand-accent); border-bottom: 1px solid currentColor; }

.dcvat-contact-trust {
	background: black; padding: 6rem var(--px);
	border-top: 1px solid var(--c-white-10);
}
@media (min-width: 1024px) { .dcvat-contact-trust { padding: 8rem var(--px-lg); } }
.dcvat-contact-trust__card {
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--c-white-10);
	border-radius: 1.5rem; padding: 2rem;
}
.dcvat-contact-trust__card h3 { font-size: 1.25rem; color: white; margin-bottom: 1rem; }
.dcvat-contact-trust__card p { color: var(--c-white-70); font-weight: 300; line-height: 1.6; font-size: 0.95rem; }

.dcvat-contact-cta { background: var(--c-brand-dark); padding: 4rem var(--px) 8rem; }

/* ============================================================
   v1.2.0 PAGE TEMPLATES — Home, Audit, FAQ, Careers, Vision, Review, Work
   ============================================================ */

/* ---- Home (front-page) ---- */
.dcvat-home-hero {
	position: relative; min-height: 100dvh;
	padding: 8rem var(--px) 3rem;
	background: var(--c-brand-dark);
	overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
}
@media (min-width: 1024px) { .dcvat-home-hero { padding: 10rem var(--px-lg) 3rem; } }
.dcvat-home-hero__bg {
	position: absolute; inset: 0; opacity: 0.4;
	background: linear-gradient(180deg, transparent 0%, var(--c-brand-dark) 70%),
		radial-gradient(ellipse at center, rgba(79,70,229,0.12), transparent 60%);
}
.dcvat-home-hero__inner { position: relative; z-index: 2; }
.dcvat-home-hero__content { max-width: 64rem; }
.dcvat-home-hero__title {
	font-size: clamp(2.75rem, 5vw, 4.75rem);
	font-weight: 500; letter-spacing: -0.025em; line-height: 1.05;
	margin-bottom: 2rem;
}
.dcvat-home-hero__lede {
	font-size: 1.25rem; color: rgba(255,255,255,0.8);
	line-height: 1.6; max-width: 40rem; margin-bottom: 3rem;
}
.dcvat-home-hero__ctas {
	display: flex; flex-direction: column; gap: 1.5rem;
	align-items: flex-start;
}
@media (min-width: 640px) { .dcvat-home-hero__ctas { flex-direction: row; align-items: center; gap: 2rem; } }
.dcvat-home-hero__play {
	display: inline-flex; align-items: center; gap: 0.875rem;
	color: rgba(255,255,255,0.8); font-size: 1.125rem;
}
.dcvat-home-hero__play:hover { color: white; }
.dcvat-home-hero__play-icon {
	width: 3rem; height: 3rem; border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.3);
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(255,255,255,0.05); backdrop-filter: blur(8px);
}

.dcvat-home-avatars { background: #fcfcfc; color: var(--c-brand-black); padding: 6rem var(--px); }
@media (min-width: 1024px) { .dcvat-home-avatars { padding: 8rem var(--px-lg); } }
.dcvat-home-avatars__header { max-width: 64rem; margin-bottom: 6rem; }
.dcvat-home-avatars__header h2 {
	font-size: clamp(2.75rem, 5vw, 4.5rem);
	font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 1.5rem;
}
.dcvat-home-avatars__header h2 .muted { color: #9ca3af; }
.dcvat-home-avatars__header p {
	font-size: 1.5rem; color: #6b7280; line-height: 1.5; max-width: 48rem;
}
.dcvat-home-avatar {
	display: grid; grid-template-columns: 1fr; gap: 3rem;
	align-items: center; margin-bottom: 6rem;
}
@media (min-width: 1024px) {
	.dcvat-home-avatar { grid-template-columns: 7fr 5fr; gap: 6rem; margin-bottom: 10rem; }
	.dcvat-home-avatar--reverse .dcvat-home-avatar__stat { order: 1; }
	.dcvat-home-avatar--reverse .dcvat-home-avatar__text { order: 2; }
}
.dcvat-home-avatar h3 { font-size: 1.875rem; font-weight: 500; line-height: 1.3; margin-bottom: 2rem; }
@media (min-width: 1024px) { .dcvat-home-avatar h3 { font-size: 2.25rem; } }
.dcvat-home-avatar h3 .role { display: block; color: #111827; margin-bottom: 0.5rem; }
.dcvat-home-avatar h3 .accent { color: var(--c-brand-accent); }
.dcvat-home-avatar blockquote {
	font-size: 1.25rem; color: #6b7280; line-height: 1.6;
	font-style: italic; border-left: 2px solid #e5e7eb; padding-left: 1.5rem;
}
.dcvat-home-avatar__stat {
	background: white; border: 1px solid #f3f4f6;
	padding: 3rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
@media (min-width: 1024px) { .dcvat-home-avatar__stat { padding: 3.5rem; } }
.dcvat-home-avatar__stat-num {
	font-size: clamp(4rem, 7vw, 6.25rem); line-height: 1;
	font-weight: 500; color: var(--c-brand-accent);
	letter-spacing: -0.05em; margin-bottom: 1.5rem;
}
.dcvat-home-avatar__stat-num--small { font-size: clamp(3rem, 5vw, 5rem); line-height: 1.1; }
.dcvat-home-avatar__stat p {
	font-size: 1.25rem; font-weight: 500; color: #111827;
	margin-bottom: 1.5rem; line-height: 1.4;
}
.dcvat-home-avatar__source {
	font-family: var(--font-mono); font-size: 0.7rem;
	color: #9ca3af; letter-spacing: 0.15em; text-transform: uppercase;
	margin-top: auto;
}

.dcvat-home-system {
	background: var(--c-brand-dark);
	padding: 6rem var(--px); border-top: 1px solid var(--c-white-10);
}
@media (min-width: 1024px) { .dcvat-home-system { padding: 8rem var(--px-lg); } }
.dcvat-home-system__header { margin-bottom: 4rem; }
.dcvat-home-system__header .dcvat-eyebrow {
	background: transparent; border: none; padding: 0;
	color: rgba(255,255,255,0.5); font-family: var(--font-mono);
	font-size: 1.25rem; letter-spacing: 0.2em; text-transform: uppercase;
	margin-bottom: 1.5rem; padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
.dcvat-home-system__header h2 {
	font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 500;
	letter-spacing: -0.02em; margin-bottom: 2rem;
}
.dcvat-home-system__lede {
	font-size: 1.5rem; color: rgba(255,255,255,0.7);
	max-width: 56rem; line-height: 1.5;
}
.dcvat-home-system__layers { margin-top: 6rem; display: flex; flex-direction: column; }
.dcvat-home-system__layer {
	border-top: 1px solid var(--c-white-10);
	padding: 3rem 0;
	display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center;
	transition: background 0.3s;
}
.dcvat-home-system__layer:hover { background: rgba(255,255,255,0.03); }
.dcvat-home-system__layer:last-child { border-bottom: 1px solid var(--c-white-10); }
@media (min-width: 1280px) {
	.dcvat-home-system__layer { grid-template-columns: auto 1fr auto; padding: 4rem 0; }
}
.dcvat-home-system__layer-num { color: var(--c-brand-accent); font-family: var(--font-mono); font-size: 1.5rem; }
.dcvat-home-system__layer-name {
	font-size: clamp(2.5rem, 6vw, 6.25rem); font-weight: 500;
	letter-spacing: -0.025em; line-height: 1; white-space: nowrap;
}
.dcvat-home-system__layer-info { max-width: 36rem; opacity: 0.8; display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 1280px) { .dcvat-home-system__layer-info { text-align: right; } }
.dcvat-home-system__layer-info h4 { font-size: 1.875rem; font-weight: 500; color: white; }
.dcvat-home-system__layer-info p { font-size: 1.25rem; color: rgba(255,255,255,0.5); }

.dcvat-home-versus { background: var(--c-brand-black); padding: 6rem var(--px); }
@media (min-width: 1024px) { .dcvat-home-versus { padding: 8rem var(--px-lg); } }
.dcvat-home-versus__title {
	font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 500;
	letter-spacing: -0.02em; margin-bottom: 4rem;
}
.dcvat-home-versus__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--c-white-10); border: 1px solid var(--c-white-10); }
@media (min-width: 768px) { .dcvat-home-versus__grid { grid-template-columns: 1fr 1fr; } }
.dcvat-home-versus__col { padding: 2.5rem; }
@media (min-width: 1024px) { .dcvat-home-versus__col { padding: 4rem; } }
.dcvat-home-versus__col--old { background: var(--c-brand-dark); }
.dcvat-home-versus__col--new { background: #050505; }
.dcvat-home-versus__col h4 {
	font-size: 1.25rem; font-weight: 500;
	padding-bottom: 1.5rem; margin-bottom: 2.5rem;
	border-bottom: 1px solid; text-transform: uppercase; letter-spacing: 0.15em;
}
.dcvat-home-versus__col--old h4 { color: rgba(255,255,255,0.3); border-color: var(--c-white-10); }
.dcvat-home-versus__col--new h4 { color: var(--c-brand-accent); border-color: rgba(79,70,229,0.2); }
.dcvat-home-versus__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2.5rem; }
.dcvat-home-versus__col--old li { color: rgba(255,255,255,0.5); font-size: 1.125rem; }
.dcvat-home-versus__col--new li { color: white; font-size: 1.125rem; }
@media (min-width: 1024px) { .dcvat-home-versus__col li { font-size: 1.25rem; } }

.dcvat-home-how { background: #fcfcfc; color: var(--c-brand-black); padding: 6rem var(--px); border-top: 1px solid #e5e7eb; }
@media (min-width: 1024px) { .dcvat-home-how { padding: 8rem var(--px-lg); } }
.dcvat-home-how__header { margin-bottom: 4rem; }
.dcvat-home-how__header h2 {
	font-size: clamp(2.75rem, 5vw, 4.5rem); font-weight: 500;
	letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 1.5rem;
}
.dcvat-home-how__header p { font-size: 1.5rem; color: #6b7280; }
.dcvat-home-how__card {
	background: white; border: 1px solid #e5e7eb;
	border-radius: 2rem; padding: 2.5rem;
	display: flex; flex-direction: column;
	box-shadow: 0 10px 20px -8px rgba(0,0,0,0.04);
}
@media (min-width: 1024px) { .dcvat-home-how__card { padding: 3rem; } }
.dcvat-home-how__step {
	font-family: var(--font-mono); color: var(--c-brand-accent);
	font-size: 0.875rem; letter-spacing: 0.15em;
	text-transform: uppercase; margin-bottom: 1rem;
}
.dcvat-home-how__card h3 {
	font-size: 1.875rem; font-weight: 500; color: #111827;
	margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.dcvat-home-how__desc { font-size: 1.25rem; color: #4b5563; line-height: 1.6; margin-bottom: 2rem; flex: 1; }
.dcvat-home-how__commitment { font-weight: 500; color: #111827; padding-top: 2rem; border-top: 1px solid #f3f4f6; }

.dcvat-home-pathways { background: white; color: var(--c-brand-black); padding: 6rem var(--px); border-top: 1px solid #f3f4f6; }
@media (min-width: 1024px) { .dcvat-home-pathways { padding: 8rem var(--px-lg); } }
.dcvat-home-pathways__header { max-width: 64rem; margin-bottom: 4rem; }
.dcvat-home-pathways__header h2 { font-size: clamp(2.25rem, 4vw, 3.75rem); font-weight: 500; letter-spacing: -0.025em; margin-bottom: 1.5rem; }
.dcvat-home-pathways__header p { font-size: 1.5rem; color: #6b7280; }
.dcvat-home-pathways__card {
	background: #f9fafb; outline: 1px solid #e5e7eb;
	border-radius: 1rem; padding: 2.5rem;
	display: flex; flex-direction: column;
	color: var(--c-brand-black); transition: background 0.3s;
}
.dcvat-home-pathways__card:hover { background: #f3f4f6; }
.dcvat-home-pathways__card h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 1.5rem; }
.dcvat-home-pathways__card p { color: #4b5563; font-style: italic; flex: 1; font-size: 1.125rem; margin-bottom: 2rem; }
.dcvat-home-pathways__cta { color: var(--c-brand-black); font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; }
.dcvat-home-pathways__card:hover .dcvat-home-pathways__cta { color: var(--c-brand-accent); }

.dcvat-home-proof { background: #fcfcfc; color: var(--c-brand-black); padding: 6rem var(--px); border-top: 1px solid #e5e7eb; }
@media (min-width: 1024px) { .dcvat-home-proof { padding: 8rem var(--px-lg); } }
.dcvat-home-proof__header { max-width: 64rem; margin-bottom: 5rem; }
.dcvat-home-proof__header h2 { font-size: clamp(2.25rem, 4vw, 3.75rem); font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; }
.dcvat-home-proof__card {
	background: white; border: 1px solid #e5e7eb;
	border-radius: 1.5rem; padding: 2rem;
	display: flex; flex-direction: column;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
@media (min-width: 1024px) { .dcvat-home-proof__card { padding: 2.5rem; } }
.dcvat-home-proof__stat {
	font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 500;
	letter-spacing: -0.05em; color: var(--c-brand-accent); margin-bottom: 1.5rem; line-height: 1;
}
.dcvat-home-proof__card p { font-size: 1.25rem; color: #111827; font-weight: 500; line-height: 1.3; margin-bottom: 2rem; }
.dcvat-home-proof__source {
	font-family: var(--font-mono); font-size: 0.7rem;
	color: #9ca3af; letter-spacing: 0.15em; text-transform: uppercase; margin-top: auto;
}

.dcvat-home-faq { background: white; color: var(--c-brand-black); padding: 6rem var(--px); border-top: 1px solid #f3f4f6; }
@media (min-width: 1024px) { .dcvat-home-faq { padding: 8rem var(--px-lg); } }
.dcvat-home-faq__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .dcvat-home-faq__grid { grid-template-columns: 1fr 2fr; gap: 8rem; } }
.dcvat-home-faq__sticky h2 { font-size: clamp(2.25rem, 4vw, 3.75rem); font-weight: 500; letter-spacing: -0.025em; margin-bottom: 2rem; }
.dcvat-home-faq__sticky p { font-size: 1.25rem; color: #6b7280; }
.dcvat-home-faq__list { display: flex; flex-direction: column; }
.dcvat-home-faq__item { border-top: 1px solid #e5e7eb; }
.dcvat-home-faq__item:last-of-type { border-bottom: 1px solid #e5e7eb; }
.dcvat-home-faq__item summary { padding: 2rem 0; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.dcvat-home-faq__item summary::-webkit-details-marker { display: none; }
.dcvat-home-faq__q { font-size: 1.5rem; font-weight: 500; }
.dcvat-home-faq__item:hover .dcvat-home-faq__q { color: var(--c-brand-accent); }
.dcvat-home-faq__chevron { color: #9ca3af; transition: transform 0.3s; }
.dcvat-home-faq__item[open] .dcvat-home-faq__chevron { transform: rotate(180deg); }
.dcvat-home-faq__a { font-size: 1.125rem; color: #4b5563; line-height: 1.6; padding-bottom: 2rem; max-width: 40rem; }

.dcvat-home-final {
	background: var(--c-brand-dark); padding: 8rem var(--px) 4rem;
	text-align: center; overflow: hidden;
}
@media (min-width: 1024px) { .dcvat-home-final { padding: 12rem var(--px-lg) 6rem; } }
.dcvat-home-final h2 {
	font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 500;
	letter-spacing: -0.025em; line-height: 1.1;
	max-width: 64rem; margin: 0 auto 4rem; text-wrap: balance;
}
.dcvat-home-final__copy { max-width: 64rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; text-align: left; }
.dcvat-home-final__copy p { color: rgba(255,255,255,0.5); font-size: 1.25rem; line-height: 1.6; font-weight: 300; }
@media (min-width: 1024px) { .dcvat-home-final__copy p { font-size: 1.5rem; } }
.dcvat-home-final__copy p strong { color: white; }
.dcvat-home-final__emphasis {
	color: white !important; font-weight: 500 !important; font-size: 1.875rem !important;
	padding-top: 2rem; margin-top: 1.5rem; border-top: 1px solid var(--c-white-10);
}
.dcvat-home-final__marquee-wrap { display: block; margin-top: 4rem; cursor: pointer; transition: opacity 0.3s; }
.dcvat-home-final__marquee-wrap:hover { opacity: 0.9; }
.dcvat-home-final__marquee { overflow: hidden; white-space: nowrap; }
.dcvat-home-final__marquee-track {
	display: inline-flex; gap: 2rem;
	animation: dcvat-marquee 30s linear infinite;
}
.dcvat-home-final__marquee--reverse .dcvat-home-final__marquee-track { animation-direction: reverse; }
.dcvat-home-final__marquee-track span {
	font-size: clamp(4rem, 10vw, 7.5rem); font-weight: 500;
	letter-spacing: -0.025em; color: white; text-transform: uppercase; white-space: nowrap;
}
.dcvat-home-final__marquee-track span.outline {
	color: transparent;
	-webkit-text-stroke: 1px rgba(255,255,255,0.3);
}
@keyframes dcvat-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.dcvat-home-final__cta { margin-top: 4rem; }

/* ---- Audit landing ---- */
.dcvat-audit { background: #FAFAF9; min-height: 100vh; color: #1A1A1A; padding-top: 6rem; padding-bottom: 4rem; }
.dcvat-audit__hr { max-width: 56rem; margin: 4rem auto; border: none; border-top: 1px solid #d6d3d1; }
.dcvat-audit-hero { max-width: 80rem; margin: 0 auto; padding: 0 var(--px); margin-bottom: 5rem; }
.dcvat-audit-hero__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .dcvat-audit-hero__inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.dcvat-audit-hero__pill {
	display: inline-block; background: rgba(226,62,62,0.1); color: #E23E3E;
	padding: 0.25rem 0.75rem; border-radius: 0.25rem;
	font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
	margin-bottom: 1.5rem; border: 1px solid rgba(226,62,62,0.2);
}
.dcvat-audit-hero__title {
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 800; letter-spacing: -0.025em;
	color: #1c1917; line-height: 1.05; margin-bottom: 1.5rem;
}
.dcvat-audit-hero__price { font-size: clamp(1.5rem, 3vw, 2rem); color: #E23E3E; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 2rem; }
.dcvat-audit-hero__strike { color: #a8a29e; font-weight: normal; text-decoration: line-through; font-size: 0.625em; margin-left: 0.5rem; }
.dcvat-audit-hero__lede { font-size: 1.125rem; color: #78716c; margin-bottom: 2rem; line-height: 1.6; }
.dcvat-audit-btn {
	display: inline-flex; align-items: center; gap: 0.5rem;
	background: #E23E3E; color: white;
	font-weight: 700; padding: 1rem 2rem;
	border-radius: 0.75rem; font-size: 1.125rem;
}
.dcvat-audit-btn:hover { background: #b91c1c; }
.dcvat-audit-hero__visual { width: 100%; aspect-ratio: 4/3; background: #f5f5f4; border-radius: 1.5rem; border: 1px solid #e7e5e4; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1); padding: 2rem; }
.dcvat-audit-hero__mock { background: white; padding: 1.5rem; border-radius: 1rem; height: 100%; display: flex; flex-direction: column; gap: 1rem; }
.dcvat-audit-hero__mock-header { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em; color: #a8a29e; text-transform: uppercase; }
.dcvat-audit-hero__mock-figure { display: flex; flex-direction: column; align-items: flex-start; }
.dcvat-audit-hero__mock-figure > div { font-size: 3rem; font-weight: 700; color: #E23E3E; line-height: 1; }
.dcvat-audit-hero__mock-figure small { font-size: 0.875rem; color: #57534e; margin-top: 0.5rem; }
.dcvat-audit-hero__mock-bar { height: 0.5rem; background: #f5f5f4; border-radius: 999px; overflow: hidden; }
.dcvat-audit-hero__mock-bar span { display: block; height: 100%; background: #E23E3E; border-radius: 999px; }
.dcvat-audit-hero__mock-row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.875rem; color: #44403c; border-top: 1px solid #f5f5f4; }
.dcvat-audit-hero__mock-row strong { color: #1c1917; font-weight: 700; }

.dcvat-audit-body { max-width: 42rem; margin: 0 auto; font-size: 1.125rem; line-height: 1.7; color: #44403c; padding: 0 var(--px); }
.dcvat-audit-body__lead { font-size: 1.25rem; }
.dcvat-audit-body p { margin-bottom: 1.5rem; }
.dcvat-audit-body h2 { font-size: clamp(1.75rem, 3vw, 2rem); font-weight: 700; color: #1c1917; letter-spacing: -0.02em; margin: 3rem 0 1.5rem; }
.dcvat-audit-body__pullquote {
	background: white; border-left: 4px solid #E23E3E;
	padding: 1.5rem 1.5rem 1.5rem 2rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	border-radius: 0 0.5rem 0.5rem 0;
	font-weight: 700; font-size: 1.5rem; color: #1c1917;
	margin: 2.5rem 0; line-height: 1.4;
}
.dcvat-audit-body__pullquote .accent { color: #E23E3E; }
.dcvat-audit-body__dark { background: #1c1917; color: #f5f5f4; padding: 2.5rem; border-radius: 1rem; margin: 2.5rem 0; }
.dcvat-audit-body__dark-title { font-weight: 700; color: white; font-size: 1.5rem; margin-bottom: 1.5rem; }
.dcvat-audit-body__dark ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.dcvat-audit-body__dark li { display: flex; align-items: flex-start; gap: 1rem; }
.dcvat-audit-body__dark li > span:first-child { color: #E23E3E; flex-shrink: 0; margin-top: 0.125rem; font-size: 1.25rem; }
.dcvat-audit-body__dark strong { color: white; }
.dcvat-audit-body__bold { font-weight: 600; color: #1c1917; }
.dcvat-audit-body__price-line { font-size: 1.5rem; font-weight: 500; }
.dcvat-audit-body__price-line .strike { text-decoration: line-through; color: #a8a29e; }
.dcvat-audit-body__price-line .accent { color: #E23E3E; font-weight: 700; }
.dcvat-audit-features { margin: 2.5rem 0; display: flex; flex-direction: column; gap: 1.5rem; }
.dcvat-audit-feature { background: white; border: 1px solid #e7e5e4; padding: 2rem; border-radius: 0.75rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.dcvat-audit-feature h3 { font-size: 1.25rem; font-weight: 700; color: #1c1917; margin-bottom: 0.75rem; }
.dcvat-audit-feature p { color: #57534e; line-height: 1.6; }
.dcvat-audit-body__caption { text-align: center; font-style: italic; color: #78716c; padding-bottom: 2rem; }
.dcvat-audit-body__big-accent { font-size: 1.5rem; font-weight: 700; color: #E23E3E; margin: 2rem 0; line-height: 1.2; }
.dcvat-audit-body__big { font-size: 1.5rem; font-weight: 500; line-height: 1.3; margin: 3rem 0; }
.dcvat-audit-body__big .accent { color: #E23E3E; }
.dcvat-audit-trad { background: white; border: 1px solid #e7e5e4; border-radius: 1rem; padding: 2.5rem; margin: 3rem 0; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.dcvat-audit-trad h3 { font-size: 1.5rem; font-weight: 700; color: #1c1917; margin-bottom: 2rem; }
.dcvat-audit-trad__list { display: flex; flex-direction: column; gap: 2rem; }
.dcvat-audit-trad__item h4 { font-weight: 700; color: #1c1917; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.dcvat-audit-trad__item .x { color: #ef4444; font-weight: 900; font-size: 1.25rem; }
.dcvat-audit-trad__item p { font-size: 1.125rem; }
.dcvat-audit-trad__note { margin-top: 2.5rem; padding: 1.5rem; background: #f5f5f4; border-left: 4px solid #1c1917; font-weight: 600; color: #1c1917; border-radius: 0 0.5rem 0.5rem 0; }
.dcvat-audit-check { list-style: none; padding: 0; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 1.5rem; }
.dcvat-audit-check li { display: flex; gap: 1rem; }
.dcvat-audit-check__icon { background: #d1fae5; color: #059669; padding: 0.25rem; border-radius: 999px; flex-shrink: 0; width: 1.5rem; height: 1.5rem; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.dcvat-audit-check li strong { color: #1c1917; display: block; margin-bottom: 0.25rem; }
.dcvat-audit-guarantee { background: #E23E3E; color: white; border-radius: 1.5rem; padding: 2.5rem; margin: 4rem 0; box-shadow: 0 25px 50px -12px rgba(226,62,62,0.3); }
@media (min-width: 768px) { .dcvat-audit-guarantee { padding: 3rem; } }
.dcvat-audit-guarantee h2 { font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 700; color: white !important; margin: 0 0 1.5rem !important; }
.dcvat-audit-guarantee > p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 2rem; }
.dcvat-audit-guarantee__promise { background: rgba(255,255,255,0.1); padding: 1.5rem; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.2); font-weight: 700; font-size: 1.5rem; line-height: 1.3; }
.dcvat-audit-guarantee__sub { font-size: 1.125rem; margin-top: 2rem; opacity: 0.9; }
.dcvat-audit-final-h { text-align: center; }
.dcvat-audit-final-p { text-align: center; font-size: 1.125rem; margin-bottom: 3rem; }
.dcvat-audit-cta { background: white; border: 2px solid #E23E3E; border-radius: 1.5rem; padding: 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; }
.dcvat-audit-cta:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.dcvat-audit-cta h3 { font-size: 1.5rem; font-weight: 700; color: #1c1917; margin-bottom: 0.5rem; }
.dcvat-audit-cta .price { font-size: 2.5rem; font-weight: 700; color: #E23E3E; margin-bottom: 1.5rem; }
.dcvat-audit-cta__btn { width: 100%; background: #E23E3E; color: white; font-weight: 700; padding: 1.25rem 2rem; border-radius: 0.75rem; font-size: 1.25rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.dcvat-audit-cta__btn:hover { background: #b91c1c; }
.dcvat-audit-cta .micro { color: #a8a29e; font-size: 0.875rem; margin-top: 1.5rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* ---- FAQ page ---- */
.dcvat-faq-page { background: white; color: var(--c-brand-black); min-height: 100vh; padding: 8rem var(--px) 6rem; }
@media (min-width: 1024px) { .dcvat-faq-page { padding: 8rem var(--px-lg) 6rem; } }
.dcvat-faq-page__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .dcvat-faq-page__grid { grid-template-columns: 1fr 2fr; gap: 6rem; } }
.dcvat-faq-page__sticky { position: sticky; top: 8rem; align-self: start; }
.dcvat-faq-page__sticky h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 500; letter-spacing: -0.025em; margin-bottom: 2rem; }
.dcvat-faq-page__sticky p { font-size: 1.25rem; color: #6b7280; }
.dcvat-faq-page__list { display: flex; flex-direction: column; }
.dcvat-faq-page__item { border-top: 1px solid #e5e7eb; }
.dcvat-faq-page__item:last-of-type { border-bottom: 1px solid #e5e7eb; }
.dcvat-faq-page__item summary { padding: 2rem 0; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.dcvat-faq-page__item summary::-webkit-details-marker { display: none; }
.dcvat-faq-page__q { font-size: 1.5rem; font-weight: 500; }
.dcvat-faq-page__item:hover .dcvat-faq-page__q { color: var(--c-brand-accent); }
.dcvat-faq-page__chevron { color: #9ca3af; transition: transform 0.3s; }
.dcvat-faq-page__item[open] .dcvat-faq-page__chevron { transform: rotate(180deg); }
.dcvat-faq-page__a { font-size: 1.125rem; color: #4b5563; line-height: 1.6; padding-bottom: 2rem; max-width: 40rem; }
.dcvat-faq-page__cta { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid #e5e7eb; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.dcvat-faq-page__cta p { font-size: 1.25rem; color: #6b7280; }

/* ---- Careers page ---- */
.dcvat-careers-page { background: white; color: var(--c-brand-black); min-height: 100vh; padding: 8rem var(--px) 6rem; }
@media (min-width: 1024px) { .dcvat-careers-page { padding: 8rem var(--px-lg) 6rem; } }
.dcvat-careers-page__header { margin-bottom: 4rem; max-width: 48rem; }
.dcvat-careers-page__header .dcvat-eyebrow { background: transparent; border: 1px solid #e5e7eb; padding: 0.5rem 1rem; color: #6b7280; }
.dcvat-careers-page__header h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 500; letter-spacing: -0.025em; margin: 1.5rem 0; }
.dcvat-careers-page__header p { font-size: 1.25rem; color: #6b7280; line-height: 1.6; }
.dcvat-careers-page__roles { display: flex; flex-direction: column; }
.dcvat-careers-page__role { border-top: 1px solid #e5e7eb; padding: 2rem 0; display: flex; justify-content: space-between; align-items: center; gap: 2rem; color: inherit; transition: background 0.3s, padding 0.3s; }
.dcvat-careers-page__role:last-child { border-bottom: 1px solid #e5e7eb; }
.dcvat-careers-page__role:hover { background: #f9fafb; padding-left: 1rem; padding-right: 1rem; }
.dcvat-careers-page__role h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 0.5rem; }
.dcvat-careers-page__meta { display: flex; gap: 0.75rem; color: #9ca3af; font-size: 0.875rem; margin-bottom: 1rem; }
.dcvat-careers-page__role p { color: #6b7280; font-size: 1rem; line-height: 1.6; max-width: 36rem; }
.dcvat-careers-page__arrow { color: var(--c-brand-accent); opacity: 0.3; transition: opacity 0.3s, transform 0.3s; font-size: 1.5rem; }
.dcvat-careers-page__role:hover .dcvat-careers-page__arrow { opacity: 1; transform: translateX(0.5rem); }
.dcvat-careers-page__open { margin-top: 4rem; background: #f3f4f6; border-radius: 2rem; padding: 3rem; text-align: center; }
.dcvat-careers-page__open h2 { font-size: 1.875rem; font-weight: 500; margin-bottom: 1rem; }
.dcvat-careers-page__open p { color: #6b7280; margin-bottom: 2rem; max-width: 28rem; margin-left: auto; margin-right: auto; }
.dcvat-careers-page__open-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: black; color: white; padding: 1rem 2rem; border-radius: 999px; font-weight: 600; }
.dcvat-careers-page__open-btn:hover { background: rgba(0,0,0,0.9); }

/* ---- Vision page ---- */
.dcvat-vision-page { background: white; color: var(--c-brand-black); min-height: 100vh; padding: 8rem var(--px) 6rem; }
@media (min-width: 1024px) { .dcvat-vision-page { padding: 8rem var(--px-lg) 6rem; } }
.dcvat-vision-page__hero { text-align: center; margin-bottom: 4rem; }
.dcvat-vision-page__hero h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 500; letter-spacing: -0.025em; margin: 0 auto 2rem; max-width: 60rem; }
.dcvat-vision-page__hero p { font-size: 1.25rem; color: #6b7280; max-width: 40rem; margin: 0 auto 3rem; line-height: 1.6; }
.dcvat-vision-page__cta { display: flex; justify-content: center; }
.dcvat-vision-page__body { display: grid; grid-template-columns: 1fr; gap: 4rem; margin-top: 6rem; }
@media (min-width: 768px) { .dcvat-vision-page__body { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.dcvat-vision-page__col h2 { font-size: 1.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.dcvat-vision-page__col p { font-size: 1.125rem; color: #6b7280; line-height: 1.6; }
.dcvat-vision-page__pillars { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 4rem; }
@media (min-width: 1024px) { .dcvat-vision-page__pillars { grid-template-columns: repeat(3, 1fr); } }
.dcvat-vision-page__pillar { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 1.5rem; padding: 2.5rem; }
.dcvat-vision-page__num { font-family: var(--font-mono); color: var(--c-brand-accent); font-size: 0.875rem; letter-spacing: 0.15em; margin-bottom: 1.5rem; }
.dcvat-vision-page__pillar h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 1rem; }
.dcvat-vision-page__pillar p { color: #6b7280; line-height: 1.6; }
.dcvat-vision-page__final { margin-top: 6rem; background: var(--c-brand-dark); color: white; border-radius: 2rem; padding: 4rem; text-align: center; }
.dcvat-vision-page__final h2 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.dcvat-vision-page__final p { color: var(--c-white-70); font-size: 1.125rem; margin-bottom: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }

/* ---- Free Design Review page ---- */
.dcvat-review-page { background: var(--c-brand-dark); min-height: 100vh; padding: 8rem var(--px) 6rem; }
@media (min-width: 1024px) { .dcvat-review-page { padding: 8rem var(--px-lg) 6rem; } }
.dcvat-review-page__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .dcvat-review-page__grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.dcvat-review-page__left h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 500; letter-spacing: -0.025em; margin-bottom: 2rem; }
.dcvat-review-page__left > p { font-size: 1.25rem; color: rgba(255,255,255,0.7); margin-bottom: 3rem; line-height: 1.6; }
.dcvat-review-page__form-panel { background: rgba(255,255,255,0.03); border: 1px solid var(--c-white-10); border-radius: 1.5rem; padding: 2rem; }
.dcvat-review-page__placeholder { color: var(--c-white-70); }
.dcvat-review-page__placeholder h3 { color: white; margin-bottom: 1rem; }
.dcvat-review-page__placeholder p { margin-bottom: 1rem; line-height: 1.6; }
.dcvat-review-page__placeholder code { background: rgba(255,255,255,0.05); padding: 0.125rem 0.5rem; border-radius: 0.25rem; color: var(--c-brand-accent); font-family: var(--font-mono); font-size: 0.875em; }
.dcvat-review-page__placeholder a { color: var(--c-brand-accent); border-bottom: 1px solid currentColor; }
.dcvat-review-page__placeholder ul { padding-left: 1.25rem; }
.dcvat-review-page__placeholder li { margin-bottom: 0.5rem; }
.dcvat-review-page__video-mock {
	position: relative; aspect-ratio: 16/9;
	background: var(--c-brand-black);
	border-radius: 1rem; overflow: hidden;
	border: 1px solid var(--c-white-10);
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
	display: flex; align-items: center; justify-content: center;
}
.dcvat-review-page__play {
	width: 4rem; height: 4rem; border-radius: 50%;
	background: var(--c-brand-accent); color: white;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.5rem; padding-left: 0.25rem;
}
.dcvat-review-page__timestamp {
	position: absolute; bottom: 1rem; left: 1rem;
	font-family: var(--font-mono); color: white;
	background: rgba(0,0,0,0.6); padding: 0.25rem 0.5rem;
	border-radius: 0.25rem; font-size: 0.75rem;
}
.dcvat-review-page__scrubber {
	position: absolute; bottom: 0; left: 0; right: 0;
	height: 4px; background: rgba(255,255,255,0.1);
}
.dcvat-review-page__scrubber span { display: block; height: 100%; background: var(--c-brand-accent); }
.dcvat-review-page__perks { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.dcvat-review-page__perk {
	color: var(--c-white-70); font-size: 1rem;
	display: flex; align-items: center; gap: 0.75rem;
}
.dcvat-review-page__perk > span { color: var(--c-brand-accent); font-weight: 700; }

/* ---- Work page ---- */
.dcvat-work-page { background: white; color: var(--c-brand-black); min-height: 100vh; padding: 8rem var(--px) 6rem; }
@media (min-width: 1024px) { .dcvat-work-page { padding: 8rem var(--px-lg) 6rem; } }
.dcvat-work-page__header { margin-bottom: 4rem; max-width: 48rem; }
.dcvat-work-page__header h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 500; letter-spacing: -0.025em; margin-bottom: 2rem; }
.dcvat-work-page__header p { font-size: 1.25rem; color: #6b7280; line-height: 1.6; }
.dcvat-work-page__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .dcvat-work-page__grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.dcvat-work-page__card { color: inherit; display: block; }
.dcvat-work-page__image {
	position: relative; aspect-ratio: 4/3;
	overflow: hidden; border-radius: 1rem;
	margin-bottom: 1.5rem; background: #f3f4f6;
}
.dcvat-work-page__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.dcvat-work-page__card:hover .dcvat-work-page__image img { transform: scale(1.05); }
.dcvat-work-page__image-placeholder {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 50%, #9ca3af 100%);
}
.dcvat-work-page__badge {
	position: absolute; top: 1rem; right: 1rem;
	background: white; color: black;
	padding: 0.5rem 1rem; border-radius: 999px;
	font-size: 0.875rem; font-weight: 500;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.dcvat-work-page__meta { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.dcvat-work-page__meta h3 { font-size: 1.5rem; font-weight: 500; }
.dcvat-work-page__meta span { color: #9ca3af; font-size: 0.875rem; }
.dcvat-work-page__card > p { color: #6b7280; }
.dcvat-work-page__final { margin-top: 4rem; background: var(--c-brand-dark); color: white; border-radius: 2rem; padding: 3rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
.dcvat-work-page__final h3 { font-size: 1.875rem; font-weight: 500; }
