:root {
	--fr-text: #070b22;
	--fr-muted: #35436a;
	--fr-line: rgba(33, 120, 255, 0.16);
	--fr-soft: rgba(244, 250, 255, 0.78);
	--fr-blue: #116dff;
	--fr-cyan: #15d5dc;
	--fr-violet: #6948ff;
	--fr-shadow-soft: 0 22px 70px rgba(26, 68, 160, 0.12);
	--fr-shadow-glow: 0 18px 55px rgba(21, 213, 220, 0.18), 0 10px 36px rgba(105, 72, 255, 0.12);
}

body {
	background:
		radial-gradient(circle at 88% 8%, rgba(21, 213, 220, 0.18), transparent 32rem),
		radial-gradient(circle at 16% 72%, rgba(105, 72, 255, 0.12), transparent 34rem),
		linear-gradient(135deg, #fbfdff 0%, #f8fbff 42%, #eef8ff 100%);
	color: var(--fr-text);
	-webkit-font-smoothing: antialiased;
	text-rendering: geometricPrecision;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(17, 109, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(17, 109, 255, 0.05) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.fr-navwrap {
	position: sticky;
	top: 0;
	z-index: 40;
	max-width: none !important;
	margin: 0 !important;
	padding: 10px 22px !important;
	background: rgba(251, 253, 255, 0.9);
	border-bottom: 1px solid var(--fr-line);
	backdrop-filter: blur(18px) saturate(150%);
}

.fr-navinner {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between;
	max-width: 1180px;
	margin: 0 auto;
	gap: 18px;
}

.fr-navinner > div {
	display: flex !important;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	min-width: 0;
}

.fr-navactions {
	display: inline-flex;
	align-items: center;
	justify-self: end;
	gap: 8px;
}

.fr-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	justify-self: start;
	text-decoration: none;
}

.fr-nav {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	justify-self: center;
	justify-content: center;
	padding: 4px;
	border: 1px solid rgba(17, 109, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 10px 30px rgba(17, 109, 255, 0.06);
}

.fr-brand,
.fr-nav a,
.fr-social,
.fr-lang a {
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.fr-brand {
	color: var(--fr-text);
	font-family: "spline-sans-mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.fr-brand:hover {
	color: var(--fr-blue);
	text-decoration: none;
}

.fr-brand-logo {
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	object-fit: cover;
	object-position: center;
	background: #07101f;
	box-shadow: 0 0 0 1px rgba(17, 109, 255, 0.18), 0 0 28px rgba(21, 213, 220, 0.22);
}

.fr-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	color: var(--fr-text);
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(17, 109, 255, 0.12);
	border-radius: 999px;
	text-decoration: none;
	transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.fr-social svg {
	width: 17px;
	height: 17px;
}

.fr-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 13px;
	border: 0 !important;
	border-radius: 999px;
	color: #1a2441;
	font-size: 12px;
	font-weight: 750;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.fr-nav a:first-child {
	color: #ffffff;
	background: linear-gradient(90deg, #0c1228, #14337c);
	box-shadow: 0 8px 22px rgba(12, 51, 124, 0.18);
}

.fr-nav a:hover,
.fr-social:hover {
	color: var(--fr-blue);
	background: rgba(235, 247, 255, 0.96);
	border-color: rgba(21, 213, 220, 0.36);
	box-shadow: 0 8px 24px rgba(17, 109, 255, 0.08);
	text-decoration: none;
}

.fr-social:hover {
	transform: translateY(-1px);
}

.wp-block-cover {
	position: relative;
	overflow: hidden;
	box-shadow: var(--fr-shadow-glow);
	border: 1px solid rgba(255, 255, 255, 0.74);
}

.wp-block-cover::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(115deg, rgba(6, 10, 34, 0.48), rgba(5, 16, 54, 0.15) 48%, rgba(21, 213, 220, 0.22)),
		repeating-linear-gradient(90deg, transparent 0 78px, rgba(255, 255, 255, 0.1) 78px 79px);
}

.wp-block-cover__inner-container {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.wp-block-cover h1 {
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
	letter-spacing: 0;
	text-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.wp-block-cover p:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: "spline-sans-mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	color: #dffcff !important;
}

.wp-block-cover p:first-child::after {
	content: "";
	width: 96px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--fr-violet), var(--fr-blue), var(--fr-cyan));
	box-shadow: 0 0 18px rgba(21, 213, 220, 0.58);
}

.wp-block-button__link {
	border: 1px solid rgba(255, 255, 255, 0.48);
	box-shadow: 0 12px 30px rgba(4, 14, 42, 0.16);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 42px rgba(17, 109, 255, 0.18);
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link {
	background: linear-gradient(90deg, var(--fr-violet), var(--fr-blue), var(--fr-cyan));
}

.wp-block-button.is-style-outline .wp-block-button__link {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
}

.wp-block-cover .wp-block-button.is-style-outline .wp-block-button__link {
	color: #ffffff !important;
	border-color: rgba(255, 255, 255, 0.64);
}

.wp-block-cover .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(21, 213, 220, 0.72);
}

.wp-block-cover .wp-block-buttons .wp-block-button:first-child {
	display: none;
}

.wp-block-cover .wp-block-buttons {
	justify-content: center;
}

.entry-content > .wp-block-group {
	max-width: 1180px;
	width: min(1180px, calc(100% - 56px));
	box-sizing: border-box;
	margin-left: auto !important;
	margin-right: auto !important;
}

.home .entry-content {
	display: flex;
	justify-content: center;
}

.home .entry-content > .wp-block-group {
	padding-top: 26px !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.entry-content h2 {
	color: var(--fr-text);
	letter-spacing: -0.01em;
}

.home .entry-content > .wp-block-group > h2 {
	text-align: center;
}

.entry-content > .wp-block-group > .wp-block-group[style*="border-radius:999px"] {
	border: 1px solid rgba(17, 109, 255, 0.14);
	box-shadow: 0 14px 44px rgba(17, 109, 255, 0.08);
}

.wp-block-columns .wp-block-group.has-border-color {
	position: relative;
	overflow: hidden;
	border-color: rgba(17, 109, 255, 0.16) !important;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 255, 0.88)) !important;
	box-shadow: var(--fr-shadow-soft);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wp-block-columns .wp-block-group.has-border-color::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, var(--fr-violet), var(--fr-blue), var(--fr-cyan)) top left / 100% 3px no-repeat,
		radial-gradient(circle at 84% 12%, rgba(21, 213, 220, 0.18), transparent 8rem);
	opacity: 0.84;
}

.wp-block-columns .wp-block-group.has-border-color:hover {
	transform: translateY(-4px);
	border-color: rgba(21, 213, 220, 0.42) !important;
	box-shadow: 0 28px 74px rgba(26, 68, 160, 0.16);
}

.wp-block-columns .wp-block-image img {
	filter: saturate(1.04) contrast(1.02);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.wp-block-columns .wp-block-group p[style*="text-transform:uppercase"] {
	font-family: "spline-sans-mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	color: var(--fr-blue) !important;
}

.wp-block-columns .wp-block-group p a {
	color: var(--fr-blue);
	text-decoration: none;
}

.entry-content > .wp-block-group > .wp-block-group[style*="background-color:#f4f8fd"] {
	border: 1px solid rgba(17, 109, 255, 0.14);
	background:
		linear-gradient(135deg, rgba(244, 250, 255, 0.92), rgba(236, 249, 255, 0.9)),
		radial-gradient(circle at 92% 10%, rgba(21, 213, 220, 0.14), transparent 18rem) !important;
	box-shadow: var(--fr-shadow-soft);
}

.fr-os-cta {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(21, 213, 220, 0.26);
	background:
		linear-gradient(135deg, rgba(7, 11, 34, 0.96), rgba(12, 32, 84, 0.94)),
		radial-gradient(circle at 86% 18%, rgba(21, 213, 220, 0.28), transparent 16rem) !important;
	box-shadow: var(--fr-shadow-glow);
	color: #ffffff;
}

.fr-os-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, var(--fr-violet), var(--fr-blue), var(--fr-cyan)) top left / 100% 3px no-repeat,
		linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
	background-size: 100% 3px, 54px 54px, 54px 54px;
}

.fr-os-cta > * {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.fr-os-cta p:first-child {
	color: #8ff8ff !important;
	font-family: "spline-sans-mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.fr-os-cta h2,
.fr-os-cta p {
	color: #ffffff !important;
}

.fr-os-cta p:not(:first-child) {
	color: rgba(255, 255, 255, 0.78) !important;
}

.fr-os-cta .wp-block-button__link {
	border-color: rgba(255, 255, 255, 0.46);
}

.fr-os-cta .wp-block-buttons {
	justify-content: center;
}

.wp-block-list li {
	margin-bottom: 0.62em;
}

.wp-block-list li::marker {
	color: var(--fr-blue);
}

.fr-foot {
	color: var(--fr-muted);
	border-color: var(--fr-line);
}

@media (max-width: 900px) {
	.fr-navinner {
		display: flex !important;
		flex-direction: column;
		align-items: center !important;
		gap: 12px;
	}

	.fr-navinner > div {
		display: flex !important;
		justify-content: center;
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.fr-brand,
	.fr-navactions {
		justify-self: center;
	}

	.fr-navactions {
		justify-content: center;
	}

	.fr-nav {
		justify-content: center;
		flex-wrap: wrap;
		max-width: 100%;
	}

	.fr-brand,
	.fr-nav a,
	.fr-social,
	.fr-lang a {
		letter-spacing: 0.025em;
	}

	.wp-block-cover {
		border-radius: 22px !important;
		padding: 48px 24px !important;
	}

	.wp-block-cover h1 {
		font-size: 42px !important;
		line-height: 1.04 !important;
	}

	.wp-block-cover p:first-child::after {
		width: 56px;
	}
}

@media (max-width: 560px) {
	body::before {
		background-size: 48px 48px;
	}

	.fr-navwrap {
		padding: 10px 14px !important;
	}

	.fr-brand {
		font-size: 11px;
	}

	.fr-nav a {
		font-size: 11px;
		padding: 0 10px;
	}

	.fr-nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: min(100%, 312px);
	}

	.fr-nav a {
		min-height: 34px;
	}

	.wp-block-cover h1 {
		font-size: 34px !important;
	}

	.entry-content > .wp-block-group {
		width: min(100% - 28px, 1180px);
	}

	.wp-block-buttons {
		width: 100%;
	}

	.wp-block-button,
	.wp-block-button__link {
		width: 100%;
	}
}
