:root {
	--pw-purple: #4b0983;
	--pw-purple-600: #5b18a0;
	--pw-purple-500: #6a2ecf;
	--pw-purple-bright: #6f08e1;
	--pw-purple-100: #e9ddf7;
	--pw-purple-50: #f6f1fb;
	--pw-ink: #1f2330;
	--pw-ink-soft: #454b59;
	--pw-muted: #6b7280;
	--pw-line: #e5e7eb;
	--pw-line-strong: #d5d7de;
	--pw-surface: #ffffff;
	--pw-surface-soft: #f6f7fb;
	--pw-surface-dark: #24102f;
	--pw-success: #0f9f6e;
	--pw-focus: #8b5cf6;
	--pw-shadow-sm: 0 6px 20px rgba(31, 35, 48, 0.08);
	--pw-shadow-md: 0 16px 45px rgba(48, 17, 71, 0.13);
	--pw-shadow-lg: 0 28px 70px rgba(48, 17, 71, 0.2);
	--pw-radius-xs: 4px;
	--pw-radius-sm: 8px;
	--pw-radius-md: 14px;
	--pw-radius-lg: 24px;
	--pw-radius-pill: 999px;
	--pw-container: 1280px;
	--pw-content: 820px;
	--pw-header-height: 104px;
	--pw-font-body: "Rubik", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--pw-font-heading: "Rubik", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--pw-transition: 180ms ease;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
	text-size-adjust: 100%;
}

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

body {
	margin: 0;
	background: var(--pw-surface);
	color: var(--pw-ink);
	font-family: var(--pw-font-body);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.pw-navigation-open {
	overflow: hidden;
}

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

img {
	height: auto;
}

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: var(--pw-purple);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--pw-purple-bright);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.65em;
	color: var(--pw-ink);
	font-family: var(--pw-font-heading);
	font-weight: 650;
	line-height: 1.12;
	letter-spacing: -0.025em;
}

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

::selection {
	background: var(--pw-purple);
	color: #fff;
}

:focus-visible {
	outline: 3px solid rgba(139, 92, 246, 0.45);
	outline-offset: 3px;
}

.pw-container {
	width: min(calc(100% - 40px), var(--pw-container));
	margin-inline: auto;
}

.pw-screen-reader-text,
.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;
}

.pw-screen-reader-text:focus,
.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 16px;
	background: #fff;
	color: var(--pw-purple);
	box-shadow: var(--pw-shadow-md);
}

.pw-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100000;
	transform: translateY(-150%);
	padding: 10px 14px;
	border-radius: var(--pw-radius-sm);
	background: var(--pw-purple);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: transform var(--pw-transition);
}

.pw-skip-link:focus {
	transform: translateY(0);
	color: #fff;
}
