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

html {
	background: var(--surface-canvas);
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background-color: var(--surface-canvas);
	background-image: var(--dot-texture);
	background-size: var(--dot-texture-size);
	color: var(--text-body);
	font-family: var(--font-sans);
	font-size: var(--text-base);
	line-height: var(--leading-normal);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

a {
	color: var(--text-link);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--brand-strong);
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: none;
	box-shadow: var(--shadow-focus);
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
	margin: 0;
}

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

.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;
}

.strongstar-eyebrow {
	align-items: center;
	color: var(--accent-strong);
	display: inline-flex;
	font-size: var(--text-xs);
	font-weight: var(--weight-bold);
	gap: var(--space-3);
	letter-spacing: var(--tracking-wider);
	text-transform: uppercase;
}

.strongstar-eyebrow::before {
	background: var(--rule-gold);
	content: "";
	display: inline-block;
	height: 1px;
	width: 26px;
}

.strongstar-data {
	font-family: var(--font-mono);
	font-variant-numeric: tabular-nums;
}
