/* =========================================================================
   Reset / normalize
   ========================================================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	color: var(--text);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img,
svg {
	display: block;
	max-width: 100%;
}
svg[stroke="currentColor"] {
	stroke-linecap: round;
	stroke-linejoin: round;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font: inherit;
	cursor: pointer;
	border: 0;
	background: none;
	color: inherit;
}
ul {
	list-style: none;
	padding: 0;
}
:focus-visible {
	outline: 2px solid var(--blue);
	outline-offset: 2px;
	border-radius: 4px;
}

h1,
h2,
h3,
h4 {
	color: var(--ink);
	line-height: 1.15;
	letter-spacing: -0.02em;
	font-weight: 700;
}
