:root {
	--color-black: #050505;
	--color-white: #f7f6f2;
	--color-lime: #c7e600;
	--color-steel: #d8d6ce;
	--color-ink: #1a1a1a;
	--color-line: rgb(247 246 242 / 16%);

	--font-display: Oswald, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--space-2xs: clamp(0.5rem, 0.6vw, 0.75rem);
	--space-xs: clamp(0.75rem, 0.9vw, 1rem);
	--space-sm: clamp(1rem, 1.3vw, 1.5rem);
	--space-md: clamp(1.5rem, 2vw, 2.5rem);
	--space-lg: clamp(2.5rem, 4vw, 5rem);
	--space-xl: clamp(4rem, 7vw, 8rem);
	--space-2xl: clamp(6rem, 10vw, 12rem);

	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 24px;
	--radius-pill: 999px;

	--shadow-soft: 0 24px 70px rgb(0 0 0 / 24%);
	--shadow-strong: 0 38px 110px rgb(0 0 0 / 42%);

	--site-width: 1360px;
	--site-gutter: clamp(1rem, 4vw, 4rem);
	--header-height: 88px;
	--ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	background: var(--color-black);
	scroll-behavior: smooth;
}

body {
	background: var(--color-black);
	color: var(--color-white);
	font-family: var(--font-body);
	margin: 0;
	text-rendering: geometricPrecision;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

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

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

::selection {
	background: var(--color-lime);
	color: var(--color-black);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.skip-link:focus {
	background: var(--color-white);
	color: var(--color-black);
	height: auto;
	left: var(--space-sm);
	padding: var(--space-xs) var(--space-sm);
	top: var(--space-sm);
	width: auto;
	z-index: 100000;
}
