/* tokens.css */
/*
 * SCLK design tokens.
 *
 * The only place a colour, radius, shadow, easing or width is defined. Every
 * value is lifted from the approved v3 design.
 */

/* Archivo, self-hosted. SIL Open Font License 1.1, see assets/fonts/OFL.txt.
   Variable-weight WOFF2 files from Google Fonts (Archivo v25), split by
   character range: one file covers every weight from 400 to 800, and the
   extended Latin file only downloads for pages that use those characters. */

@font-face {
	font-family: "Archivo";
	font-style: normal;
	font-weight: 400 800;
	font-stretch: 100%;
	font-display: swap;
	src: url("https://www.sclk.co.uk/wp-content/themes/sclk/assets/fonts/archivo-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Archivo";
	font-style: normal;
	font-weight: 400 800;
	font-stretch: 100%;
	font-display: swap;
	src: url("https://www.sclk.co.uk/wp-content/themes/sclk/assets/fonts/archivo-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
	--sclk-font: Archivo, Helvetica, Arial, sans-serif;

	/* Grounds */
	--sclk-page: #EFEEE9;
	--sclk-surface: #FBFAF8;
	--sclk-panel: #E7E4DC;
	--sclk-sand: #DCD6C7;
	--sclk-stone: #D3D7D8;
	--sclk-sage: #D8D9D1;

	/* Ink */
	--sclk-ink: #12141C;
	--sclk-ink-alt: #12141A;
	--sclk-ink-deep: #0A0C12;
	--sclk-ink-hover: #2E323C;
	--sclk-field-dark: #0C0E14;

	/* Text */
	--sclk-text-strong: #3B404C;
	--sclk-text: #4A4F5A;
	--sclk-text-soft: #55575B;
	--sclk-eyebrow: #5F6058;
	--sclk-eyebrow-card: #4F5049;
	--sclk-muted: #74746C;
	--sclk-numeral: #65665F; /* design #8B8C82 darkened in the same hue to pass 4.5:1 on --sclk-panel */
	--sclk-placeholder: #8D8F8C;

	/* Accents */
	--sclk-yellow: #F2EF00;
	--sclk-purple: #5B4BD6;
	--sclk-purple-hover: #6D5DE8;
	--sclk-purple-bright: #7C6BEE;

	/* On dark */
	--sclk-on-dark: #F7F6F2;
	--sclk-on-dark-soft: #C7C8C6;
	--sclk-on-dark-muted: #9A9C99;
	--sclk-pa-eyebrow: #8B93A2;
	--sclk-pa-sub: #D3D7E0;
	--sclk-pa-text: #A0A7B4;

	/* Lines */
	--sclk-line-faint: rgba(18, 20, 28, 0.08);
	--sclk-line: rgba(18, 20, 28, 0.1);
	--sclk-line-strong: rgba(18, 20, 28, 0.14);
	--sclk-line-field: rgba(18, 20, 28, 0.16);

	/* Geometry */
	--sclk-radius-card: 22px;
	--sclk-radius-panel: 26px;
	--sclk-radius-popover: 18px;
	--sclk-radius-md: 16px;
	--sclk-radius-sm: 12px;
	--sclk-radius-pill: 999px;

	--sclk-width: 1260px;
	--sclk-gutter: 56px;
	--sclk-band-gutter: 24px;
	--sclk-section-gap: clamp(56px, 6vw, 88px);
	--sclk-scroll-offset: 106px;

	/* Depth and motion */
	--sclk-shadow-pill: 0 10px 34px rgba(18, 20, 28, 0.08);
	--sclk-shadow-pill-compact: 0 6px 18px rgba(18, 20, 28, 0.12);
	--sclk-shadow-popover: 0 24px 50px rgba(18, 20, 28, 0.14);
	--sclk-shadow-dialog: 0 40px 90px rgba(10, 12, 18, 0.5);
	--sclk-ease: cubic-bezier(0.25, 1, 0.33, 1);
}

@media (max-width: 1180px) {
	:root {
		--sclk-gutter: 40px;
	}
}

@media (max-width: 700px) {
	:root {
		--sclk-gutter: 28px;
		--sclk-scroll-offset: 92px;
	}
}

/* base.css */
/* Reset, typography, layout primitives and buttons. */

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--sclk-page);
	color: var(--sclk-ink);
	font-family: var(--sclk-font);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

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

img {
	height: auto;
}

a {
	color: var(--sclk-ink);
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

a:hover {
	color: var(--sclk-text);
}

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

::selection {
	background: var(--sclk-yellow);
	color: var(--sclk-ink);
}

:focus-visible {
	outline: 2px solid var(--sclk-ink);
	outline-offset: 3px;
}

[hidden] {
	display: none !important;
}

summary {
	list-style: none;
}

summary::-webkit-details-marker {
	display: none;
}

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

.sclk-skip {
	position: absolute;
	top: 0;
	left: -9999px;
	z-index: 300;
	padding: 14px 20px;
	border-radius: 0 0 12px 0;
	background: var(--sclk-ink-alt);
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 700;
}

.sclk-skip:focus {
	left: 0;
	color: #FFFFFF;
}

section[id],
article[id],
footer[id] {
	scroll-margin-top: var(--sclk-scroll-offset);
}

/* Layout */

.sclk-page {
	overflow-x: clip;
	background: var(--sclk-page);
}

.sclk-wrap {
	width: min(var(--sclk-width), calc(100% - var(--sclk-gutter)));
	margin: 0 auto;
}

.sclk-band {
	width: calc(100% - var(--sclk-band-gutter));
	margin: 0 auto;
}

.sclk-narrow {
	width: min(820px, calc(100% - var(--sclk-gutter)));
	margin: 0 auto;
}

.sclk-keep {
	display: inline-block;
}

.sclk-eyebrow {
	margin: 0;
	color: var(--sclk-eyebrow);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.16em;
}

/* Buttons */

.sclk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 15px 26px;
	border: none;
	border-radius: var(--sclk-radius-pill);
	font-family: var(--sclk-font);
	font-size: 15.5px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.005em;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, filter 0.3s ease;
}

.sclk-btn--sm {
	min-height: 44px;
	padding: 12px 20px;
	font-size: 14.5px;
}

.sclk-btn--md {
	min-height: 46px;
	padding: 13px 22px;
	font-size: 15px;
}

.sclk-btn--lg {
	min-height: 50px;
	padding: 15px 28px;
	font-size: 16px;
}

.sclk-btn--yellow,
.sclk-btn--yellow:hover {
	background: var(--sclk-yellow);
	color: var(--sclk-ink);
}

.sclk-btn--yellow:hover {
	filter: brightness(0.94);
}

.sclk-btn--ink {
	background: var(--sclk-ink);
	color: var(--sclk-surface);
}

.sclk-btn--ink:hover {
	background: var(--sclk-ink-hover);
	color: var(--sclk-surface);
}

.sclk-btn--outline {
	border: 1.5px solid rgba(18, 20, 26, 0.26);
	background: transparent;
	color: var(--sclk-ink-alt);
}

.sclk-btn--outline:hover {
	border-color: var(--sclk-ink-alt);
	background: rgba(18, 20, 26, 0.05);
	color: var(--sclk-ink-alt);
}

.sclk-btn--purple {
	background: var(--sclk-purple);
	color: #FFFFFF;
	font-size: 15px;
	transition: background-color 0.4s var(--sclk-ease);
}

.sclk-btn--purple:hover {
	background: var(--sclk-purple-hover);
	color: #FFFFFF;
}

.sclk-btn--ghost {
	gap: 10px;
	padding: 15px 22px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.04);
	color: #FFFFFF;
	font-size: 15px;
	transition: border-color 0.4s var(--sclk-ease), background-color 0.4s var(--sclk-ease);
}

.sclk-btn--ghost:hover {
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.09);
	color: #FFFFFF;
}

.sclk-btn .sclk-icon {
	display: block;
	flex: 0 0 auto;
}

.sclk-btn[aria-busy="true"] {
	opacity: 0.7;
	cursor: progress;
}

.sclk-linkbutton {
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* chrome.css */
/* Header pill bar and site footer. */

/* Header */

.sclk-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 60;
	display: flex;
	justify-content: center;
	padding: 18px 0;
	pointer-events: none;
}

.admin-bar .sclk-header {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .sclk-header {
		top: 46px;
	}
}

.sclk-pill {
	display: flex;
	align-items: center;
	gap: clamp(12px, 2.2vw, 30px);
	max-width: calc(100% - 28px);
	padding: 9px 10px 9px 24px;
	border: 1px solid var(--sclk-line-faint);
	border-radius: var(--sclk-radius-pill);
	background: rgba(251, 250, 248, 0.9);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	box-shadow: var(--sclk-shadow-pill);
	pointer-events: auto;
	transition: padding 0.35s var(--sclk-ease), box-shadow 0.35s ease;
}

.sclk-pill.is-compact {
	gap: clamp(10px, 1.8vw, 24px);
	padding: 6px 8px 6px 18px;
	box-shadow: var(--sclk-shadow-pill-compact);
}

.sclk-pill__logo {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.sclk-pill__logo__img {
	display: block;
	width: auto;
	height: 22px;
}

.sclk-pill__logo__text {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.sclk-pill__cta {
	flex: 0 0 auto;
}

.sclk-nav {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.1vw, 32px);
}

.sclk-nav__link {
	color: var(--sclk-text-strong);
	font-size: 14.5px;
	font-weight: 600;
	transition: color 0.3s ease;
}

.sclk-nav__group {
	position: relative;
}

.sclk-nav__summary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.sclk-icon--caret {
	display: block;
	margin-top: 1px;
	opacity: 0.5;
	transition: transform 0.28s var(--sclk-ease), opacity 0.28s ease;
}

.sclk-nav__summary:hover .sclk-icon--caret {
	opacity: 0.8;
}

.sclk-nav__group[open] .sclk-icon--caret {
	opacity: 0.9;
	transform: rotate(180deg);
}

.sclk-dropdown,
.sclk-menu__panel {
	position: absolute;
	display: flex;
	flex-direction: column;
	padding: 8px;
	border: 1px solid var(--sclk-line-faint);
	border-radius: var(--sclk-radius-popover);
	background: var(--sclk-surface);
	box-shadow: var(--sclk-shadow-popover);
}

.sclk-dropdown {
	top: calc(100% + 16px);
	left: -14px;
	width: 262px;
}

.sclk-dropdown__link,
.sclk-menu__link {
	display: flex;
	align-items: center;
	min-height: 44px;
	border-radius: var(--sclk-radius-sm);
	font-size: 14.5px;
	font-weight: 600;
	transition: background-color 0.25s ease;
}

.sclk-dropdown__link {
	padding: 12px 14px;
}

.sclk-dropdown__link:hover,
.sclk-menu__link:hover {
	background: var(--sclk-page);
	color: var(--sclk-ink);
}

.sclk-menu {
	position: relative;
	display: none;
}

.sclk-menu__button {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 11px 16px;
	border: 1px solid var(--sclk-line-strong);
	border-radius: var(--sclk-radius-pill);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.sclk-menu__panel {
	top: calc(100% + 14px);
	right: -60px;
	width: min(250px, calc(100vw - 28px));
	box-shadow: 0 24px 50px rgba(18, 20, 28, 0.16);
}

.sclk-menu__label {
	margin: 0;
	padding: 10px 14px 6px;
	color: var(--sclk-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sclk-menu__link {
	padding: 11px 14px;
}

.sclk-menu__link--divider {
	margin-top: 6px;
	border-top: 1px solid var(--sclk-line-faint);
	border-radius: 0;
}

@media (max-width: 940px) {
	.sclk-nav {
		display: none;
	}

	.sclk-menu {
		display: block;
	}
}

@media (max-width: 700px) {
	.sclk-pill,
	.sclk-pill.is-compact {
		gap: 8px;
		padding: 8px 8px 8px 16px;
	}
}

@media (max-width: 380px) {
	.sclk-pill__cta.sclk-btn--sm {
		padding: 11px 14px;
		font-size: 13.5px;
	}

	.sclk-menu__button {
		padding: 10px 13px;
	}
}

/* Footer */

.sclk-footer {
	padding: 0 0 clamp(32px, 4vw, 48px);
}

.sclk-footer__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
	gap: 32px 40px;
	padding-bottom: 36px;
}

.sclk-footer__logo {
	display: block;
	width: auto;
	height: 26px;
}

.sclk-footer__tagline {
	max-width: 30ch;
	margin: 16px 0 0;
	color: var(--sclk-text);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.7;
}

.sclk-footer__heading {
	margin: 0;
	font-size: 12.5px;
	font-weight: 700;
}

.sclk-footer__links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	margin-top: 14px;
}

.sclk-footer__link {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 5px 0;
	color: var(--sclk-text);
	font-size: 14px;
	transition: color 0.3s ease;
}

.sclk-footer__link:hover {
	color: var(--sclk-ink);
}

.sclk-footer__link--small {
	font-size: 13px;
}

.sclk-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 26px;
	border-top: 1px solid var(--sclk-line);
}

.sclk-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.sclk-footer__copy {
	margin: 0;
	color: var(--sclk-text);
	font-size: 13px;
	font-weight: 600;
}

@media (max-width: 1080px) {
	.sclk-footer__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sclk-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 700px) {
	.sclk-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px 24px;
	}

	.sclk-footer__brand,
	.sclk-footer__col:nth-child(2) {
		grid-column: 1 / -1;
	}
}

/* modal.css */
/* Support request dialog, its form, and the video player dialog. */

@keyframes sclkFade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes sclkRise {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: none; }
}

@keyframes sclkSpin {
	to { transform: rotate(360deg); }
}

body.sclk-locked {
	overflow: hidden;
}

/* Support dialog. :target keeps it working without JavaScript. */

.sclk-dialog {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(16px, 4vh, 56px) 20px;
	overflow-y: auto;
	animation: sclkFade 0.2s ease-out both;
}

.sclk-dialog:target,
.sclk-dialog.is-open {
	display: flex;
}

.sclk-dialog__backdrop {
	position: fixed;
	inset: 0;
	background: rgba(10, 12, 18, 0.7);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	cursor: default;
}

.sclk-dialog__panel {
	position: relative;
	width: min(640px, 100%);
	margin: auto;
	border-radius: 24px;
	outline: none;
	background: var(--sclk-surface);
	box-shadow: var(--sclk-shadow-dialog);
	overflow: hidden;
	animation: sclkRise 0.28s var(--sclk-ease) both;
}

.sclk-dialog__body {
	padding: clamp(26px, 3.4vw, 40px);
}

[data-sclk-sent].sclk-dialog__body {
	padding: clamp(28px, 4vw, 44px);
}

.sclk-dialog__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.sclk-dialog__title {
	max-width: 22ch;
	margin: 0;
	font-size: clamp(25px, 2.8vw, 34px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.026em;
}

[data-sclk-sent] .sclk-dialog__title {
	font-size: clamp(26px, 3vw, 36px);
}

/* Focused by script so screen readers announce it; it is not a control. */
.sclk-dialog__title[tabindex="-1"]:focus {
	outline: none;
}

.sclk-dialog__text {
	max-width: 50ch;
	margin: 14px 0 0;
	color: var(--sclk-text);
	font-size: 16.5px;
	line-height: 1.7;
	text-wrap: pretty;
}

.sclk-dialog__text--lg {
	max-width: 52ch;
	margin-top: 18px;
	font-size: 17px;
}

.sclk-dialog__receipt {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 12px;
	max-width: 52ch;
	margin: 24px 0 0;
	padding: 14px 18px;
	border: 1px solid var(--sclk-line-field);
	border-radius: var(--sclk-radius-sm);
	background: #FFFFFF;
}

.sclk-dialog__receipt[hidden] {
	display: none;
}

.sclk-dialog__receipt-label {
	color: var(--sclk-text);
	font-size: 14.5px;
	font-weight: 600;
}

.sclk-dialog__reference {
	color: var(--sclk-ink);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: 0.05em;
	font-variant-numeric: tabular-nums;
}

.sclk-dialog__note {
	max-width: 52ch;
	margin: 12px 0 0;
	color: var(--sclk-text);
	font-size: 14.5px;
	line-height: 1.6;
}

.sclk-dialog__done {
	margin-top: 32px;
}

.sclk-dialog__close {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	min-height: 44px;
	padding: 11px 16px;
	border: 1px solid var(--sclk-line-field);
	border-radius: var(--sclk-radius-pill);
	background: transparent;
	color: var(--sclk-text);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.25s ease, color 0.25s ease;
}

.sclk-dialog__close:hover {
	border-color: var(--sclk-ink);
	color: var(--sclk-ink);
}

/* Form */

.sclk-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 28px;
}

.sclk-form__row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
	gap: 18px;
}

.sclk-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sclk-form__label {
	font-size: 14px;
	font-weight: 700;
}

.sclk-form__optional {
	margin-left: 4px;
	color: var(--sclk-muted);
	font-weight: 500;
}

.sclk-form__control {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--sclk-line-field);
	border-radius: var(--sclk-radius-sm);
	background: #FFFFFF;
	color: var(--sclk-ink);
	font-family: var(--sclk-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

select.sclk-form__control {
	padding-right: 42px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 3.4L9 1' fill='none' stroke='%234A4F5A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: right 16px center;
	background-repeat: no-repeat;
	background-size: 10px 6px;
	-webkit-appearance: none;
	appearance: none;
}

.sclk-form__textarea {
	line-height: 1.6;
	resize: vertical;
}

.sclk-form__file {
	padding: 13px 16px;
	border-style: dashed;
	border-color: rgba(18, 20, 28, 0.2);
	color: var(--sclk-text);
	font-size: 15px;
}

.sclk-form__control:focus {
	border-color: var(--sclk-ink);
	outline: none;
	box-shadow: 0 0 0 3px rgba(242, 239, 0, 0.6);
}

.sclk-form__control[aria-invalid="true"] {
	border-color: #B42318;
}

.sclk-form__hint {
	color: var(--sclk-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
}

.sclk-form__error {
	color: #B42318;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.45;
}

.sclk-form__alert {
	margin-top: 22px;
	padding: 14px 16px;
	border-radius: var(--sclk-radius-sm);
	background: #FDECEA;
	color: #8A1C12;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.55;
}

.sclk-form__consent {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	color: var(--sclk-text);
	font-size: 14.5px;
	line-height: 1.6;
}

.sclk-form__consent input {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	margin-top: 3px;
	accent-color: var(--sclk-ink);
}

.sclk-form__privacy {
	margin: 0;
	color: var(--sclk-text);
	font-size: 13.5px;
	line-height: 1.6;
}

.sclk-form__privacy a {
	color: var(--sclk-ink);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sclk-form__submit.sclk-btn {
	min-height: 50px;
	margin-top: 6px;
	padding: 17px 28px;
	font-size: 16.5px;
}

.sclk-form__trap {
	position: absolute !important;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Video dialog */

.sclk-video {
	position: fixed;
	inset: 0;
	z-index: 220;
	display: none;
	align-items: center;
	justify-content: center;
	padding: clamp(16px, 4vw, 56px);
	background: rgba(5, 7, 12, 0.88);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	animation: sclkFade 0.3s ease both;
}

.sclk-video.is-open {
	display: flex;
}

.sclk-video :focus-visible {
	outline-color: #FFFFFF;
}

.sclk-video__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: min(1180px, 100%);
}

.sclk-video__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.sclk-video__brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #FFFFFF;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.sclk-video__brand .sclk-proactive__mark {
	display: block;
	width: 20px;
	height: auto;
}

.sclk-video__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-left: auto;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: #FFFFFF;
	font-family: var(--sclk-font);
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.25s ease, border-color 0.25s ease;
}

.sclk-video__close:hover {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.16);
}

.sclk-video__stage {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 14px;
	background: #000000;
	box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
	overflow: hidden;
}

.sclk-video__stage video {
	display: block;
	width: 100%;
	height: 100%;
	background: #000000;
	object-fit: contain;
}

.sclk-video__loading {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	background: rgba(5, 7, 12, 0.72);
	text-align: center;
}

.sclk-video.is-ready .sclk-video__loading {
	display: none;
}

.sclk-video__loading p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.sclk-video__spinner {
	display: block;
	width: 34px;
	height: 34px;
	border: 2px solid rgba(255, 255, 255, 0.22);
	border-top-color: var(--sclk-purple-bright);
	border-radius: 50%;
	animation: sclkSpin 0.9s linear infinite;
}

.sclk-video__ui {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 11px;
	padding: clamp(28px, 3vw, 44px) clamp(14px, 1.4vw, 20px) clamp(12px, 1.2vw, 16px);
	background: linear-gradient(180deg, rgba(5, 7, 12, 0) 0%, rgba(5, 7, 12, 0.72) 62%, rgba(5, 7, 12, 0.9) 100%);
}

.sclk-video__seek {
	position: relative;
	display: block;
	width: 100%;
	height: 22px;
	cursor: pointer;
}

.sclk-video__track,
.sclk-video__fill {
	position: absolute;
	top: 50%;
	height: 3px;
	margin-top: -1.5px;
	border-radius: var(--sclk-radius-pill);
}

.sclk-video__track {
	right: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.22);
}

.sclk-video__fill {
	left: 0;
	width: var(--sclk-progress, 0%);
	background: var(--sclk-purple-bright);
}

.sclk-video__thumb {
	position: absolute;
	top: 50%;
	left: var(--sclk-progress, 0%);
	width: 11px;
	height: 11px;
	margin: -5.5px 0 0 -5.5px;
	border-radius: 50%;
	background: #FFFFFF;
	box-shadow: 0 2px 8px rgba(5, 7, 12, 0.6);
}

.sclk-video__controls {
	display: flex;
	align-items: center;
	gap: 14px;
}

.sclk-video__toggle {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #FFFFFF;
	cursor: pointer;
	transition: background-color 0.25s ease;
}

.sclk-video__toggle:hover {
	background: rgba(255, 255, 255, 0.2);
}

.sclk-video__icon-pause {
	display: flex;
	gap: 3.5px;
}

.sclk-video__icon-pause span {
	display: block;
	width: 3.5px;
	height: 13px;
	border-radius: 1px;
	background: #FFFFFF;
}

.sclk-video__icon-play {
	display: none;
	width: 0;
	height: 0;
	margin-left: 3px;
	border-top: 6.5px solid transparent;
	border-bottom: 6.5px solid transparent;
	border-left: 11px solid #FFFFFF;
}

.sclk-video.is-paused .sclk-video__icon-pause {
	display: none;
}

.sclk-video.is-paused .sclk-video__icon-play {
	display: block;
}

.sclk-video__mute,
.sclk-video__fs {
	flex: 0 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: none;
	color: rgba(255, 255, 255, 0.82);
	cursor: pointer;
	transition: border-color 0.25s ease, color 0.25s ease;
}

.sclk-video__mute {
	min-height: 30px;
	padding: 6px 12px;
	border-radius: var(--sclk-radius-pill);
	font-family: var(--sclk-font);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.sclk-video__fs {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border-radius: 8px;
}

.sclk-video__mute:hover,
.sclk-video__fs:hover {
	border-color: rgba(255, 255, 255, 0.42);
	color: #FFFFFF;
}

.sclk-video__spacer {
	flex: 1 1 auto;
}

.sclk-video__time {
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	font-variant-numeric: tabular-nums;
}

@media (max-width: 700px) {
	.sclk-video__stage {
		display: flex;
		flex-direction: column;
		aspect-ratio: auto;
	}

	.sclk-video__stage video {
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.sclk-video__ui {
		position: static;
		gap: 4px;
		padding: 8px 12px 12px;
		background: var(--sclk-ink-deep);
	}

	.sclk-video__seek {
		height: 44px;
	}

	.sclk-video__ui button {
		min-width: 44px;
		min-height: 44px;
	}
}

/* content.css */
/* Legal pages, general pages and editor prose. */

/* Legal layout */

.sclk-legal-page {
	min-height: 100vh;
	padding: clamp(26px, 3.4vw, 44px) 0 clamp(40px, 5vw, 72px);
	background: var(--sclk-page);
}

.sclk-legal-wrap {
	width: min(820px, calc(100% - 56px));
	margin: 0 auto;
}

.sclk-legal-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.sclk-legal-top__logo {
	display: flex;
	align-items: center;
}

.sclk-legal-top__logo__img {
	display: block;
	width: auto;
	height: 24px;
}

.sclk-legal-top__logo__text {
	font-size: 18px;
	font-weight: 800;
}

.sclk-legal-top__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	color: var(--sclk-text);
	font-size: 14.5px;
	font-weight: 600;
	white-space: nowrap;
	transition: color 0.3s ease;
}

.sclk-legal-top__back:hover {
	color: var(--sclk-ink);
}

.sclk-legal > :first-child {
	margin-top: clamp(44px, 6vw, 84px);
}

.sclk-legal__title {
	margin: 18px 0 0;
	font-size: clamp(38px, 5.4vw, 66px);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.032em;
	text-wrap: balance;
}

.sclk-legal__intro {
	max-width: 54ch;
	margin: 20px 0 0;
	color: var(--sclk-text-strong);
	font-size: clamp(16.5px, 1.3vw, 18.5px);
	line-height: 1.7;
	text-wrap: pretty;
}

.sclk-legal__updated {
	margin: 22px 0 0;
	color: var(--sclk-eyebrow);
	font-size: 13.5px;
	font-weight: 600;
}

.sclk-legal__content {
	margin-top: clamp(36px, 4vw, 58px);
	padding-top: clamp(32px, 3.4vw, 48px);
	border-top: 1px solid var(--sclk-line-strong);
}

.sclk-legal-foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: clamp(40px, 4.4vw, 64px);
	padding-top: 26px;
	border-top: 1px solid var(--sclk-line);
}

.sclk-legal-foot__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.sclk-legal-foot__link {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 5px 0;
	color: var(--sclk-text);
	font-size: 13px;
	transition: color 0.3s ease;
}

.sclk-legal-foot__link:hover {
	color: var(--sclk-ink);
}

.sclk-legal-foot__link--current {
	font-weight: 600;
}

.sclk-legal-foot__copy {
	margin: 0;
	color: var(--sclk-text);
	font-size: 13px;
	font-weight: 600;
}

@media (max-width: 700px) {
	.sclk-legal-wrap {
		width: calc(100% - 28px);
	}

	.sclk-legal__title {
		font-size: 38px;
	}
}

/* General pages, 404 and the fallback index */

.sclk-page-content {
	padding: clamp(132px, 12vw, 172px) 0 var(--sclk-section-gap);
}

.sclk-page-content__eyebrow {
	margin-bottom: 18px;
}

.sclk-page-content__title {
	margin: 0;
	font-size: clamp(38px, 5.4vw, 66px);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.032em;
	text-wrap: balance;
}

.sclk-page-content__intro {
	max-width: 54ch;
	margin: 20px 0 0;
	color: var(--sclk-text-strong);
	font-size: clamp(16.5px, 1.3vw, 18.5px);
	line-height: 1.7;
	text-wrap: pretty;
}

.sclk-page-content__body {
	margin-top: clamp(36px, 4vw, 58px);
}

.sclk-page-content__actions {
	margin: 32px 0 0;
}

.sclk-page-content--center {
	text-align: center;
}

.sclk-page-content--center .sclk-page-content__intro {
	margin-right: auto;
	margin-left: auto;
}

/* Prose from the block editor */

.sclk-prose > :first-child {
	margin-top: 0;
}

.sclk-prose h2 {
	margin: clamp(30px, 3.4vw, 44px) 0 0;
	color: var(--sclk-ink);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.018em;
}

.sclk-prose h3 {
	margin: 26px 0 0;
	color: var(--sclk-ink);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
}

.sclk-prose p,
.sclk-prose ul,
.sclk-prose ol {
	max-width: 70ch;
	margin: 14px 0 0;
	color: var(--sclk-text);
	font-size: 16.5px;
	line-height: 1.78;
	text-wrap: pretty;
}

.sclk-prose ul,
.sclk-prose ol {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-left: 22px;
}

.sclk-prose strong {
	color: var(--sclk-ink);
	font-weight: 600;
}

.sclk-prose a {
	border-bottom: 1px solid rgba(18, 20, 28, 0.3);
	font-weight: 600;
	transition: border-color 0.3s ease;
}

.sclk-prose a:hover {
	border-bottom-color: var(--sclk-ink);
	color: var(--sclk-ink);
}

.sclk-prose img {
	border-radius: var(--sclk-radius-md);
}

.sclk-prose figure {
	margin: 28px 0 0;
}

.sclk-prose blockquote {
	margin: 28px 0 0;
	padding: 4px 0 4px 20px;
	border-left: 3px solid var(--sclk-yellow);
}

.sclk-prose hr {
	margin: 36px 0;
	border: 0;
	border-top: 1px solid var(--sclk-line-strong);
}

.sclk-prose table {
	width: 100%;
	margin: 20px 0 0;
	border-collapse: collapse;
	font-size: 15px;
}

.sclk-prose th,
.sclk-prose td {
	padding: 10px 12px;
	border-bottom: 1px solid var(--sclk-line-strong);
	text-align: left;
}

/* Breadcrumb */

.sclk-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 0;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--sclk-eyebrow);
	font-size: 13.5px;
	font-weight: 600;
}

.sclk-breadcrumb__item + .sclk-breadcrumb__item::before {
	content: "/";
	margin: 0 10px;
	color: var(--sclk-numeral);
}

.sclk-breadcrumb__item a {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	color: var(--sclk-text);
	text-decoration: underline;
	text-decoration-color: rgba(18, 20, 28, 0.25);
	text-underline-offset: 3px;
}

.sclk-breadcrumb__item a:hover {
	color: var(--sclk-ink);
}

/* Service landing pages */

.sclk-service__header {
	padding: clamp(118px, 11vw, 156px) 0 clamp(40px, 5vw, 72px);
}

.sclk-service__eyebrow {
	margin-top: clamp(28px, 3.4vw, 44px);
}

.sclk-service__title {
	max-width: 20ch;
	margin: 18px 0 0;
	font-size: clamp(38px, 5.4vw, 72px);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.032em;
	text-wrap: balance;
}

.sclk-service__intro {
	max-width: 58ch;
	margin: 22px 0 0;
	color: var(--sclk-text-strong);
	font-size: clamp(17px, 1.35vw, 19.5px);
	line-height: 1.7;
	text-wrap: pretty;
}

.sclk-service__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 22px;
	margin-top: 28px;
}

.sclk-service__body {
	padding: clamp(40px, 4.4vw, 64px) 0 var(--sclk-section-gap);
	border-top: 1px solid var(--sclk-line-strong);
}

.sclk-prose--service h2 {
	margin-top: clamp(40px, 4.4vw, 60px);
	font-size: clamp(24px, 2.4vw, 32px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.024em;
}

.sclk-prose--service h3 {
	margin-top: 28px;
	font-size: 19px;
	letter-spacing: -0.016em;
}

.sclk-prose--service h2 + p,
.sclk-prose--service h3 + p {
	margin-top: 12px;
}

.sclk-related {
	padding: 0 0 var(--sclk-section-gap);
}

.sclk-related__title {
	margin: 0;
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.028em;
}

.sclk-related__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: 14px;
	margin: clamp(24px, 2.6vw, 36px) 0 0;
	padding: 0;
	list-style: none;
}

.sclk-related__item {
	padding: clamp(24px, 2.4vw, 32px);
	border-radius: var(--sclk-radius-card);
	background: var(--sclk-surface);
}

.sclk-related__item--home {
	background: var(--sclk-panel);
}

.sclk-related__name {
	margin: 0;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.016em;
}

.sclk-related__name a {
	text-decoration: underline;
	text-decoration-color: rgba(18, 20, 28, 0.25);
	text-underline-offset: 4px;
}

.sclk-related__name a:hover {
	color: var(--sclk-ink);
	text-decoration-color: currentColor;
}

.sclk-related__text {
	margin: 10px 0 0;
	color: var(--sclk-text);
	font-size: 15px;
	line-height: 1.65;
}

@media (max-width: 700px) {
	.sclk-service__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.sclk-service__actions .sclk-btn,
	.sclk-service__actions .sclk-textlink {
		justify-content: center;
		width: 100%;
	}

	.sclk-service__cta .sclk-cta__img {
		object-position: 22% center;
		transform: scale(1.35);
		transform-origin: 22% center;
	}
}

/* consent.css */
/* Cookie consent banner. Accept and reject carry equal weight. */

@keyframes sclkConsentRise {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: none; }
}

.sclk-consent {
	position: fixed;
	right: 16px;
	bottom: 16px;
	left: 16px;
	z-index: 250;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px 24px;
	max-width: 760px;
	margin: 0 auto;
	padding: 16px 16px 16px 22px;
	border: 1px solid var(--sclk-line-faint);
	border-radius: 20px;
	background: var(--sclk-surface);
	box-shadow: 0 24px 50px rgba(18, 20, 28, 0.18);
	font-family: var(--sclk-font);
	animation: sclkConsentRise 0.35s var(--sclk-ease) both;
}

.sclk-consent__text {
	flex: 1 1 320px;
	margin: 0;
	color: var(--sclk-text);
	font-size: 14px;
	line-height: 1.6;
}

.sclk-consent__text a {
	border-bottom: 1px solid rgba(18, 20, 28, 0.3);
	color: var(--sclk-ink);
	font-weight: 600;
}

.sclk-consent__actions {
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.sclk-consent__btn {
	min-height: 44px;
	padding: 11px 18px;
	border-radius: var(--sclk-radius-pill);
	font-family: var(--sclk-font);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.25s ease, border-color 0.25s ease;
}

.sclk-consent__btn--reject {
	border: 1px solid var(--sclk-line-field);
	background: transparent;
	color: var(--sclk-ink);
}

.sclk-consent__btn--reject:hover {
	border-color: var(--sclk-ink);
}

.sclk-consent__btn--accept {
	border: 1px solid var(--sclk-ink);
	background: var(--sclk-ink);
	color: var(--sclk-surface);
}

.sclk-consent__btn--accept:hover {
	background: var(--sclk-ink-hover);
}

@media (max-width: 560px) {
	.sclk-consent {
		padding: 16px;
	}

	.sclk-consent__actions {
		width: 100%;
	}

	.sclk-consent__btn {
		flex: 1 1 0;
	}
}

