/* 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;
	}
}

/* home.css */
/* Homepage sections, in page order. */

/* Hero */

.sclk-hero {
	position: relative;
	padding: clamp(104px, 9.4vw, 128px) 0 0;
	text-align: center;
	isolation: isolate;
}

.sclk-hero__bg {
	position: absolute;
	right: 12px;
	bottom: 0;
	left: 12px;
	z-index: -1;
	height: clamp(360px, 39vw, 540px);
	border-radius: var(--sclk-radius-card);
	overflow: hidden;
	pointer-events: none;
}

.sclk-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 26%, rgba(0, 0, 0, 0.85) 52%, #000 72%);
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 26%, rgba(0, 0, 0, 0.85) 52%, #000 72%);
}

/* Which side stays in view when the box is narrower than the image (phones,
   tablets). Wide screens show the full width, so this has no effect there. */
.sclk-hero__img--focus-left {
	object-position: left bottom;
}

.sclk-hero__img--focus-right {
	object-position: right bottom;
}

.sclk-hero__eyebrow {
	font-size: 12px;
	letter-spacing: 0.2em;
}

.sclk-hero__title {
	max-width: 17ch;
	margin: 18px auto 0;
	font-size: clamp(42px, 6vw, 84px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.032em;
	text-wrap: balance;
}

.sclk-hero__lead {
	max-width: 52ch;
	margin: 20px auto 0;
	color: var(--sclk-text);
	font-size: clamp(16px, 1.15vw, 17.5px);
	line-height: 1.78;
	text-wrap: pretty;
}

.sclk-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 26px;
}

.sclk-textlink {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 48px;
	padding: 15px 6px;
	color: var(--sclk-ink);
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	transition: opacity 0.3s ease;
}

.sclk-textlink:hover {
	color: var(--sclk-ink);
	opacity: 0.62;
}

.sclk-textlink__arrow {
	font-size: 12px;
}

.sclk-hero__spacer {
	height: clamp(252px, 28vw, 392px);
}

.sclk-hero--no-image .sclk-hero__spacer {
	height: clamp(32px, 4vw, 56px);
}

/* Trust strip */

.sclk-trust {
	padding: clamp(40px, 5vw, 76px) 0 clamp(40px, 4.4vw, 66px);
	text-align: center;
}

.sclk-trust__title {
	max-width: 32ch;
	margin: 0 auto;
	color: var(--sclk-ink);
	font-size: clamp(22px, 2.2vw, 32px);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

/* Logo ticker. The track holds identical groups and slides left by exactly
   one group width, so the loop is seamless. It bleeds into the page gutter
   and fades at both edges. */

@keyframes sclkTicker {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(var(--sclk-ticker-shift, -50%), 0, 0);
	}
}

.sclk-ticker {
	position: relative;
	margin: clamp(28px, 4vw, 56px) calc(var(--sclk-gutter) / -2) 0;
}

.sclk-ticker__viewport {
	--sclk-fade-l: 96px;
	--sclk-fade-r: 96px;
	padding: 4px 0;
	overflow: hidden;
	overflow: clip;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 var(--sclk-fade-l), #000 calc(100% - var(--sclk-fade-r)), transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 var(--sclk-fade-l), #000 calc(100% - var(--sclk-fade-r)), transparent 100%);
}

.sclk-ticker.has-toggle .sclk-ticker__viewport {
	--sclk-fade-r: 112px;
}

.sclk-ticker__track {
	display: flex;
	width: max-content;
	animation: sclkTicker var(--sclk-ticker-duration, 30s) linear infinite;
	will-change: transform;
}

.sclk-ticker.is-paused .sclk-ticker__track {
	animation-play-state: paused;
}

@media (hover: hover) {
	.sclk-ticker__viewport:hover .sclk-ticker__track {
		animation-play-state: paused;
	}
}

/* Each group carries its trailing gap, so one group width is one loop. */
.sclk-ticker__group {
	--sclk-logo-gap: clamp(44px, 6vw, 96px);
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: var(--sclk-logo-gap);
	margin: 0;
	padding: 0 var(--sclk-logo-gap) 0 0;
	list-style: none;
}

/* Logos sit straight on the page. The files share one height and vary in
   width, so the row lines up by height. */
.sclk-trust__logo {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	scroll-snap-align: start;
}

.sclk-ticker__toggle {
	position: absolute;
	top: 50%;
	right: calc(var(--sclk-gutter) / 2);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	padding: 0;
	border: 1px solid var(--sclk-line-strong);
	border-radius: 50%;
	background: var(--sclk-surface);
	color: var(--sclk-ink);
	box-shadow: 0 6px 16px rgba(18, 20, 28, 0.08);
	cursor: pointer;
	transition: border-color 0.25s ease;
}

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

.sclk-ticker__pause {
	display: flex;
	gap: 3px;
}

.sclk-ticker__pause span {
	display: block;
	width: 3px;
	height: 10px;
	border-radius: 1px;
	background: currentColor;
}

.sclk-ticker__play {
	display: none;
	width: 0;
	height: 0;
	margin-left: 2px;
	border-top: 5.5px solid transparent;
	border-bottom: 5.5px solid transparent;
	border-left: 9px solid currentColor;
}

.sclk-ticker.is-paused .sclk-ticker__pause {
	display: none;
}

.sclk-ticker.is-paused .sclk-ticker__play {
	display: block;
}

/* Still mode: reduced motion, or keyboard focus on a logo link. One set of
   logos, centred when it fits, scrolled by hand when it does not. */

.sclk-ticker.is-manual .sclk-ticker__viewport {
	--sclk-fade-l: 0px;
	--sclk-fade-r: 0px;
	padding: 4px calc(var(--sclk-gutter) / 2);
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	scroll-padding-inline: calc(var(--sclk-gutter) / 2);
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.sclk-ticker.is-manual .sclk-ticker__viewport::-webkit-scrollbar {
	display: none;
}

.sclk-ticker.is-manual .sclk-ticker__viewport.has-more-left {
	--sclk-fade-l: 48px;
}

.sclk-ticker.is-manual .sclk-ticker__viewport.has-more-right {
	--sclk-fade-r: 48px;
}

.sclk-ticker.is-manual .sclk-ticker__viewport:focus-visible {
	outline-offset: -2px;
}

.sclk-ticker.is-manual .sclk-ticker__track {
	justify-content: center;
	min-width: 100%;
	animation: none;
}

.sclk-ticker.is-manual .sclk-ticker__group {
	padding-right: 0;
}

.sclk-ticker.is-manual .sclk-ticker__group[aria-hidden="true"],
.sclk-ticker.is-manual .sclk-ticker__toggle {
	display: none;
}

@media (hover: hover) and (pointer: fine) {
	.sclk-ticker.is-manual .sclk-ticker__viewport.is-scrollable {
		padding-bottom: 12px;
		scrollbar-width: thin;
		scrollbar-color: rgba(18, 20, 28, 0.22) transparent;
	}

	.sclk-ticker.is-manual .sclk-ticker__viewport.is-scrollable::-webkit-scrollbar {
		display: block;
		height: 6px;
	}

	.sclk-ticker.is-manual .sclk-ticker__viewport.is-scrollable::-webkit-scrollbar-thumb {
		border-radius: 999px;
		background: rgba(18, 20, 28, 0.22);
	}
}

@media (max-width: 700px) {
	.sclk-ticker__viewport {
		--sclk-fade-l: 36px;
		--sclk-fade-r: 36px;
	}

	.sclk-ticker.has-toggle .sclk-ticker__viewport {
		--sclk-fade-r: 72px;
	}
}

.sclk-trust__link {
	display: block;
}

.sclk-trust__img {
	display: block;
	width: auto;
	max-width: none;
	height: clamp(52px, 5vw, 72px);
}

.sclk-trust__lines {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px 28px;
	max-width: 1000px;
	margin: 34px auto 0;
	padding: 0;
	list-style: none;
	text-align: left;
}

.sclk-trust__line {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: 10px;
	color: var(--sclk-text);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.6;
}

.sclk-trust__dot {
	display: block;
	width: 5px;
	height: 5px;
	margin-top: 7px;
	border-radius: 50%;
	background: var(--sclk-ink);
}

/* Services */

.sclk-services {
	padding: 0 0 clamp(48px, 5vw, 74px);
}

.sclk-triptych {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.sclk-card {
	display: grid;
	/* One column exactly the content width, so artwork can never widen it. */
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: minmax(26px, auto) minmax(clamp(60px, 5.6vw, 80px), auto) minmax(82px, auto) auto 1fr;
	gap: 22px;
	min-height: clamp(452px, 38vw, 540px);
	padding: clamp(36px, 3.6vw, 56px);
	border: 1px solid rgba(18, 20, 26, 0.06);
	border-radius: var(--sclk-radius-card);
	color: var(--sclk-ink-alt);
}

.sclk-card--sand {
	background: var(--sclk-sand);
}

.sclk-card--stone {
	background: var(--sclk-stone);
}

.sclk-card--sage {
	background: var(--sclk-sage);
}

.sclk-card__eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--sclk-eyebrow-card);
}

.sclk-card__marker {
	display: block;
	flex: 0 0 auto;
	width: 7px;
	height: 7px;
	border-radius: 2px;
	background: var(--sclk-yellow);
}

.sclk-card__title {
	max-width: 19ch;
	margin: 0;
	font-size: clamp(25px, 2.35vw, 33px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.026em;
	text-wrap: pretty;
}

.sclk-card__text {
	max-width: 36ch;
	margin: 0;
	color: var(--sclk-text-soft);
	font-size: 15px;
	line-height: 1.74;
	text-wrap: pretty;
}

/* Illustrations take the card's content width at 4:3, up to 400px tall, so wide
   and squarer artwork carry similar weight. The sizes attribute in
   template-parts/sections/services.php follows these widths. */
.sclk-card__ill {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 400px;
	margin: clamp(20px, 2.4vw, 34px) 0 0;
}

.sclk-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Squarer artwork (flagged in services.php) is drawn 15% larger, into the
   space around its box. A transform leaves the layout unchanged; the extra
   margin keeps the enlarged image clear of the buttons. */
.sclk-card__ill--narrow {
	margin-bottom: 12px;
}

.sclk-card__ill--narrow .sclk-card__img {
	transform: scale(1.15);
}

.sclk-card__btn {
	align-self: end;
	justify-self: start;
}

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

	.sclk-card {
		grid-template-rows: auto auto auto auto auto;
		gap: 18px;
		min-height: 0;
	}

	.sclk-card__ill {
		margin-top: clamp(20px, 2.4vw, 32px);
	}

	.sclk-card > :last-child {
		margin-top: 6px;
	}
}

@media (max-width: 1080px) and (min-width: 701px) {
	.sclk-triptych > .sclk-card:nth-child(3):last-child {
		grid-column: 1 / -1;
		grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
		grid-template-rows: minmax(26px, auto) minmax(clamp(60px, 5.6vw, 80px), auto) minmax(60px, auto) auto;
		align-content: start;
		column-gap: clamp(28px, 4vw, 56px);
	}

	.sclk-triptych > .sclk-card:nth-child(3):last-child > * {
		grid-column: 1;
	}

	.sclk-triptych > .sclk-card:nth-child(3):last-child > .sclk-card__ill {
		grid-column: 2;
		grid-row: 1 / -1;
		height: 100%;
		min-height: 190px;
		max-height: none;
		margin: 0;
	}
}

@media (max-width: 700px) {
	.sclk-triptych {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}

	.sclk-card {
		gap: 13px;
		padding: 24px 20px 26px;
	}

	.sclk-card__ill {
		margin-top: 6px;
	}

	.sclk-card__ill--narrow {
		margin-top: 20px;
		margin-bottom: 18px;
	}

	.sclk-card__title {
		font-size: 24px;
	}
}

/* Proactive */

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

.sclk-proactive__panel {
	padding: clamp(28px, 3vw, 52px) clamp(24px, 3vw, 52px) clamp(40px, 4.4vw, 76px);
	border-radius: var(--sclk-radius-panel);
	background: var(--sclk-ink-deep);
	color: #FFFFFF;
}

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

.sclk-proactive__eyebrow {
	margin: 0;
	color: var(--sclk-pa-eyebrow);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
}

.sclk-proactive__brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin-top: 16px;
}

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

.sclk-proactive__word {
	color: #FFFFFF;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.17em;
}

.sclk-proactive__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	align-items: start;
	gap: clamp(26px, 3vw, 56px);
	margin-top: clamp(24px, 2.6vw, 38px);
}

.sclk-proactive__title {
	max-width: 13ch;
	margin: 0;
	font-size: clamp(32px, 4.4vw, 66px);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.028em;
	text-wrap: pretty;
}

.sclk-proactive__sub {
	max-width: 440px;
	margin: 20px 0 0;
	color: var(--sclk-pa-sub);
	font-size: 19px;
	line-height: 1.5;
	letter-spacing: -0.012em;
}

.sclk-proactive__text {
	max-width: 440px;
	margin: 14px 0 0;
	color: var(--sclk-pa-text);
	font-size: 15.5px;
	line-height: 1.7;
}

.sclk-proactive__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}

.sclk-frame {
	position: relative;
	padding: clamp(14px, 1.4vw, 22px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--sclk-radius-md);
	background: #0E1118;
}

.sclk-frame__screen {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	background: #05070C;
	overflow: hidden;
}

.sclk-frame__poster {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sclk-frame__play {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	padding: clamp(18px, 2vw, 30px);
	background: linear-gradient(180deg, rgba(5, 7, 12, 0) 45%, rgba(5, 7, 12, 0.55) 100%);
	color: #FFFFFF;
	text-align: left;
}

.sclk-frame__play:hover {
	color: #FFFFFF;
}

.sclk-frame__play:focus-visible {
	outline-offset: -4px;
}

.sclk-frame__play-row {
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.4vw, 20px);
}

.sclk-frame__dot,
.sclk-frame__soon-dot {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: clamp(52px, 4.4vw, 66px);
	height: clamp(52px, 4.4vw, 66px);
	border-radius: 50%;
}

.sclk-frame__dot {
	background: var(--sclk-purple);
	box-shadow: 0 10px 26px rgba(91, 75, 214, 0.45);
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.sclk-frame__play:hover .sclk-frame__dot {
	background: var(--sclk-purple-hover);
	transform: scale(1.06);
}

.sclk-frame__tri,
.sclk-frame__soon-tri {
	display: block;
	width: 0;
	height: 0;
	margin-left: 4px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 16px solid #FFFFFF;
}

.sclk-frame__label {
	color: #FFFFFF;
	font-size: clamp(15px, 1.5vw, 19px);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.014em;
}

.sclk-frame__soon {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.sclk-frame__soon-inner {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 20px 20px 50px;
	background: linear-gradient(180deg, rgba(5, 7, 12, 0.18) 40%, rgba(5, 7, 12, 0.62) 100%);
	text-align: center;
}

.sclk-frame__soon-dot {
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(91, 75, 214, 0.34);
}

.sclk-frame__soon-tri {
	border-left-color: rgba(255, 255, 255, 0.72);
}

.sclk-frame__soon-text {
	margin: 0;
	color: #FFFFFF;
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: -0.012em;
}

.sclk-frame__bar {
	position: absolute;
	right: clamp(14px, 1.4vw, 20px);
	bottom: clamp(12px, 1.2vw, 18px);
	left: clamp(14px, 1.4vw, 20px);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 12px;
}

.sclk-frame__track {
	flex: 1 1 auto;
	height: 3px;
	border-radius: var(--sclk-radius-pill);
	background: rgba(255, 255, 255, 0.18);
}

.sclk-frame__time {
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.6);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

@media (max-width: 820px) {
	.sclk-proactive__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 700px) {
	.sclk-proactive__title {
		line-height: 1.08;
	}

	.sclk-frame__bar {
		display: none;
	}

	.sclk-frame__soon-inner {
		gap: 12px;
		padding: 16px;
	}
}

/* Describe the problem */

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

.sclk-ask {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: clamp(32px, 4vw, 68px);
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(32px, 3.4vw, 58px) clamp(26px, 3.2vw, 52px);
	overflow: hidden;
	border-radius: var(--sclk-radius-panel);
	background: #0F1118;
	color: var(--sclk-on-dark);
}

/* The photograph is cropped from its top-left, enlarged and shown in black and
   white, under a shade that keeps both columns readable. */
.sclk-ask__img {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left top;
	transform: scale(1.35);
	filter: grayscale(1) contrast(1.08);
}

.sclk-ask__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(105deg, rgba(12, 14, 20, 0.84) 0%, rgba(12, 14, 20, 0.78) 30%, rgba(12, 14, 20, 0.58) 52%, rgba(12, 14, 20, 0.76) 100%);
}

.sclk-ask__intro,
.sclk-ask__form {
	position: relative;
	z-index: 2;
}

.sclk-ask :focus-visible {
	outline-color: var(--sclk-on-dark);
}

.sclk-ask__eyebrow {
	color: var(--sclk-yellow);
	font-weight: 600;
}

.sclk-ask__title {
	max-width: 16ch;
	margin: 16px 0 0;
	font-size: clamp(28px, 3.1vw, 45px);
	font-weight: 500;
	line-height: 1.06;
	letter-spacing: -0.028em;
	text-wrap: balance;
}

.sclk-ask__text {
	max-width: 34ch;
	margin: 12px 0 0;
	color: #D6D7D4;
	font-size: 16.5px;
	line-height: 1.7;
	text-wrap: pretty;
}

.sclk-ask__form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: clamp(20px, 2vw, 26px);
	border: 1px solid rgba(247, 246, 242, 0.05);
	border-radius: 20px;
	background: rgba(12, 14, 20, 0.52);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

html:not(.sclk-js) .sclk-ask__chips {
	display: none;
}

.sclk-ask__chips-label {
	margin: 0;
	color: #B4B6B2;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -0.008em;
}

.sclk-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 11px;
}

.sclk-chip {
	min-height: 40px;
	padding: 9px 15px;
	border: 1px solid rgba(247, 246, 242, 0.11);
	border-radius: var(--sclk-radius-pill);
	background: rgba(247, 246, 242, 0.05);
	color: #D9DAD6;
	font-family: var(--sclk-font);
	font-size: 13.5px;
	font-weight: 400;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.sclk-chip:hover,
.sclk-chip[aria-pressed="true"] {
	border-color: rgba(242, 239, 0, 0.5);
	background: rgba(242, 239, 0, 0.14);
	color: #FFFFFF;
}

.sclk-ask__field {
	display: block;
}

.sclk-ask__label {
	display: block;
	margin-bottom: 8px;
	color: var(--sclk-on-dark);
	font-size: 14.5px;
	font-weight: 600;
	letter-spacing: -0.008em;
}

.sclk-ask__textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid rgba(247, 246, 242, 0.13);
	border-radius: var(--sclk-radius-sm);
	outline: none;
	background: rgba(247, 246, 242, 0.05);
	color: #FFFFFF;
	font-family: var(--sclk-font);
	font-size: 15px;
	line-height: 1.5;
	resize: vertical;
}

.sclk-ask__textarea::placeholder {
	color: var(--sclk-placeholder);
	opacity: 1;
}

.sclk-ask__textarea:focus {
	border-color: var(--sclk-yellow);
}

.sclk-ask__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	margin-top: -6px;
}

.sclk-ask__hint {
	margin: 10px 0 0;
	color: var(--sclk-on-dark-muted);
	font-size: 13.5px;
	line-height: 1.55;
}

@media (max-width: 820px) {
	.sclk-ask {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 700px) {
	.sclk-ask {
		gap: 26px;
		padding: 28px 22px;
	}

	.sclk-chips {
		flex-wrap: nowrap;
		gap: 7px;
		margin: 10px 0 0;
		padding: 2px 34px 4px 0;
		overflow-x: auto;
		-webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 34px), transparent 100%);
		mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 34px), transparent 100%);
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.sclk-chips::-webkit-scrollbar {
		display: none;
	}

	.sclk-chip {
		flex: 0 0 auto;
		min-height: 38px;
		padding: 9px 14px;
		font-size: 13.5px;
		scroll-snap-align: start;
	}

	/* 16px stops phones zooming in when the text box is focused. */
	.sclk-ask__textarea {
		min-height: 96px;
		font-size: 16px;
	}
}

/* How we work */

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

.sclk-standards__panel {
	padding: clamp(40px, 5vw, 88px) clamp(28px, 3.4vw, 64px);
	border-radius: var(--sclk-radius-panel);
	background: var(--sclk-panel);
}

.sclk-standards__eyebrow {
	color: var(--sclk-eyebrow-card);
}

.sclk-standards__title {
	max-width: 26ch;
	margin: 22px 0 0;
	font-size: clamp(33px, 5vw, 76px);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.032em;
}

.sclk-std {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(28px, 3.4vw, 64px);
	margin-top: clamp(34px, 3.6vw, 58px);
}

.sclk-std__col {
	padding-top: 22px;
	border-top: 1px solid rgba(18, 20, 26, 0.16);
}

.sclk-std__head {
	display: flex;
	align-items: baseline;
	gap: 11px;
	margin: 0;
}

.sclk-std__num {
	color: var(--sclk-numeral);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.sclk-std__name {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.018em;
}

.sclk-std__text {
	max-width: 44ch;
	margin: 14px 0 0;
	color: var(--sclk-text-soft);
	font-size: 16.5px;
	line-height: 1.78;
	text-wrap: pretty;
}

.sclk-std__highlight {
	margin: 16px 0 0;
	color: var(--sclk-ink-alt);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
}

@media (max-width: 820px) {
	.sclk-std {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 700px) {
	.sclk-standards__panel {
		padding: 32px 22px;
	}

	.sclk-standards__title {
		font-size: 31px;
		line-height: 1.08;
	}

	.sclk-std {
		gap: 22px;
	}
}

/* FAQ */

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

.sclk-faq__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(28px, 4vw, 64px);
}

.sclk-faq__title {
	max-width: 14ch;
	margin: 0;
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.028em;
	text-wrap: pretty;
}

.sclk-faq__text {
	max-width: 32ch;
	margin: 14px 0 0;
	color: var(--sclk-text);
	font-size: 15.5px;
	line-height: 1.72;
	text-wrap: pretty;
}

.sclk-faq__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sclk-faq__item {
	padding: 4px 22px;
	border-radius: var(--sclk-radius-md);
	background: var(--sclk-surface);
}

.sclk-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.014em;
	cursor: pointer;
}

.sclk-faq__plus {
	flex: 0 0 auto;
	color: var(--sclk-text);
	font-size: 18px;
	font-weight: 600;
	transition: transform 0.3s var(--sclk-ease);
}

.sclk-faq__item[open] .sclk-faq__plus {
	transform: rotate(45deg);
}

.sclk-faq__a {
	max-width: 64ch;
	margin: 0;
	padding: 0 0 20px;
	color: var(--sclk-text);
	font-size: 15.5px;
	line-height: 1.78;
	text-wrap: pretty;
}

@media (max-width: 820px) {
	.sclk-faq__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 700px) {
	.sclk-faq__grid {
		gap: 22px;
	}
}

/* Final call to action */

.sclk-cta {
	padding: 0 0 clamp(48px, 5vw, 72px);
}

.sclk-cta__panel {
	position: relative;
	border-radius: var(--sclk-radius-panel);
	background: var(--sclk-ink);
	overflow: hidden;
}

.sclk-cta__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.sclk-cta__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 12, 18, 0.3), rgba(10, 12, 18, 0.62));
}

.sclk-cta__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
	padding: clamp(56px, 8vw, 132px) clamp(24px, 4vw, 64px);
	color: #FFFFFF;
	text-align: center;
}

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

.sclk-cta__title {
	max-width: 20ch;
	margin: 0;
	font-size: clamp(34px, 4.6vw, 66px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.032em;
	text-wrap: balance;
}

.sclk-cta__text {
	max-width: 44ch;
	margin: 0;
	color: #E4E6EA;
	font-size: 17.5px;
	line-height: 1.7;
	text-wrap: pretty;
}

.sclk-cta__email {
	margin: 0;
	color: #C8CBD3;
	font-size: 15px;
}

.sclk-cta__email a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	color: #FFFFFF;
	font-weight: 700;
}

.sclk-cta__email a:hover {
	color: #E4E6EA;
}

@media (max-width: 700px) {
	.sclk-cta__img {
		object-position: 22% center;
		transform: scale(1.35);
		transform-origin: 22% center;
	}
}

/* About */

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

.sclk-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	align-items: start;
	gap: clamp(28px, 4vw, 72px);
}

.sclk-about__title {
	max-width: 16ch;
	margin: 18px 0 0;
	font-size: clamp(30px, 3.4vw, 50px);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

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

.sclk-about__text {
	max-width: 56ch;
	margin: 18px 0 0;
	color: var(--sclk-text);
	font-size: 16px;
	line-height: 1.78;
	text-wrap: pretty;
}

.sclk-about__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 26px 40px;
	margin-top: 26px;
}

.sclk-about__fact {
	flex: 1 1 240px;
	margin: 0;
}

.sclk-about__fact-title {
	display: block;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.012em;
}

.sclk-about__fact-text {
	display: block;
	margin-top: 6px;
	color: var(--sclk-text);
	font-size: 15px;
	line-height: 1.6;
}

@media (max-width: 940px) {
	.sclk-hero {
		padding-top: 118px;
	}

	.sclk-hero__bg {
		height: clamp(300px, 52vw, 420px);
	}

	.sclk-trust__lines {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.sclk-trust__lines {
		grid-template-columns: minmax(0, 1fr);
		max-width: 420px;
	}

	.sclk-about__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px;
	}
}

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

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

/* Service card actions: the support request button and the service page link */

.sclk-card__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-self: end;
	gap: 8px 20px;
}

.sclk-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 44px;
	color: var(--sclk-ink-alt);
	font-size: 15px;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgba(18, 20, 26, 0.3);
	text-underline-offset: 4px;
	transition: text-decoration-color 0.3s ease;
}

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

/* 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;
	}
}

