@charset "UTF-8";
/* CSS Reset - 2026 Best Practices */

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

/* Remove default margin and padding */
*:not(dialog) {
	margin: 0;
	padding: 0;
}

/* HTML and Body */
html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	hanging-punctuation: first allow-end last;
}

body {
	min-height: 100dvh;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
}

/* Enable keyword animations (e.g. height: 0 → height: auto) */
@media (prefers-reduced-motion: no-preference) {
	:root {
		interpolate-size: allow-keywords;
	}
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: inherit;
	line-height: 1.2;
	text-wrap: balance;
}

p {
	text-wrap: pretty;
}

p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}

/* Lists */
ul,
ol {
	list-style: none;
}

/* Links */
a {
	text-decoration: none;
	color: inherit;
}

/* Media elements */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Forms */
input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	border-radius: 0;
	margin: 0;
	padding: 0;
}

/* Remove default button styles */
button {
	cursor: pointer;
}

/* Remove spinner controls */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	appearance: none;
}

/* Remove default appearance */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="number"],
input[type="search"],
textarea {
	appearance: none;
	width: 100%;
}

/* Date input */
input[type="date"] {
	position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

/* Select */
select {
	appearance: none;
	cursor: pointer;
}

/* Radio and Checkbox */
input[type="radio"],
input[type="checkbox"] {
	appearance: none;
}

/* Textarea */
textarea {
	resize: vertical;
}

/* Focus: keyboard accessibility only */
:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* Table */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Accessibility: Respect user's motion preferences */
@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;
	}
}
