/**
 * SignalMind — Reset
 *
 * A minimal, opinionated normalise. Removes browser inconsistencies without
 * imposing any visual style; all appearance lives in base.css onward.
 *
 * @package SignalMind
 */

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

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	tab-size: 4;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
pre,
fieldset,
legend {
	margin: 0;
}

ul[class],
ol[class] {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
	text-wrap: balance;
}

p,
li,
figcaption {
	text-wrap: pretty;
}

a {
	color: inherit;
	text-decoration: none;
	background-color: transparent;
}

img,
picture,
video,
canvas,
svg,
iframe,
embed,
object {
	display: block;
	max-width: 100%;
}

img,
video {
	height: auto;
}

/* No global `fill: currentColor` here on purpose. A CSS declaration outranks an
   SVG presentation attribute, so it would override every `fill="none"` in the
   markup and paint the theme's stroke-only icon set as solid shapes. Fill is
   set per icon instead. */

input,
button,
textarea,
select,
optgroup {
	font: inherit;
	color: inherit;
	letter-spacing: inherit;
	margin: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	appearance: button;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
	cursor: not-allowed;
}

textarea {
	resize: vertical;
	overflow: auto;
}

::-webkit-search-decoration,
::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	border: 0;
	height: 0;
	overflow: visible;
}

fieldset {
	border: 0;
	padding: 0;
	min-width: 0;
}

legend {
	padding: 0;
}

summary {
	display: list-item;
	cursor: pointer;
}

abbr[title] {
	text-decoration: underline dotted;
	cursor: help;
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

[hidden] {
	display: none !important;
}

/* Honour the user's motion preference at the engine level. Animations are not
   removed outright — durations collapse — so state changes stay perceivable. */
@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;
	}
}
