@charset "UTF-8";

:root {
	--ws-accent: #155eef;
	--ws-accent-dark: #0b4ab8;
	--ws-accent-soft: #eef4ff;
	--ws-ink: #0f172a;
	--ws-muted: #475467;
	--ws-subtle: #98a2b3;
	--ws-border: #e4e7ec;
	--ws-surface: #ffffff;
	--ws-surface-alt: #f8fafc;
	--ws-success: #067647;
	--ws-radius-sm: 10px;
	--ws-radius-md: 16px;
	--ws-radius-lg: 24px;
	--ws-shadow-sm: 0 1px 3px rgba(15, 23, 42, .08);
	--ws-shadow-md: 0 18px 50px rgba(15, 23, 42, .10);
	--ws-container: 1180px;
	--ws-reading: 780px;
	--ws-header-height: 72px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ws-surface);
	color: var(--ws-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--ws-accent);
	text-decoration-thickness: .08em;
	text-underline-offset: .18em;
}

a:hover {
	color: var(--ws-accent-dark);
}

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

button {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 .65em;
	color: var(--ws-ink);
	font-weight: 780;
	line-height: 1.14;
	letter-spacing: -.032em;
}

h1 {
	font-size: clamp(2.35rem, 5vw, 4.65rem);
}

h2 {
	font-size: clamp(1.7rem, 3vw, 2.6rem);
}

h3 {
	font-size: clamp(1.3rem, 2vw, 1.75rem);
}

p,
ul,
ol,
blockquote,
table {
	margin-top: 0;
	margin-bottom: 1.35em;
}

blockquote {
	margin-inline: 0;
	padding: 1.25rem 1.5rem;
	border-left: 4px solid var(--ws-accent);
	border-radius: 0 var(--ws-radius-sm) var(--ws-radius-sm) 0;
	background: var(--ws-accent-soft);
}

table {
	width: 100%;
	border-collapse: collapse;
	background: var(--ws-surface);
}

th,
td {
	padding: .85rem 1rem;
	border: 1px solid var(--ws-border);
	text-align: left;
	vertical-align: top;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: .75rem 1rem;
	clip: auto !important;
	background: #fff;
	color: #000;
}

.ws-skip-link {
	position: fixed;
	top: -100px;
	left: 1rem;
	z-index: 99999;
	padding: .7rem 1rem;
	border-radius: 8px;
	background: var(--ws-ink);
	color: #fff;
}

.ws-skip-link:focus {
	top: 1rem;
}

body.ws-dark {
	--ws-ink: #f2f4f7;
	--ws-muted: #b5bdc9;
	--ws-subtle: #98a2b3;
	--ws-border: #344054;
	--ws-surface: #101828;
	--ws-surface-alt: #0c111d;
	--ws-accent-soft: #1d2939;
	--ws-shadow-sm: none;
	--ws-shadow-md: none;
	color-scheme: dark;
}
