:root {
	--bg: #0b0d10;
	--bg2: #0f1217;
	--card: #0e1116;
	--stroke: rgba(255, 255, 255, .08);
	--text: rgba(255, 255, 255, .86);
	--muted: rgba(255, 255, 255, .62);
	--muted2: rgba(255, 255, 255, .45);
	--accent: rgba(120, 160, 210, .9);
	--shadow: 0 22px 60px rgba(0, 0, 0, .55);
	--radius: 18px;
	--focus: rgba(120, 160, 210, .55);
	--focus-ring: 0 0 0 4px rgba(120, 160, 210, .18);
	--header-offset: 96px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-offset);
}

body {
	margin: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
	background: var(--bg);
	color: var(--text);
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}

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

.skip-link {
	position: absolute;
	left: 12px;
	top: 10px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .18);
	background: rgba(0, 0, 0, .65);
	color: var(--text);
	transform: translateY(-160%);
	transition: transform .15s ease;
	z-index: 1000;
}

.skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 2px solid var(--focus);
	outline-offset: 2px;
	box-shadow: var(--focus-ring);
	border-radius: 10px;
}

.bg {
	position: fixed;
	inset: 0;
	z-index: -2;
}

.blob {
	position: absolute;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	filter: blur(60px);
	opacity: .28;
	transform: translate3d(var(0px), var(0px), 0);
	will-change: transform;
}

.blob::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--blob-bg, rgba(120, 160, 210, .45));
	animation: float 10s ease-in-out infinite;
}

.b1 {
	left: -120px;
	top: -80px;
	--blob-bg: rgba(120, 160, 210, .45);
}

.b2 {
	right: -160px;
	bottom: -120px;
	--blob-bg: rgba(220, 220, 220, .18);
}

.b2::before {
	animation-delay: -3s;
}

@keyframes float {

	0%,
	100% {
		transform: translate(0, 0)
	}

	50% {
		transform: translate(30px, -20px)
	}
}

.grain {
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
	mix-blend-mode: overlay;
	opacity: .25;
	z-index: -1;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(14px);
	background: linear-gradient(to bottom, rgba(10, 12, 15, .78), rgba(10, 12, 15, .35));
	border-bottom: 1px solid var(--stroke);
}

.topbar-inner {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--muted);
	min-height: 44px;
}

.brand img {
	width: 35px;
	height: 35px;
}

.brand span {
	font-weight: 650;
	letter-spacing: .04em;
}

.wordmark {
	display: inline-flex;
	align-items: baseline;
	gap: 0;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
}

.wm-base {
	color: #ffffff;
}

.wm-ai {
	background: linear-gradient(90deg,
			rgba(120, 160, 210, .95),
			rgba(175, 210, 255, .92));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 10px 28px rgba(120, 160, 210, .22);
}

.wm-ai {
	text-shadow: 0 10px 28px rgba(120, 160, 210, .28);
}

.brand .wordmark {
	font-size: 22px;
}

@media (max-width: 920px) {
	.brand .wordmark {
		font-size: 20px;
	}
}

.nav {
	justify-self: center;
	display: flex;
	gap: 10px;
	padding: 8px 10px;
	border: 1px solid var(--stroke);
	border-radius: 999px;
	background: rgba(255, 255, 255, .02);
}

.nav a {
	font-size: 14px;
	letter-spacing: .06em;
	color: var(--muted);
	padding: 10px 12px;
	border-radius: 999px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;

	border: 1px solid transparent;
	outline: none;
	box-shadow: none;
	-webkit-tap-highlight-color: transparent;

	transition: color .15s ease, background .15s ease, border-color .15s ease;
}

.nav a:hover {
	color: var(--text);
	background: rgba(255, 255, 255, .03);
}

.nav a.is-active {
	color: var(--text);
	background: rgba(120, 160, 210, .10);
	border: 1px solid rgba(120, 160, 210, .22);
}

.right {
	justify-self: end;
}

.topbar-cta {
	min-height: 44px;
}

.menu-btn {
	display: none;
	justify-self: end;
	min-height: 44px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid var(--stroke);
	background: rgba(255, 255, 255, .02);
	color: var(--text);
	cursor: pointer;
}

.menu-icon {
	display: block;
	width: 18px;
	height: 2px;
	background: rgba(255, 255, 255, .7);
	position: relative;
}

.menu-icon::before,
.menu-icon::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: rgba(255, 255, 255, .7);
}

.menu-icon::before {
	top: -6px;
}

.menu-icon::after {
	top: 6px;
}

.section {
	padding: 88px 0;
	scroll-margin-top: var(--header-offset);
}

.section.alt {
	background: linear-gradient(to bottom, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0));
	border-top: 1px solid var(--stroke);
	border-bottom: 1px solid var(--stroke);
}

.hero {
	padding-top: 74px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 28px;
	align-items: start;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border: 1px solid var(--stroke);
	border-radius: 999px;
	background: rgba(255, 255, 255, .02);
	color: var(--muted);
	font-size: 13px;
}

.pulse {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 0 rgba(120, 160, 210, .25);
	animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(120, 160, 210, .25);
	}

	100% {
		box-shadow: 0 0 0 14px rgba(120, 160, 210, 0);
	}
}

h1 {
	margin: 18px 0 10px;
	font-size: clamp(40px, 4.8vw, 58px);
	line-height: 1.05;
	letter-spacing: -0.02em;
}

.grad {
	background: linear-gradient(90deg, rgba(255, 255, 255, .92), rgba(120, 160, 210, .92));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lead {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.7;
	max-width: 60ch;
}

.trust {
	margin-top: 14px;
	color: var(--muted2);
	font-size: 13px;
	line-height: 1.6;
	max-width: 70ch;
}

.hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid var(--stroke);
	background: rgba(255, 255, 255, .02);
	color: var(--text);
	transition: transform .15s ease, background .15s ease, border-color .15s ease;
	cursor: pointer;
	min-height: 44px;
}

.btn:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, .04);
	border-color: rgba(255, 255, 255, .14);
}

.btn:active {
	transform: translateY(0);
}

.btn.primary {
	background: rgba(120, 160, 210, .14);
	border-color: rgba(120, 160, 210, .28);
}

.btn.primary:hover {
	background: rgba(120, 160, 210, .18);
}

.btn.ghost {
	color: var(--muted);
}

.stats {
	margin-top: 22px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.stat {
	padding: 12px;
	border: 1px solid var(--stroke);
	border-radius: 14px;
	background: rgba(255, 255, 255, .015);
}

.stat .k {
	color: var(--muted2);
	font-size: 12px;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.stat .v {
	margin-top: 6px;
	font-weight: 650;
}

.mono-card {
	border: 1px solid var(--stroke);
	border-radius: var(--radius);
	background: linear-gradient(to bottom, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
	box-shadow: var(--shadow);
	overflow: hidden;
}

.mono-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid var(--stroke);
	background: rgba(0, 0, 0, .18);
}

.dots {
	display: flex;
	gap: 8px;
}

.dots span {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
}

.mono-title {
	font-size: 12px;
	letter-spacing: .18em;
	color: var(--muted);
	text-transform: uppercase;
}

.mono-body {
	padding: 16px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .82);
	min-height: 260px;
	position: relative;
}

.line {
	margin: 4px 0;
}

.dim {
	color: rgba(255, 255, 255, .5);
}

.cursor {
	width: 10px;
	height: 18px;
	background: rgba(255, 255, 255, .55);
	position: absolute;
	left: 16px;
	bottom: 16px;
	animation: blink 1s step-end infinite;
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}

.mono-foot {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-top: 1px solid var(--stroke);
	color: var(--muted);
}

.shield img {
	width: 22px;
	height: 22px;
	opacity: .9;
}

.scroll-hint {
	margin-top: 46px;
	display: inline-flex;
	align-items: center;
	gap: 12px;

	color: var(--muted2);
	font-size: 13px;

	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(0, 0, 0, .18);
	backdrop-filter: blur(10px);

	cursor: pointer;
	transition: transform .15s ease, opacity .25s ease, background .15s ease, border-color .15s ease;
}

.scroll-hint:hover {
	transform: translateY(-1px);
	background: rgba(0, 0, 0, .26);
	border-color: rgba(255, 255, 255, .16);
}

.scroll-hint:active {
	transform: translateY(0);
}

.mouse {
	width: 18px;
	height: 28px;
	border-radius: 999px;
	border: 2px solid rgba(255, 255, 255, .32);
	position: relative;
	display: inline-flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 5px;
}

.wheel {
	width: 4px;
	height: 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .55);
	animation: wheel 1.35s ease-in-out infinite;
}

@keyframes wheel {
	0% {
		transform: translateY(0);
		opacity: .55;
	}

	60% {
		transform: translateY(9px);
		opacity: .95;
	}

	100% {
		transform: translateY(9px);
		opacity: .0;
	}
}

.scroll-hint.is-hidden {
	opacity: 0;
	pointer-events: none;
}

.section-head h2 {
	margin: 0;
	font-size: 30px;
}

.section-head p {
	margin: 10px 0 0;
	color: var(--muted);
	max-width: 70ch;
}

.cards {
	margin-top: 22px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.card {
	padding: 18px;
	border: 1px solid var(--stroke);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .015);
}

.card h3 {
	margin: 0 0 8px;
	font-size: 16px;
}

.card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	align-items: start;
}

.lead2 {
	color: var(--muted);
	line-height: 1.8;
	max-width: 70ch;
}

.list {
	list-style: none;
	padding: 0;
	margin: 18px 0 0;
	display: grid;
	gap: 10px;
}

.list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: var(--muted);
}

.bullet {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(120, 160, 210, .95);
	margin-top: 7px;
	box-shadow:
		0 0 0 3px rgba(120, 160, 210, .14),
		0 2px 8px rgba(120, 160, 210, .18);
}

.note {
	margin-top: 18px;
	padding: 14px;
	border-radius: 14px;
	border: 1px solid rgba(120, 160, 210, .22);
	background: rgba(120, 160, 210, .08);
	color: rgba(255, 255, 255, .78);
}

.panel {
	border: 1px solid var(--stroke);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .015);
	padding: 18px;
}

.panel-title {
	font-weight: 650;
	margin-bottom: 12px;
}

.flow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.node {
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid var(--stroke);
	background: rgba(255, 255, 255, .02);
}

.arrow {
	width: 18px;
	height: 2px;
	background: rgba(255, 255, 255, .22);
	position: relative;
}

.arrow:after {
	content: "";
	position: absolute;
	right: -2px;
	top: -4px;
	width: 10px;
	height: 10px;
	border-right: 2px solid rgba(255, 255, 255, .22);
	border-bottom: 2px solid rgba(255, 255, 255, .22);
	transform: rotate(-45deg);
}

.panel-sub {
	margin-top: 14px;
	color: var(--muted);
	line-height: 1.7;
}

.form {
	margin-top: 18px;
	padding: 18px;
	border: 1px solid var(--stroke);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .012);
}

label {
	display: block;
	margin-bottom: 12px;
}

label span {
	display: block;
	margin-bottom: 8px;
	color: var(--muted2);
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

input,
textarea {
	width: 100%;
	padding: 12px 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(0, 0, 0, .22);
	color: var(--text);
	outline: none;
}

input:focus,
textarea:focus {
	border-color: rgba(120, 160, 210, .35);
	box-shadow: 0 0 0 4px rgba(120, 160, 210, .10);
}

.row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.form-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.form-help {
	margin: 0;
	color: var(--muted2);
	font-size: 13px;
	line-height: 1.6;
}

.form-status {
	margin-top: 12px;
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
	line-height: 1.6;
}

.form-status.ok {
	color: rgba(170, 255, 210, .78);
}

.form-status.err {
	color: rgba(255, 170, 170, .82);
}

.disabled-link {
	display: block;
	padding: 6px 0;
	color: rgba(255, 255, 255, .35);
	cursor: not-allowed;
}

.footer {
	border-top: 1px solid var(--stroke);
	background: rgba(0, 0, 0, .18);
	padding: 34px 0 18px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 14px;
	align-items: start;
}

.footer-brand {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.footer-brand img {
	width: 30px;
	height: 30px;
	opacity: .9;
}

.footer-name {
	font-weight: 750;
	letter-spacing: .04em;
}

.footer-tag {
	color: var(--muted);
	margin-top: 4px;
	max-width: 36ch;
}

.footer-col .footer-h {
	color: rgba(255, 255, 255, .72);
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.footer-col a {
	display: block;
	padding: 6px 0;
	color: var(--muted);
}

.footer-col a:hover {
	color: var(--text);
}

.footer-bottom {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--stroke);
	display: flex;
	justify-content: space-between;
	color: var(--muted2);
	font-size: 13px;
}

.footer-mini a {
	color: var(--muted2);
}

.footer-mini a:hover {
	color: var(--text);
}

.reveal {
	opacity: 1;
	transform: none;
}

.js .reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .7s ease, transform .7s ease;
}

.js .reveal.in {
	opacity: 1;
	transform: translateY(0);
}

.delay-1 {
	transition-delay: .12s;
}

.delay-2 {
	transition-delay: .24s;
}

@media (max-width: 920px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.cards {
		grid-template-columns: 1fr;
	}

	.split {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.row {
		grid-template-columns: 1fr;
	}

	.topbar-inner {
		grid-template-columns: auto 1fr auto;
	}

	.menu-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 46px;
		height: 46px;
		padding: 0;
		border-radius: 14px;
		border: 1px solid rgba(255, 255, 255, .12);
		background: rgba(255, 255, 255, .03);
		box-shadow:
			0 10px 30px rgba(0, 0, 0, .35),
			inset 0 0 0 1px rgba(255, 255, 255, .04);
		cursor: pointer;
		transition: transform .15s ease, background .15s ease, border-color .15s ease;
	}

	.menu-btn:hover {
		transform: translateY(-1px);
		background: rgba(255, 255, 255, .05);
		border-color: rgba(255, 255, 255, .18);
	}

	.menu-btn:active {
		transform: translateY(0);
	}

	.menu-icon {
		width: 18px;
		height: 2px;
		background: rgba(255, 255, 255, .75);
		position: relative;
		transition: background .15s ease;
	}

	.menu-icon::before,
	.menu-icon::after {
		content: "";
		position: absolute;
		left: 0;
		width: 18px;
		height: 2px;
		background: rgba(255, 255, 255, .75);
		transition: transform .18s ease, top .18s ease, opacity .15s ease;
	}

	.menu-icon::before {
		top: -6px;
	}

	.menu-icon::after {
		top: 6px;
	}

	.menu-btn[aria-expanded="true"] .menu-icon {
		background: transparent;
	}

	.menu-btn[aria-expanded="true"] .menu-icon::before {
		top: 0;
		transform: rotate(45deg);
	}

	.menu-btn[aria-expanded="true"] .menu-icon::after {
		top: 0;
		transform: rotate(-45deg);
	}

	body.nav-open::before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, .46);
		backdrop-filter: blur(2px);
		z-index: 45;
	}

	.nav {
		display: flex;
		flex-direction: column;
		gap: 4px;
		position: fixed;
		top: calc(var(--header-offset) + 10px);
		right: 24px;
		left: auto;
		width: min(320px, calc(100% - 48px));
		padding: 10px;
		border-radius: 18px;
		border: 1px solid rgba(255, 255, 255, .12);
		background: rgba(12, 14, 18, .92);
		backdrop-filter: blur(14px);
		box-shadow: 0 26px 70px rgba(0, 0, 0, .60);
		opacity: 0;
		transform: translateY(-10px);
		pointer-events: none;
		z-index: 55;
	}

	body.nav-open .nav {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
		transition: opacity .18s ease, transform .18s ease;
	}

	.nav a {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		padding: 12px 14px;
		min-height: 44px;
		border-radius: 14px;
		letter-spacing: .02em;
		font-size: 15px;
		border: 1px solid transparent;
		background: transparent;
		color: rgba(255, 255, 255, .78);
		transition: background .15s ease, border-color .15s ease, color .15s ease;
	}

	.nav a:hover {
		color: rgba(255, 255, 255, .92);
		background: rgba(255, 255, 255, .05);
		border-color: rgba(255, 255, 255, .08);
	}

	.nav a.is-active {
		color: rgba(255, 255, 255, .95);
		background: rgba(120, 160, 210, .14);
		border-color: rgba(120, 160, 210, .26);
	}

	.nav a.is-active::after {
		display: none !important;
	}
}

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

	* {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.pulse,
	.cursor,
	.blob::before,
	.wheel {
		animation: none !important;
	}

	.scroll-hint {
		transition: none !important;
	}
}

.mono-carousel {
	position: relative;
}

.mono-controls {
	display: flex;
	gap: 8px;
	align-items: center;
}

.icon-btn {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .03);
	color: rgba(255, 255, 255, .82);
	cursor: pointer;
	transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.icon-btn:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, .05);
	border-color: rgba(255, 255, 255, .18);
}

.icon-btn:active {
	transform: translateY(0);
}

.mono-slider {
	overflow: hidden;
	outline: none;
}

.mono-track {
	display: flex;
	width: 100%;
	transform: translateX(calc(var(0) * -100%));
	transition: transform .35s cubic-bezier(.2, .85, .2, 1);
}

.mono-slide {
	width: 100%;
	flex: 0 0 100%;
}

.mono-body {
	min-height: 280px;
}

.mono-dots {
	margin-left: auto;
	display: flex;
	gap: 8px;
	align-items: center;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .22);
	background: rgba(255, 255, 255, .10);
	cursor: pointer;
	transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.dot:hover {
	transform: scale(1.15);
	border-color: rgba(255, 255, 255, .35);
}

.dot.is-active {
	background: rgba(120, 160, 210, .70);
	border-color: rgba(120, 160, 210, .85);
}

.mono-badge {
	position: absolute;
	right: 18px;
	bottom: 18px;
	width: 150px;
	border-radius: 22px;
	padding: 16px 16px 14px;
	background: rgba(120, 160, 210, .14);
	border: 1px solid rgba(120, 160, 210, .28);
	box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
	backdrop-filter: blur(10px);
	display: flex;
	flex-direction: column;
	gap: 6px;
	pointer-events: none;
}

.mono-badge-big {
	font-size: 44px;
	font-weight: 780;
	letter-spacing: -0.03em;
	line-height: 1;
	color: rgba(255, 255, 255, .92);
}

.mono-badge-small {
	font-size: 13px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .70);
	line-height: 1.25;
}

@media (max-width: 420px) {
	.mono-badge {
		width: 130px;
		right: 12px;
		bottom: 12px;
	}

	.mono-badge-big {
		font-size: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mono-track {
		transition: none !important;
	}
}

#about {
	--anchor-extra: -4rem;
}

#contacts {
	--anchor-extra: -1.2rem;
}

#about,
#contacts {
	scroll-margin-top: calc(var(--header-offset) + var(--anchor-extra));
}

.footer-brand-social {
	margin-top: 10%;
	display: flex;
	align-items: center;
	gap: 10px;
}

.social-pill {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .10);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .60);
	transition: background .15s ease, color .15s ease;
}

.social-pill:hover {
	color: rgba(255, 255, 255, .92);
	background: rgba(255, 255, 255, .18);
}

.social-icon {
	width: 20px;
	height: 20px;
	display: block;
	fill: currentColor;
}