.wf-animated-tabs {
	--wf-at-blue: #2d6bf4;
	--wf-at-blue-deep: #1e4fcc;
	--wf-at-blue-soft: #eaf1fe;
	--wf-at-ink: #15192b;
	--wf-at-ink-2: #3a4156;
	--wf-at-chrome: #101319;
	--wf-at-line: #e4e8f0;
	--wf-at-font-display: "Bricolage Grotesque", sans-serif;
	--wf-at-font-body: "Hanken Grotesk", sans-serif;
	width: 100%;
}

.wf-animated-tabs__header {
	margin-bottom: 40px;
}

.wf-animated-tabs__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	padding: 7px 14px;
	border: 1px solid rgba(45, 107, 244, 0.22);
	border-radius: 999px;
	background: var(--wf-at-blue-soft);
	color: var(--wf-at-blue-deep);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.wf-animated-tabs__eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--wf-at-blue);
	animation: wf-animated-tabs-blink 2.4s ease-in-out infinite;
}

@keyframes wf-animated-tabs-blink {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.35;
	}
}

.wf-animated-tabs__heading {
	max-width: 780px;
	margin: 0;
	color: var(--wf-at-ink);
	font-family: var(--wf-at-font-display);
	font-size: clamp(30px, 4.4vw, 52px);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.02em;
}

.wf-animated-tabs__heading em {
	color: var(--wf-at-blue);
	font-style: normal;
}

.wf-animated-tabs__description {
	max-width: 640px;
	margin: 16px 0 0;
	color: var(--wf-at-ink-2);
	font-family: var(--wf-at-font-body);
	font-size: 17px;
	line-height: 1.6;
}

.wf-animated-tabs__frame {
	background: #fff;
	border-radius: 18px;
	border: 1px solid var(--wf-at-line);
	box-shadow: 0 30px 80px rgba(21, 25, 43, 0.1), 0 4px 16px rgba(21, 25, 43, 0.05);
	overflow: hidden;
}

.wf-animated-tabs__chrome {
	display: flex;
	align-items: center;
	gap: 22px;
	height: 46px;
	padding: 0 20px;
	background: var(--wf-at-chrome);
	color: #c8cdda;
	font-size: 13px;
	font-weight: 600;
	border-bottom: 3px solid var(--wf-at-blue);
	overflow: hidden;
	white-space: nowrap;
}

.wf-animated-tabs__logo {
	flex: none;
	width: 26px;
	font-family: var(--wf-at-font-display);
	font-size: 19px;
	font-weight: 800;
	color: #fff;
}

.wf-animated-tabs__nav {
	display: flex;
	gap: 4px;
	min-width: 0;
	overflow: hidden;
}

.wf-animated-tabs__tab {
	display: inline-block;
	border: 0;
	border-radius: 7px;
	background: transparent;
	color: #C8CDDA !important;
	padding: 5px 12px;
	font: inherit;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease;
}

.wf-animated-tabs__tab:hover,
.wf-animated-tabs__tab:focus {
	text-decoration: none;
	color: #fff !important;
}

.wf-animated-tabs__tab.is-active {
	background: #fff;
	color: var(--wf-at-ink) !important;
}

.wf-animated-tabs__tab.is-active:hover,
.wf-animated-tabs__tab.is-active:focus {
	color: var(--wf-at-ink) !important;
}

.wf-animated-tabs__tab:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.wf-animated-tabs__chrome-right {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: none;
	margin-left: auto;
}

.wf-animated-tabs__bell {
	position: relative;
	width: 18px;
	height: 18px;
	opacity: 0.85;
}

.wf-animated-tabs__bell::after {
	content: "8";
	position: absolute;
	top: -7px;
	right: -9px;
	background: #c6f432;
	color: #101319;
	font-size: 9px;
	font-weight: 800;
	border-radius: 999px;
	padding: 1px 5px;
}

.wf-animated-tabs__avatar {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #6b8af0, #2d6bf4);
}

.wf-animated-tabs__panels {
	position: relative;
}

.wf-animated-tabs__panel {
	display: none;
}

.wf-animated-tabs__panel.is-active {
	display: block;
}

.wf-animated-tabs__block {
	width: 100%;
}

.wf-animated-tabs .wf-anim-block {
	position: relative;
	overflow: hidden;
}

.wf-animated-tabs__templates {
	display: none;
}

@media (max-width: 767px) {
	.wf-animated-tabs__chrome {
		flex-wrap: wrap;
		height: auto;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.wf-animated-tabs__nav {
		order: 3;
		flex: 1 1 100%;
		overflow-x: auto;
		padding-bottom: 2px;
	}
}
