/* ============================================================
   Digitro Pro — Dark mode (default)
   Already covered by :root tokens. This file adds dark-specific
   tweaks that DON'T fit the variables.
   ============================================================ */

html[data-theme="dark"] body,
body.dp-theme-dark {
	color-scheme: dark;
}

html[data-theme="dark"] .dp-hero__card-icon,
body.dp-theme-dark .dp-hero__card-icon {
	filter: brightness(1.2) saturate(1.2);
}

/* Strengthened glass for dark backgrounds */
html[data-theme="dark"] .dp-header {
	background: rgba(7, 11, 14, 0.7);
}
html[data-theme="dark"] .dp-header.is-scrolled {
	background: rgba(7, 11, 14, 0.95);
}

/* Inputs in dark */
html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select {
	color-scheme: dark;
}

/* Subtle glow on focused inputs */
html[data-theme="dark"] input:focus,
html[data-theme="dark"] textarea:focus,
html[data-theme="dark"] select:focus {
	box-shadow: 0 0 0 3px rgba(var(--dp-primary-rgb), 0.2);
}
