/*
Theme Name: Velora
Theme URI: https://zeniththemes.com/velora/
Author: Zenith Themes
Author URI: https://zeniththemes.com/
Description: Velora is a dark, glass-style SaaS and startup WordPress theme with an animated hero dashboard, a 3D card carousel, picture boxes, showcase cards, pricing tables, an FAQ and a call to action. Every front page section is editable with live preview in the Customizer, and the blog, pages, comments and widgets are fully styled and block editor ready.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 7.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: velora
Tags: one-column, two-columns, right-sidebar, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, threaded-comments, translation-ready, theme-options, block-styles, wide-blocks, rtl-language-support, blog, portfolio

Velora WordPress Theme, (C) 2026 Zenith Themes.
Velora is distributed under the terms of the GNU GPL v2 or later.
*/

/* =========================================================================
   TABLE OF CONTENTS
   01. Design tokens
   02. Base & reset
   03. WordPress core classes & accessibility
   04. Layout helpers
   05. Buttons & forms
   06. Header & navigation
   07. Animated network background
   08. Section headings
   09. Hero & dashboard
   10. Carousel
   11. Picture boxes
   12. Features
   13. Showcase
   14. Pricing
   15. FAQ
   16. Final call to action
   17. Blog, posts & pages
   18. Entry content & blocks
   19. Comments
   20. Widgets & sidebar
   21. Footer
   22. Animations
   23. Responsive
   24. Reduced motion
   ========================================================================= */


/* =========================================================================
   01. Design tokens
   ========================================================================= */

:root {
	--vl-accent: #8b5cf6;
	--vl-accent-rgb: 139, 92, 246;
	--vl-accent-light: #a78bfa;
	--vl-accent-lighter: #c4b5fd;
	--vl-accent-dark: #6d28d9;
	--vl-accent-2: #22c55e;
	--vl-accent-2-rgb: 34, 197, 94;
	--vl-accent-2-light: #4ade80;

	--vl-bg: #0a0a0d;
	--vl-surface: #111116;
	--vl-surface-2: #15151c;
	--vl-glass: rgba(255, 255, 255, 0.045);
	--vl-border: rgba(255, 255, 255, 0.1);
	--vl-border-soft: rgba(255, 255, 255, 0.06);

	--vl-text: #f5f5f7;
	--vl-text-soft: #a6a6b0;
	--vl-text-muted: #8a8a96;
	--vl-heading-soft: #8f8f9b;

	--vl-font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--vl-font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

	--vl-container: 1180px;
	--vl-gutter: 24px;
	--vl-header-height: 76px;

	--vl-radius-sm: 12px;
	--vl-radius-md: 18px;
	--vl-radius-lg: 28px;
	--vl-radius-xl: 36px;

	--vl-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
	--vl-shadow-hover: 0 35px 90px rgba(0, 0, 0, 0.45), 0 0 50px rgba(var(--vl-accent-rgb), 0.12);

	--vl-ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================================
   02. Base & reset
   ========================================================================= */

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

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

body {
	margin: 0;
	background-color: var(--vl-bg);
	background-image:
		radial-gradient(circle at 15% 10%, rgba(var(--vl-accent-rgb), 0.12), transparent 28%),
		radial-gradient(circle at 85% 35%, rgba(var(--vl-accent-2-rgb), 0.06), transparent 25%);
	background-attachment: fixed;
	color: var(--vl-text);
	font-family: var(--vl-font);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body.vl-menu-open {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.6em;
	color: var(--vl-text);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }

p {
	margin: 0 0 1.2em;
}

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

a {
	color: var(--vl-accent-light);
	text-decoration: none;
	transition: color 0.25s ease;
}

a:hover {
	color: var(--vl-accent-lighter);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 2px solid var(--vl-accent-light);
	outline-offset: 3px;
}

button {
	font: inherit;
}

hr {
	height: 1px;
	margin: 2.5em 0;
	border: 0;
	background: var(--vl-border);
}

code,
kbd,
pre,
samp {
	font-family: var(--vl-font-mono);
	font-size: 0.9em;
}

pre {
	overflow: auto;
	padding: 1.2em 1.4em;
	border: 1px solid var(--vl-border);
	border-radius: var(--vl-radius-sm);
	background: var(--vl-surface);
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 0.7em 0.9em;
	border-bottom: 1px solid var(--vl-border);
	text-align: start;
}

::selection {
	background: rgba(var(--vl-accent-rgb), 0.4);
	color: #fff;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #09090c;
}

::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: #292933;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--vl-accent);
}


/* =========================================================================
   03. WordPress core classes & accessibility
   ========================================================================= */

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	border: 0;
	white-space: nowrap;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 14px 22px;
	clip: auto !important;
	clip-path: none;
	border-radius: var(--vl-radius-sm);
	background: #fff;
	color: #111;
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
	text-decoration: none;
}

.skip-link:focus {
	position: fixed !important;
}

.alignleft {
	float: left;
	margin: 0.4em 1.6em 1em 0;
}

.alignright {
	float: right;
	margin: 0.4em 0 1em 1.6em;
}

.aligncenter {
	display: block;
	clear: both;
	margin-right: auto;
	margin-left: auto;
}

.wp-caption {
	max-width: 100%;
	margin-bottom: 1.5em;
}

.wp-caption img {
	display: block;
	margin: 0 auto;
}

.wp-caption-text,
.gallery-caption,
.wp-element-caption,
figcaption {
	margin-top: 0.6em;
	color: var(--vl-text-muted);
	font-size: 0.85rem;
	text-align: center;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 12px;
	margin-bottom: 1.5em;
}

.gallery-item {
	margin: 0;
}

.sticky {
	position: relative;
}

.bypostauthor > .comment-body .fn::after {
	content: "\2605";
	margin-inline-start: 6px;
	color: var(--vl-accent-light);
	font-size: 0.8em;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	width: auto;
	max-height: 44px;
}


/* =========================================================================
   04. Layout helpers
   ========================================================================= */

.site {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-content {
	flex: 1 0 auto;
}

.vl-container {
	width: min(calc(100% - var(--vl-gutter) * 2), var(--vl-container));
	margin-inline: auto;
}

.vl-glass {
	border: 1px solid var(--vl-border);
	border-radius: var(--vl-radius-lg);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
	box-shadow: var(--vl-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	-webkit-backdrop-filter: blur(22px) saturate(140%);
	backdrop-filter: blur(22px) saturate(140%);
}

.vl-section {
	position: relative;
	padding: 100px 0;
}

.vl-landing-main [id] {
	scroll-margin-top: calc(var(--vl-header-height) + 20px);
}

.vl-stretched-link,
.vl-stretched-link:hover {
	color: inherit;
}

.vl-stretched-link::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 6;
	border-radius: inherit;
}

.vl-card-number {
	display: block;
	margin-bottom: 8px;
	color: var(--vl-accent-light);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.vl-card-title {
	margin: 0 0 6px;
	color: var(--vl-text);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.vl-price-tag {
	display: inline-flex;
	align-items: center;
	margin-top: 12px;
	padding: 5px 12px;
	border: 1px solid rgba(var(--vl-accent-rgb), 0.35);
	border-radius: 999px;
	background: rgba(var(--vl-accent-rgb), 0.14);
	color: var(--vl-accent-lighter);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.vl-card-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 25px rgba(0, 0, 0, 0.25);
	color: var(--vl-text);
	font-size: 18px;
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	transition: transform 0.4s var(--vl-ease), background-color 0.4s ease, border-color 0.4s ease;
}


/* =========================================================================
   05. Buttons & forms
   ========================================================================= */

.vl-btn,
.wp-block-button__link,
button[type="submit"],
input[type="submit"],
input[type="button"],
input[type="reset"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 50px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--vl-accent), var(--vl-accent-dark));
	box-shadow: 0 10px 35px rgba(var(--vl-accent-rgb), 0.25);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.3s var(--vl-ease), box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, filter 0.3s ease;
}

.vl-btn:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	color: #fff;
	box-shadow: 0 14px 45px rgba(var(--vl-accent-rgb), 0.4);
	filter: brightness(1.08);
	transform: translateY(-2px);
}

.vl-btn-secondary,
.wp-block-button.is-style-outline > .wp-block-button__link {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.04);
	box-shadow: none;
	color: var(--vl-text);
}

.vl-btn-secondary:hover,
.wp-block-button.is-style-outline > .wp-block-button__link:hover {
	border-color: #fff;
	background: #fff;
	box-shadow: 0 10px 35px rgba(255, 255, 255, 0.12);
	color: #0a0a0d;
	filter: none;
}

.vl-btn-sm {
	min-height: 42px;
	padding: 0 18px;
	font-size: 14px;
}

.wp-block-button.is-style-velora-glow > .wp-block-button__link {
	box-shadow: 0 0 0 1px rgba(var(--vl-accent-rgb), 0.5), 0 0 40px rgba(var(--vl-accent-rgb), 0.55);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
select,
textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 16px;
	border: 1px solid var(--vl-border);
	border-radius: var(--vl-radius-sm);
	background: rgba(255, 255, 255, 0.045);
	color: var(--vl-text);
	font-family: inherit;
	font-size: 16px;
	caret-color: var(--vl-accent-light);
	transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

select option {
	background: var(--vl-surface);
	color: var(--vl-text);
}

textarea {
	min-height: 150px;
	resize: vertical;
}

input::placeholder,
textarea::placeholder {
	color: var(--vl-text-muted);
	opacity: 1;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
	border-color: rgba(var(--vl-accent-rgb), 0.55);
	background: rgba(var(--vl-accent-rgb), 0.08);
	box-shadow: 0 0 0 3px rgba(var(--vl-accent-rgb), 0.15);
	outline: none;
}

input[type="checkbox"],
input[type="radio"] {
	accent-color: var(--vl-accent);
}

label {
	display: inline-block;
	margin-bottom: 6px;
	color: var(--vl-text-soft);
	font-size: 14px;
	font-weight: 500;
}

.vl-search-form {
	display: flex;
	gap: 10px;
	width: 100%;
	max-width: 520px;
}

.vl-search-form .search-field {
	flex: 1;
	min-width: 0;
}

.vl-search-form .search-submit {
	flex-shrink: 0;
}


/* =========================================================================
   06. Header & navigation
   ========================================================================= */

.site-header {
	position: relative;
	z-index: 1000;
	border-bottom: 1px solid var(--vl-border-soft);
	transition: box-shadow 0.3s ease;
}

/*
 * The glass effect lives on a pseudo-element. A backdrop-filter on the header
 * itself would turn the header into the containing block of the fixed mobile
 * menu panel, squeezing the open menu into the header's height.
 */
.site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(10, 10, 13, 0.72);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	backdrop-filter: blur(18px) saturate(140%);
	transition: background-color 0.3s ease;
	pointer-events: none;
}

.vl-sticky-header .site-header {
	position: sticky;
	top: 0;
}

.admin-bar.vl-sticky-header .site-header {
	top: 32px;
}

.site-header.is-scrolled {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.site-header.is-scrolled::before {
	background: rgba(10, 10, 13, 0.9);
}

.vl-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--vl-header-height);
}

.site-branding {
	display: flex;
	align-items: center;
	min-width: 0;
}

.site-title {
	margin: 0;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.04em;
}

.site-title a {
	color: var(--vl-text);
}

.site-title a:hover {
	color: #fff;
}

.main-navigation {
	display: flex;
	align-items: center;
}

.vl-menu-panel {
	display: flex;
	align-items: center;
	gap: 28px;
}

.vl-menu,
.vl-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.vl-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 26px;
}

.vl-menu li {
	position: relative;
}

.vl-menu > li {
	display: flex;
	align-items: center;
}

.vl-menu a {
	display: block;
	padding: 8px 0;
	color: var(--vl-text-soft);
	font-size: 14px;
	font-weight: 500;
}

.vl-menu a:hover,
.vl-menu .current-menu-item > a,
.vl-menu .current_page_item > a,
.vl-menu .current-menu-ancestor > a {
	color: #fff;
}

/* WordPress marks every "#section" link on the front page as current; keep them neutral. */
.vl-menu .current-menu-item > a[href*="#"]:not(:hover):not(:focus-visible) {
	color: var(--vl-text-soft);
}

.vl-submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	margin-inline-start: 2px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--vl-text-soft);
	cursor: pointer;
}

/* Larger dropdown toggle on touch screens (tablets in landscape use the desktop menu). */
@media (hover: none) and (pointer: coarse) {
	.vl-submenu-toggle {
		width: 38px;
		height: 38px;
		margin-inline-start: 0;
	}

	.vl-menu {
		column-gap: 16px;
	}
}

.vl-chevron {
	width: 7px;
	height: 7px;
	margin-top: -3px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}

.vl-menu li.is-open > .vl-submenu-toggle .vl-chevron {
	margin-top: 3px;
	transform: rotate(-135deg);
}

.vl-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -18px;
	z-index: 20;
	min-width: 220px;
	padding: 10px;
	border: 1px solid var(--vl-border);
	border-radius: var(--vl-radius-md);
	background: rgba(17, 17, 22, 0.97);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s var(--vl-ease), visibility 0.25s;
}

.vl-menu .sub-menu .sub-menu {
	top: -10px;
	left: 100%;
}

/* Items near the right edge open their nested menus to the left. */
.vl-menu > li:nth-last-child(-n+3) .sub-menu .sub-menu {
	right: 100%;
	left: auto;
}

.vl-menu > li:last-child > .sub-menu {
	right: -18px;
	left: auto;
}

.vl-menu li:hover > .sub-menu,
.vl-menu li:focus-within > .sub-menu,
.vl-menu li.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.vl-menu .sub-menu li {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.vl-menu .sub-menu a {
	flex: 1;
	padding: 9px 12px;
	border-radius: 10px;
}

.vl-menu .sub-menu a:hover {
	background: rgba(255, 255, 255, 0.06);
}

.vl-header-cta:empty {
	display: none;
}

.vl-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--vl-border);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	color: var(--vl-text);
	cursor: pointer;
}

.vl-burger,
.vl-burger::before,
.vl-burger::after,
.vl-burger span {
	display: block;
	width: 18px;
	height: 1.5px;
	border-radius: 2px;
	background: currentColor;
	transition: transform 0.3s var(--vl-ease), opacity 0.2s ease;
}

.vl-burger {
	position: relative;
	background: transparent;
}

.vl-burger::before,
.vl-burger::after {
	content: "";
	position: absolute;
	left: 0;
}

.vl-burger::before {
	top: -6px;
}

.vl-burger::after {
	top: 6px;
}

.main-navigation.is-open .vl-burger span {
	opacity: 0;
}

.main-navigation.is-open .vl-burger::before {
	transform: translateY(6px) rotate(45deg);
}

.main-navigation.is-open .vl-burger::after {
	transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================================
   07. Animated network background
   ========================================================================= */

.vl-network-bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}

.vl-network-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.65;
}

.vl-network-glow {
	position: fixed;
	top: 0;
	left: 0;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(var(--vl-accent-rgb), 0.12) 0%, rgba(var(--vl-accent-rgb), 0.04) 30%, transparent 70%);
	filter: blur(15px);
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.vl-network-active .vl-network-glow {
	opacity: 1;
}


/* =========================================================================
   08. Section headings
   ========================================================================= */

.vl-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--vl-accent-light);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.vl-eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--vl-accent-2);
	box-shadow: 0 0 12px rgba(var(--vl-accent-2-rgb), 0.7);
}

a.vl-eyebrow {
	padding: 5px 0;
}

a.vl-eyebrow:hover {
	color: var(--vl-accent-lighter);
}

.vl-section-heading {
	margin-bottom: 64px;
}

.vl-section-title {
	max-width: 780px;
	margin: 18px 0;
	color: var(--vl-text);
	font-size: clamp(40px, 5vw, 70px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.05em;
}

.vl-section-title span {
	display: block;
	color: var(--vl-heading-soft);
}

.vl-section-text {
	max-width: 560px;
	margin: 0;
	color: var(--vl-text-soft);
	font-size: 18px;
	line-height: 1.65;
}

.vl-centered {
	text-align: center;
}

.vl-centered .vl-section-title,
.vl-centered .vl-section-text {
	margin-right: auto;
	margin-left: auto;
}


/* =========================================================================
   09. Hero & dashboard
   ========================================================================= */

.vl-hero {
	position: relative;
	padding: 110px 0 90px;
	background: radial-gradient(circle at 50% 0%, rgba(var(--vl-accent-rgb), 0.16), transparent 40%);
}

.vl-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
	align-items: center;
	gap: 80px;
}

.vl-hero-simple .vl-hero-grid {
	grid-template-columns: minmax(0, 1fr);
	text-align: center;
}

.vl-hero-simple .vl-hero-content {
	max-width: 860px;
	margin-inline: auto;
}

.vl-hero-simple .vl-hero-actions {
	justify-content: center;
}

.vl-hero-simple .vl-hero-text {
	margin-inline: auto;
}

.vl-hero-content {
	max-width: 650px;
}

.vl-hero-title {
	margin: 22px 0;
	color: #fff;
	font-size: clamp(48px, 5.4vw, 78px);
	font-weight: 600;
	line-height: 0.95;
	letter-spacing: -0.055em;
}

.vl-hero-title span {
	display: block;
	color: var(--vl-heading-soft);
}

.vl-hero-text {
	max-width: 560px;
	margin: 0;
	color: var(--vl-text-soft);
	font-size: 18px;
	line-height: 1.65;
}

.vl-hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 34px;
}

.vl-hero-note {
	margin: 16px 0 0;
	color: var(--vl-text-muted);
	font-size: 13px;
}

.vl-hero-visual {
	perspective: 1200px;
}

.vl-dashboard {
	position: relative;
	overflow: hidden;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 30px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 0 70px rgba(var(--vl-accent-rgb), 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	-webkit-backdrop-filter: blur(24px) saturate(140%);
	backdrop-filter: blur(24px) saturate(140%);
	transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
	transition: transform 0.6s var(--vl-ease), box-shadow 0.4s ease;
}

.vl-dashboard.is-tilting {
	transition: transform 0.15s ease-out, box-shadow 0.4s ease;
}

.vl-dashboard::before,
.vl-dashboard::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.vl-dashboard::before {
	top: -180px;
	left: -100px;
	width: 320px;
	height: 320px;
	background: rgba(var(--vl-accent-rgb), 0.2);
	filter: blur(90px);
}

.vl-dashboard::after {
	right: -100px;
	bottom: -150px;
	width: 260px;
	height: 260px;
	background: rgba(var(--vl-accent-2-rgb), 0.1);
	filter: blur(80px);
}

.vl-dashboard > * {
	position: relative;
	z-index: 2;
}

.vl-dashboard-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--vl-border);
}

.vl-small-label {
	display: block;
	margin-bottom: 4px;
	color: var(--vl-text-muted);
	font-size: 11px;
	letter-spacing: 0.04em;
}

.vl-dashboard-title {
	margin: 0;
	color: var(--vl-text);
	font-size: 19px;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.vl-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border: 1px solid rgba(var(--vl-accent-2-rgb), 0.3);
	border-radius: 999px;
	background: rgba(var(--vl-accent-2-rgb), 0.1);
	color: var(--vl-accent-2-light);
	font-size: 12px;
	font-weight: 600;
}

.vl-status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--vl-accent-2);
	box-shadow: 0 0 0 4px rgba(var(--vl-accent-2-rgb), 0.15), 0 0 12px rgba(var(--vl-accent-2-rgb), 0.8);
	animation: vl-pulse 2s infinite;
}

.vl-dashboard-main {
	padding: 26px 0;
}

.vl-stat-label {
	display: block;
	color: var(--vl-text-muted);
	font-size: 13px;
}

.vl-stat-value {
	display: block;
	margin-top: 6px;
	color: #fff;
	font-size: 44px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	font-variant-numeric: tabular-nums;
}

.vl-stat-note {
	display: block;
	margin-top: 10px;
	color: var(--vl-accent-2-light);
	font-size: 13px;
}

.vl-chart {
	height: 190px;
	margin-top: 26px;
	padding-top: 16px;
	border-top: 1px solid var(--vl-border);
}

.vl-chart-bars {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 9px;
	height: 100%;
}

.vl-chart-bars span {
	flex: 1;
	height: var(--vl-bar-height, 50%);
	min-height: 8px;
	border-radius: 7px 7px 2px 2px;
	background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.72));
	box-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
	transform-origin: bottom center;
	transition: filter 0.25s ease;
}

.vl-chart-bars span:hover {
	filter: drop-shadow(0 0 10px rgba(var(--vl-accent-rgb), 0.8));
}

.js .vl-animations .vl-chart-bars:not(.is-animated) span {
	opacity: 0;
	transform: scaleY(0);
}

.vl-chart-bars.is-animated span {
	animation: vl-chart-grow var(--vl-chart-duration, 1200ms) var(--vl-ease) both;
	animation-delay: var(--vl-bar-delay, 0ms);
}

.vl-dashboard-bottom {
	display: grid;
	grid-auto-columns: minmax(0, 1fr);
	grid-auto-flow: column;
	gap: 10px;
}

.vl-mini-card {
	min-width: 0;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.045);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.vl-mini-card:hover {
	border-color: rgba(var(--vl-accent-rgb), 0.35);
	background: rgba(255, 255, 255, 0.07);
	transform: translateY(-3px);
}

.vl-mini-card span {
	display: block;
	margin-bottom: 4px;
	overflow: hidden;
	color: var(--vl-text-muted);
	font-size: 11px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vl-mini-card strong {
	color: var(--vl-text);
	font-size: 17px;
	font-variant-numeric: tabular-nums;
}

.vl-counter.is-counting {
	animation: vl-number-pop 0.65s var(--vl-ease) both;
}


/* =========================================================================
   10. Carousel
   ========================================================================= */

.vl-carousel-section {
	position: relative;
	padding: 10px 0 40px;
}

.vl-carousel {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 52px;
	align-items: center;
	gap: 18px;
}

.vl-carousel-viewport {
	min-width: 0;
	padding: 14px 0 22px;
}

/* Without JavaScript the cards form a horizontal scroller. */
.vl-carousel-track {
	display: grid;
	grid-auto-columns: calc((100% - 36px) / 3);
	grid-auto-flow: column;
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}

.vl-carousel-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 26px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
	scroll-snap-align: start;
	-webkit-backdrop-filter: blur(22px) saturate(140%);
	backdrop-filter: blur(22px) saturate(140%);
}

.vl-carousel-arrow {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	background: rgba(10, 10, 15, 0.62);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 25px rgba(var(--vl-accent-rgb), 0.08);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.vl-carousel-arrow:hover {
	border-color: rgba(var(--vl-accent-rgb), 0.55);
	background: rgba(var(--vl-accent-rgb), 0.16);
	transform: scale(1.08);
}

.vl-carousel-arrow:active {
	transform: scale(0.96);
}

.vl-carousel-arrow[hidden] {
	display: none;
}

/* Enhanced 3D mode, enabled by main.js. */
.vl-carousel.is-ready .vl-carousel-viewport {
	margin: -20px -12px;
	padding: 34px 12px 42px;
	overflow: hidden;
}

.vl-carousel.is-ready .vl-carousel-track {
	position: relative;
	display: block;
	height: 280px;
	overflow: visible;
	touch-action: pan-y;
}

.vl-carousel.is-ready .vl-carousel-card {
	--vl-offset: 0;
	--vl-card-width: calc((100% - 36px) / 3);
	position: absolute;
	top: 0;
	left: calc(50% - var(--vl-card-width) / 2);
	width: var(--vl-card-width);
	height: 100%;
	opacity: 0;
	transform: translateX(calc(var(--vl-offset) * (100% + 18px))) scale(0.86);
	transition: transform 0.65s var(--vl-ease), opacity 0.5s ease, filter 0.5s ease, border-color 0.4s ease;
	pointer-events: none;
}

.vl-carousel.is-ready .vl-carousel-card.is-near {
	opacity: 0.72;
	transform: translateX(calc(var(--vl-offset) * (100% + 18px))) scale(0.94);
	pointer-events: auto;
}

.vl-carousel.is-ready .vl-carousel-card.is-active {
	z-index: 3;
	border-color: rgba(var(--vl-accent-rgb), 0.45);
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 45px rgba(var(--vl-accent-rgb), 0.14);
	opacity: 1;
	transform: translateX(0) translateY(-8px) scale(1);
	pointer-events: auto;
}

.vl-carousel.is-ready .vl-carousel-card.is-far {
	filter: blur(4px);
}

.vl-carousel.is-ready .vl-carousel-card.no-transition {
	transition: none;
}

.vl-carousel-image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 150px;
	overflow: hidden;
	background: radial-gradient(circle at 50% 30%, rgba(var(--vl-accent-rgb), 0.16), transparent 70%), #0d0d12;
}

.vl-carousel-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--vl-ease);
}

.vl-carousel-image .vl-media-placeholder {
	padding: 10px 24px;
	object-fit: contain;
}

.vl-carousel-card:hover .vl-carousel-image img {
	transform: scale(1.06);
}

.vl-carousel-content {
	padding: 16px 20px;
}

.vl-carousel-content .vl-card-number {
	margin-bottom: 2px;
	font-size: 10px;
}

.vl-carousel-content .vl-card-title {
	margin: 0 0 4px;
	font-size: 17px;
}

.vl-carousel-content p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--vl-text-soft);
	font-size: 13px;
	line-height: 1.45;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.vl-carousel-dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.no-js .vl-carousel-dots,
.no-js .vl-carousel-arrow {
	display: none;
}

.no-js .vl-carousel {
	grid-template-columns: minmax(0, 1fr);
}

.vl-carousel-dot {
	position: relative;
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.22);
	cursor: pointer;
	transition: width 0.35s var(--vl-ease), background-color 0.3s ease;
}

.vl-carousel-dot::before {
	content: "";
	position: absolute;
	inset: -13px -12px;
}

.vl-carousel-dot.is-active {
	width: 26px;
	background: var(--vl-accent-light);
}


/* =========================================================================
   11. Picture boxes
   ========================================================================= */

.vl-pictures-section {
	padding-top: 80px;
}

.vl-picture-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.vl-picture-box {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 340px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--vl-radius-lg);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035) 45%, rgba(var(--vl-accent-rgb), 0.06));
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	isolation: isolate;
	transition: transform 0.5s var(--vl-ease), border-color 0.5s ease, box-shadow 0.5s ease;
}

.vl-picture-box::after {
	content: "";
	position: absolute;
	top: -110px;
	right: -100px;
	z-index: -1;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(var(--vl-accent-rgb), 0.22);
	filter: blur(70px);
	opacity: 0.45;
	transition: opacity 0.5s ease, transform 0.7s var(--vl-ease);
}

.vl-picture-image {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	min-height: 160px;
	padding: 28px 28px 0;
}

.vl-picture-image img {
	display: block;
	width: 100%;
	max-height: 170px;
	object-fit: contain;
	transition: transform 0.7s var(--vl-ease), filter 0.5s ease;
}

.vl-picture-image img:not(.vl-media-placeholder) {
	height: 170px;
	border-radius: var(--vl-radius-md);
	object-fit: cover;
}

.vl-picture-content {
	position: relative;
	z-index: 3;
	padding: 20px 26px 24px;
}

.vl-picture-box.has-link .vl-picture-content {
	padding-inline-end: 80px;
}

.vl-picture-content p {
	margin: 0;
	color: var(--vl-text-soft);
	font-size: 14px;
	line-height: 1.6;
}

.vl-picture-box > .vl-card-arrow {
	position: absolute;
	right: 22px;
	bottom: 24px;
	z-index: 5;
}

.vl-picture-box:hover {
	border-color: rgba(var(--vl-accent-rgb), 0.45);
	box-shadow: var(--vl-shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.16);
	transform: translateY(-8px);
}

.vl-picture-box:hover::after {
	opacity: 0.75;
	transform: scale(1.25);
}

.vl-picture-box:hover .vl-picture-image img,
.vl-showcase-card:hover .vl-showcase-image img {
	filter: brightness(1.06);
	transform: scale(1.05);
}

.vl-picture-box:hover .vl-card-arrow,
.vl-showcase-card:hover .vl-card-arrow {
	border-color: rgba(var(--vl-accent-rgb), 0.45);
	background: rgba(var(--vl-accent-rgb), 0.22);
	transform: translate(3px, -3px);
}


/* =========================================================================
   12. Features
   ========================================================================= */

.vl-feature-list {
	display: grid;
	gap: 14px;
}

.vl-feature-row {
	position: relative;
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr) 48px;
	align-items: center;
	gap: 24px;
	overflow: hidden;
	padding: 32px 34px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--vl-radius-md);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
	transition: transform 0.35s var(--vl-ease), border-color 0.3s ease, box-shadow 0.35s ease;
}

.vl-feature-row::before {
	content: "";
	position: absolute;
	inset: -40%;
	background: radial-gradient(circle at 50% 50%, rgba(var(--vl-accent-rgb), 0.16), transparent 55%);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.vl-feature-row:hover {
	border-color: rgba(var(--vl-accent-rgb), 0.55);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38), 0 0 45px rgba(var(--vl-accent-rgb), 0.1);
	transform: translateY(-4px);
}

.vl-feature-row:hover::before {
	opacity: 1;
}

.vl-feature-number {
	color: var(--vl-accent-light);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.vl-feature-content h3 {
	margin: 0 0 6px;
	color: var(--vl-text);
	font-size: 24px;
	letter-spacing: -0.03em;
	transition: color 0.25s ease;
}

.vl-feature-row:hover h3 {
	color: var(--vl-accent-lighter);
}

.vl-feature-content p {
	max-width: 620px;
	margin: 0;
	color: var(--vl-text-soft);
	font-size: 15px;
}

.vl-feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--vl-border);
	border-radius: 50%;
	color: var(--vl-accent-light);
	transition: transform 0.4s var(--vl-ease), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.vl-feature-row:hover .vl-feature-icon {
	border-color: var(--vl-accent);
	background: var(--vl-accent);
	color: #fff;
	transform: rotate(45deg);
}


/* =========================================================================
   13. Showcase
   ========================================================================= */

.vl-showcase-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.vl-showcase-count-1 {
	grid-template-columns: minmax(0, 1fr);
}

.vl-showcase-count-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vl-showcase-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 600px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--vl-radius-lg);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035) 42%, rgba(var(--vl-accent-rgb), 0.065));
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	isolation: isolate;
	transition: transform 0.5s var(--vl-ease), border-color 0.5s ease, box-shadow 0.5s ease;
}

.vl-showcase-card::after {
	content: "";
	position: absolute;
	top: -120px;
	right: -140px;
	z-index: -1;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(var(--vl-accent-rgb), 0.25);
	filter: blur(90px);
	opacity: 0.45;
	transition: opacity 0.5s ease, transform 0.7s var(--vl-ease);
}

.vl-showcase-image {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	padding: 34px;
	overflow: hidden;
}

.vl-showcase-image img {
	display: block;
	width: 100%;
	max-height: 360px;
	object-fit: contain;
	transition: transform 0.7s var(--vl-ease), filter 0.5s ease;
}

.vl-showcase-image img:not(.vl-media-placeholder) {
	height: 100%;
	border-radius: var(--vl-radius-md);
	object-fit: cover;
}

.vl-showcase-content {
	position: relative;
	z-index: 3;
	padding: 0 30px 30px;
}

.vl-showcase-content .vl-card-title {
	font-size: 24px;
}

.vl-showcase-content p {
	margin: 0;
	color: var(--vl-text-soft);
	font-size: 15px;
	line-height: 1.7;
}

.vl-showcase-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
}

.vl-showcase-footer .vl-price-tag {
	margin-top: 0;
}

.vl-showcase-footer .vl-card-arrow {
	margin-inline-start: auto;
}

.vl-showcase-card:hover {
	border-color: rgba(var(--vl-accent-rgb), 0.45);
	box-shadow: var(--vl-shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.16);
	transform: translateY(-9px);
}

.vl-showcase-card:hover::after {
	opacity: 0.8;
	transform: scale(1.25);
}


/* =========================================================================
   14. Pricing
   ========================================================================= */

.vl-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 18px;
}

.vl-pricing-count-1 {
	grid-template-columns: minmax(0, 420px);
	justify-content: center;
}

.vl-pricing-count-2 {
	grid-template-columns: repeat(2, minmax(0, 420px));
	justify-content: center;
}

.vl-price-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 38px;
	border: 1px solid rgba(var(--vl-accent-rgb), 0.18);
	border-radius: 24px;
	background: linear-gradient(145deg, rgba(10, 10, 15, 0.88), rgba(25, 20, 38, 0.68));
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
	-webkit-backdrop-filter: blur(26px) saturate(145%);
	backdrop-filter: blur(26px) saturate(145%);
	transition: transform 0.35s var(--vl-ease), border-color 0.3s ease, box-shadow 0.35s ease;
}

.vl-price-card::before {
	content: "";
	position: absolute;
	top: -130px;
	right: -100px;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: rgba(var(--vl-accent-rgb), 0.18);
	filter: blur(70px);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.vl-price-card > * {
	position: relative;
}

.vl-price-card:hover {
	border-color: rgba(var(--vl-accent-rgb), 0.7);
	box-shadow: var(--vl-shadow-hover);
	transform: translateY(-8px);
}

.vl-price-card:hover::before,
.vl-price-card.is-featured::before {
	opacity: 1;
}

.vl-price-card.is-featured {
	border-color: rgba(var(--vl-accent-rgb), 0.6);
	background: linear-gradient(145deg, rgba(var(--vl-accent-rgb), 0.16), rgba(12, 12, 17, 0.92));
	box-shadow: 0 30px 85px rgba(0, 0, 0, 0.45), 0 0 55px rgba(var(--vl-accent-rgb), 0.12);
}

.vl-price-card .vl-popular {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 6px 11px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	background: var(--vl-accent-dark);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.vl-price-label {
	margin: 0;
	padding-inline-end: 110px;
	color: var(--vl-text-soft);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.vl-price {
	margin: 22px 0 10px;
	color: #fff;
	font-size: 50px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.05em;
}

.vl-price span {
	color: var(--vl-text-muted);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
}

.vl-price-text {
	min-height: 52px;
	margin: 0;
	color: var(--vl-text-soft);
	font-size: 15px;
}

.vl-price-card .vl-btn {
	width: 100%;
	margin: 24px 0 26px;
}

.vl-price-features {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	color: #c3c3cc;
	font-size: 14px;
	list-style: none;
}

.vl-price-features li {
	position: relative;
	padding-inline-start: 28px;
}

.vl-price-features li::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(var(--vl-accent-2-rgb), 0.15);
}

.vl-price-features li::after {
	content: "";
	position: absolute;
	top: 8px;
	left: 6px;
	width: 6px;
	height: 4px;
	border-bottom: 1.5px solid var(--vl-accent-2-light);
	border-left: 1.5px solid var(--vl-accent-2-light);
	transform: rotate(-45deg);
}


/* =========================================================================
   15. FAQ
   ========================================================================= */

.vl-faq-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	align-items: start;
	gap: 90px;
}

.vl-faq-grid .vl-section-heading {
	margin-bottom: 0;
}

.vl-faq-list {
	display: grid;
	gap: 12px;
}

.vl-faq-item {
	border: 1px solid var(--vl-border);
	border-radius: var(--vl-radius-md);
	background: rgba(255, 255, 255, 0.03);
	transition: border-color 0.3s ease, background-color 0.3s ease;
}

.vl-faq-item[open] {
	border-color: rgba(var(--vl-accent-rgb), 0.45);
	background: rgba(var(--vl-accent-rgb), 0.06);
}

.vl-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 24px;
	border-radius: var(--vl-radius-md);
	color: var(--vl-text);
	font-size: 17px;
	font-weight: 500;
	list-style: none;
	cursor: pointer;
	transition: color 0.25s ease;
}

.vl-faq-item summary::-webkit-details-marker {
	display: none;
}

.vl-faq-item summary:hover {
	color: var(--vl-accent-lighter);
}

.vl-faq-icon {
	position: relative;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border: 1px solid var(--vl-border);
	border-radius: 50%;
	transition: transform 0.3s var(--vl-ease), background-color 0.3s ease, border-color 0.3s ease;
}

.vl-faq-icon::before,
.vl-faq-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 1.5px;
	background: currentColor;
	transform: translate(-50%, -50%);
}

.vl-faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.vl-faq-item[open] .vl-faq-icon {
	border-color: var(--vl-accent);
	background: var(--vl-accent);
	color: #fff;
	transform: rotate(45deg);
}

.vl-faq-answer {
	padding: 0 24px 22px;
	color: var(--vl-text-soft);
	font-size: 15px;
}

.vl-faq-answer p:last-child {
	margin-bottom: 0;
}


/* =========================================================================
   16. Final call to action
   ========================================================================= */

.vl-final-cta {
	padding: 30px 0 120px;
}

.vl-final-box {
	position: relative;
	overflow: hidden;
	padding: 100px 40px;
	border: 1px solid rgba(var(--vl-accent-rgb), 0.55);
	border-radius: var(--vl-radius-xl);
	background: linear-gradient(145deg, rgba(10, 10, 15, 0.94), rgba(24, 18, 38, 0.88));
	box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5), 0 0 70px rgba(var(--vl-accent-rgb), 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.07);
	text-align: center;
	transition: transform 0.35s var(--vl-ease), border-color 0.3s ease, box-shadow 0.35s ease;
}

.vl-final-box::before {
	content: "";
	position: absolute;
	top: -220px;
	left: 50%;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(var(--vl-accent-rgb), 0.2);
	filter: blur(100px);
	transform: translateX(-50%);
	pointer-events: none;
}

.vl-final-box::after {
	content: "";
	position: absolute;
	right: -120px;
	bottom: -150px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(var(--vl-accent-2-rgb), 0.1);
	filter: blur(60px);
	pointer-events: none;
}

.vl-final-box > * {
	position: relative;
	z-index: 2;
}

.vl-final-box:hover {
	border-color: rgba(var(--vl-accent-rgb), 0.9);
}

.vl-final-box .vl-section-heading {
	margin-bottom: 30px;
}

.vl-final-box .vl-section-title {
	max-width: 820px;
	font-size: clamp(44px, 6.5vw, 82px);
	line-height: 0.95;
}

.vl-final-box .vl-section-title span {
	color: var(--vl-accent-light);
}


/* =========================================================================
   17. Blog, posts & pages
   ========================================================================= */

.site-main {
	position: relative;
}

.vl-content-area {
	padding: 80px 0 110px;
}

.has-sidebar .vl-content-area {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	align-items: start;
	gap: 56px;
}

.no-sidebar .vl-content-area .vl-main-column {
	max-width: 860px;
	margin-inline: auto;
}

.no-sidebar .vl-content-area.vl-full-width .vl-main-column {
	max-width: 1180px;
}

.vl-landing-main .vl-content-area {
	padding: 0;
}

.vl-page-header {
	margin-bottom: 48px;
}

.vl-page-title {
	margin: 14px 0 0;
	color: #fff;
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.045em;
	overflow-wrap: anywhere;
}

.vl-page-title span {
	color: var(--vl-accent-light);
}

.vl-archive-description {
	max-width: 640px;
	margin-top: 16px;
	color: var(--vl-text-soft);
}

.vl-page-header .vl-search-form {
	margin-top: 28px;
}

.vl-post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.vl-post-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: var(--vl-radius-lg);
	transition: transform 0.4s var(--vl-ease), border-color 0.3s ease, box-shadow 0.4s ease;
}

.vl-post-card:hover {
	border-color: rgba(var(--vl-accent-rgb), 0.45);
	box-shadow: var(--vl-shadow-hover);
	transform: translateY(-6px);
}

.vl-post-card.sticky {
	grid-column: 1 / -1;
	border-color: rgba(var(--vl-accent-rgb), 0.5);
}

@media (min-width: 761px) {
	.vl-post-card.sticky {
		flex-direction: row;
	}

	.vl-post-card.sticky > .post-thumbnail {
		flex: 0 0 44%;
		aspect-ratio: auto;
	}

	.vl-post-card.sticky .vl-post-card-body {
		justify-content: center;
		padding: 34px 36px;
	}

	.vl-post-card.sticky .entry-title {
		font-size: 27px;
	}
}

.vl-post-card .post-thumbnail {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.vl-post-card .post-thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--vl-ease);
}

.vl-post-card:hover .post-thumbnail img {
	transform: scale(1.05);
}

.vl-post-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 26px 28px 28px;
}

.vl-post-card .entry-title {
	margin: 8px 0 10px;
	font-size: 23px;
	line-height: 1.25;
	letter-spacing: -0.025em;
	overflow-wrap: anywhere;
}

.vl-post-card .entry-title a {
	color: var(--vl-text);
}

.vl-post-card .entry-title a:hover {
	color: var(--vl-accent-lighter);
}

.vl-post-card .entry-header {
	margin-bottom: 14px;
}

.vl-post-card .entry-summary {
	color: var(--vl-text-soft);
	font-size: 15px;
}

.vl-post-card .entry-summary p {
	margin-bottom: 1em;
}

.vl-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding: 6px 0;
	color: var(--vl-accent-light);
	font-size: 14px;
	font-weight: 600;
}

.vl-read-more-arrow {
	transition: transform 0.3s var(--vl-ease);
}

.vl-read-more:hover .vl-read-more-arrow {
	transform: translateX(4px);
}

.vl-sticky-badge,
.vl-post-type {
	display: inline-flex;
	align-self: flex-start;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(var(--vl-accent-rgb), 0.18);
	color: var(--vl-accent-lighter);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 16px;
	color: var(--vl-text-muted);
	font-size: 13px;
}

.entry-meta a {
	color: var(--vl-text-soft);
}

.entry-meta a:hover {
	color: #fff;
}

.entry-meta > span + span::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	margin-inline-end: 16px;
	border-radius: 50%;
	background: var(--vl-text-muted);
	vertical-align: middle;
}

.entry-meta .updated:not(.published) {
	display: none;
}

.vl-single .vl-page-header .entry-meta {
	margin-top: 20px;
	font-size: 14px;
}

.vl-single .post-thumbnail {
	margin: 0 0 48px;
	overflow: hidden;
	border: 1px solid var(--vl-border);
	border-radius: var(--vl-radius-lg);
}

.vl-single .post-thumbnail img {
	display: block;
	width: 100%;
}

.entry-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid var(--vl-border);
	color: var(--vl-text-muted);
	font-size: 14px;
}

.vl-author-box {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-top: 40px;
	padding: 28px;
}

.vl-author-box .avatar {
	flex-shrink: 0;
	border-radius: 50%;
}

.vl-author-name {
	margin: 0 0 4px;
	font-weight: 600;
}

.vl-author-name a {
	color: var(--vl-text);
}

.vl-author-bio {
	margin: 0;
	color: var(--vl-text-soft);
	font-size: 15px;
}

.post-navigation {
	margin-top: 48px;
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 16px;
}

.post-navigation .nav-next {
	grid-column: 2;
	text-align: end;
}

.post-navigation a {
	display: block;
	height: 100%;
	padding: 22px 24px;
	border: 1px solid var(--vl-border);
	border-radius: var(--vl-radius-md);
	background: var(--vl-glass);
	transition: border-color 0.3s ease, transform 0.3s var(--vl-ease);
}

.post-navigation a:hover {
	border-color: rgba(var(--vl-accent-rgb), 0.5);
	transform: translateY(-3px);
}

.post-navigation .nav-subtitle {
	display: block;
	margin-bottom: 4px;
	color: var(--vl-text-muted);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.post-navigation .nav-title {
	color: var(--vl-text);
	font-weight: 600;
}

.pagination,
.comment-navigation {
	margin-top: 48px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.comment-navigation .nav-links {
	justify-content: space-between;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
	padding: 0 14px;
	border: 1px solid var(--vl-border);
	border-radius: 999px;
	background: var(--vl-glass);
	color: var(--vl-text-soft);
	font-weight: 600;
}

.pagination a.page-numbers:hover {
	border-color: rgba(var(--vl-accent-rgb), 0.5);
	color: #fff;
}

.pagination .page-numbers.current {
	border-color: var(--vl-accent);
	background: var(--vl-accent);
	color: #fff;
}

.page-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 32px;
}

.page-links .post-page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	border: 1px solid var(--vl-border);
	border-radius: 999px;
}

.page-links .post-page-numbers.current {
	border-color: var(--vl-accent);
	background: var(--vl-accent);
	color: #fff;
}

.page-links-title {
	margin-inline-end: 6px;
	color: var(--vl-text-muted);
}

.no-results {
	padding: 48px;
}

.no-results p:last-child {
	margin-bottom: 0;
}

.no-results .vl-search-form {
	margin-top: 20px;
}

.vl-error-404 {
	max-width: 780px;
	margin: 90px auto 120px;
	padding: 80px 40px;
	text-align: center;
}

.vl-error-text {
	max-width: 520px;
	margin: 20px auto 32px;
	color: var(--vl-text-soft);
}

.vl-error-404 .vl-search-form {
	margin-inline: auto;
}

.vl-error-actions {
	margin-top: 28px;
}


/* =========================================================================
   18. Entry content & blocks
   ========================================================================= */

.entry-content {
	color: #d6d6de;
	font-size: 18px;
	line-height: 1.8;
	overflow-wrap: break-word;
}

.entry-content::after {
	content: "";
	display: table;
	clear: both;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.4em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin-top: 1.8em;
	margin-bottom: 0.6em;
}

.entry-content a {
	text-decoration: underline;
	text-decoration-color: rgba(var(--vl-accent-rgb), 0.5);
	text-underline-offset: 3px;
}

.entry-content a.wp-block-button__link {
	text-decoration: none;
}

.entry-content ul,
.entry-content ol {
	padding-inline-start: 1.4em;
}

.entry-content li {
	margin-bottom: 0.4em;
}

.entry-content img {
	border-radius: var(--vl-radius-sm);
}

blockquote,
.wp-block-quote {
	margin: 2em 0;
	padding: 6px 0 6px 26px;
	border-left: 3px solid var(--vl-accent);
	color: var(--vl-text);
	font-size: 1.15em;
	font-style: italic;
}

blockquote cite,
.wp-block-quote cite {
	display: block;
	margin-top: 10px;
	color: var(--vl-text-muted);
	font-size: 0.8em;
	font-style: normal;
}

.wp-block-pullquote {
	padding: 2em 0;
	border-top: 3px solid var(--vl-accent);
	border-bottom: 3px solid var(--vl-accent);
	color: var(--vl-text);
}

.wp-block-pullquote blockquote {
	margin: 0;
	padding: 0;
	border: 0;
}

.wp-block-table table,
.wp-block-table td,
.wp-block-table th {
	border-color: var(--vl-border);
}

.wp-block-table thead {
	border-bottom: 2px solid var(--vl-border);
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background: rgba(255, 255, 255, 0.04);
}

.wp-block-separator {
	border: 0;
	border-top: 1px solid var(--vl-border);
}

.wp-block-code,
.wp-block-preformatted {
	color: var(--vl-text);
}

.wp-block-cover,
.wp-block-image img,
.wp-block-media-text__media img {
	border-radius: var(--vl-radius-md);
}

.wp-block-image.is-style-velora-rounded img {
	border-radius: var(--vl-radius-xl);
}

.wp-block-group.is-style-velora-glass,
.wp-block-column.is-style-velora-glass {
	padding: 2.2em;
	border: 1px solid var(--vl-border);
	border-radius: var(--vl-radius-lg);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
	box-shadow: var(--vl-shadow);
}

.wp-block-search__button {
	margin-inline-start: 10px;
}

.wp-block-latest-posts a,
.wp-block-categories a,
.wp-block-archives a {
	color: var(--vl-text);
}

@media (min-width: 1100px) {
	.no-sidebar .entry-content > .alignwide {
		width: calc(100% + 160px);
		max-width: calc(100vw - 48px);
		margin-left: -80px;
	}
}

.no-sidebar .entry-content > .alignfull {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	transform: translateX(-50%);
}

.has-accent-color { color: var(--vl-accent); }
.has-accent-background-color { background-color: var(--vl-accent); }
.has-accent-light-color { color: var(--vl-accent-light); }
.has-accent-light-background-color { background-color: var(--vl-accent-light); }
.has-green-color { color: var(--vl-accent-2); }
.has-green-background-color { background-color: var(--vl-accent-2); }
.has-base-color { color: var(--vl-bg); }
.has-base-background-color { background-color: var(--vl-bg); }
.has-surface-color { color: var(--vl-surface-2); }
.has-surface-background-color { background-color: var(--vl-surface-2); }
.has-foreground-color { color: var(--vl-text); }
.has-foreground-background-color { background-color: var(--vl-text); }
.has-muted-color { color: var(--vl-text-soft); }
.has-muted-background-color { background-color: var(--vl-text-soft); }

.has-small-font-size { font-size: 14px; }
.has-normal-font-size { font-size: 17px; }
.has-large-font-size { font-size: 24px; }
.has-huge-font-size { font-size: 40px; }


/* =========================================================================
   19. Comments
   ========================================================================= */

.comments-area {
	margin-top: 56px;
	padding: 40px;
}

.comments-title,
.comment-reply-title {
	margin-bottom: 28px;
	font-size: 26px;
}

.comment-reply-title small {
	margin-inline-start: 10px;
	font-size: 14px;
}

.comment-list,
.comment-list .children {
	margin: 0;
	padding: 0;
	list-style: none;
}

.comment-list .children {
	margin-inline-start: 32px;
}

.comment-body {
	margin-bottom: 20px;
	padding: 22px 24px;
	border: 1px solid var(--vl-border);
	border-radius: var(--vl-radius-md);
	background: rgba(255, 255, 255, 0.025);
}

.comment-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px 16px;
	margin-bottom: 12px;
}

.comment-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.comment-author .avatar {
	border-radius: 50%;
}

.comment-author .fn {
	color: var(--vl-text);
	font-style: normal;
	font-weight: 600;
}

.comment-author .says {
	display: none;
}

.comment-metadata {
	font-size: 13px;
}

.comment-metadata a {
	color: var(--vl-text-muted);
}

.comment-content {
	color: #d6d6de;
	font-size: 16px;
	overflow-wrap: anywhere;
}

.reply {
	font-size: 14px;
	font-weight: 600;
}

.comment-awaiting-moderation {
	color: var(--vl-accent-lighter);
	font-size: 14px;
}

.comment-respond {
	margin-top: 32px;
}

.comment-list .comment-respond {
	margin: 0 0 24px;
}

.comment-form {
	display: grid;
	gap: 16px;
}

.comment-form p {
	margin: 0;
}

.comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.comment-form-cookies-consent label {
	margin: 0;
}

.comment-notes,
.logged-in-as {
	color: var(--vl-text-muted);
	font-size: 14px;
}

.no-comments {
	color: var(--vl-text-muted);
}


/* =========================================================================
   20. Widgets & sidebar
   ========================================================================= */

.vl-sidebar {
	display: grid;
	gap: 22px;
}

.vl-sidebar .widget {
	padding: 26px;
	border: 1px solid var(--vl-border);
	border-radius: var(--vl-radius-md);
	background: var(--vl-glass);
}

.widget {
	min-width: 0;
	color: var(--vl-text-soft);
	font-size: 15px;
}

.widget-title,
.widget h2.wp-block-heading {
	margin: 0 0 16px;
	color: var(--vl-text);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
}

.widget ul,
.widget ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget li {
	padding: 7px 0;
	border-bottom: 1px solid var(--vl-border-soft);
}

.widget li:last-child {
	border-bottom: 0;
}

.widget li ul {
	margin-top: 7px;
	padding-inline-start: 14px;
}

.widget a {
	color: var(--vl-text-soft);
}

.widget a:hover {
	color: #fff;
}

.widget .vl-search-form .search-submit {
	padding: 0 16px;
}

.tagcloud a,
.wp-block-tag-cloud a {
	display: inline-block;
	margin: 0 4px 8px 0;
	padding: 4px 12px;
	border: 1px solid var(--vl-border);
	border-radius: 999px;
	font-size: 13px !important;
}

.wp-calendar-table caption {
	margin-bottom: 8px;
	color: var(--vl-text);
}

.wp-calendar-table th,
.wp-calendar-table td {
	padding: 4px;
	text-align: center;
}


/* =========================================================================
   21. Footer
   ========================================================================= */

.site-footer {
	position: relative;
	padding: 72px 0 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(8, 8, 11, 0.92);
	color: var(--vl-text-muted);
}

.vl-footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 48px;
}

.vl-footer-top.has-widgets {
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	gap: 80px;
}

.vl-footer-brand .site-title {
	font-size: 22px;
}

.vl-footer-about p {
	max-width: 340px;
	margin: 12px 0 0;
	color: var(--vl-text-muted);
	font-size: 14px;
}

.vl-footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 40px;
}

.site-footer .widget-title {
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.site-footer .widget li {
	padding: 5px 0;
	border: 0;
}

.vl-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px 30px;
	margin-top: 56px;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	font-size: 13px;
}

.vl-footer-bottom p {
	margin: 0;
}

.site-info a,
.vl-privacy-link a {
	color: var(--vl-text-soft);
}

.vl-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vl-footer-menu a {
	color: var(--vl-text-soft);
}

.vl-footer-menu a:hover,
.site-info a:hover,
.vl-privacy-link a:hover {
	color: #fff;
}


/* =========================================================================
   22. Animations
   ========================================================================= */

.js .vl-animations .vl-reveal {
	transition: opacity 0.8s var(--vl-ease), transform 0.8s var(--vl-ease), border-color 0.3s ease, box-shadow 0.35s ease;
}

.js .vl-animations .vl-reveal:not(.is-visible) {
	opacity: 0;
	transform: translateY(32px);
}

.js .vl-animations .vl-tilt.is-tilting {
	transition: transform 0.15s ease-out, border-color 0.3s ease, box-shadow 0.35s ease;
}

.customize-partial-refreshing .vl-reveal {
	opacity: 1 !important;
	transform: none !important;
}

@keyframes vl-chart-grow {
	from {
		opacity: 0;
		transform: scaleY(0);
	}

	to {
		opacity: 1;
		transform: scaleY(1);
	}
}

@keyframes vl-pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.45;
		transform: scale(0.8);
	}
}

@keyframes vl-number-pop {
	from {
		opacity: 0.2;
		filter: blur(3px);
		transform: translateY(8px) scale(0.97);
	}

	to {
		opacity: 1;
		filter: blur(0);
		transform: none;
	}
}


/* =========================================================================
   23. Responsive
   ========================================================================= */

@media (max-width: 1100px) {
	.vl-hero-grid {
		gap: 44px;
	}

	.vl-dashboard {
		padding: 22px;
	}

	.has-sidebar .vl-content-area {
		grid-template-columns: minmax(0, 1fr);
	}

	.vl-sidebar {
		grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	}
}

@media (max-width: 960px) {
	.vl-hero-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 56px;
	}

	.vl-hero-content {
		max-width: 760px;
	}

	.vl-hero-visual {
		width: 100%;
	}

	.vl-dashboard {
		padding: 28px;
		transform: none;
	}
}

@media (max-width: 1000px) {
	.vl-showcase-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vl-showcase-grid > .vl-showcase-card:nth-child(3):last-child {
		grid-column: 1 / -1;
		min-height: 520px;
	}

	.vl-pricing-grid,
	.vl-pricing-count-2 {
		grid-template-columns: minmax(0, 1fr);
		max-width: 560px;
		margin-inline: auto;
	}

	.vl-faq-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 48px;
	}
}

@media (max-width: 960px) {
	:root {
		--vl-header-height: 68px;
	}

	.vl-menu-toggle {
		display: inline-flex;
	}

	.vl-menu-panel {
		position: fixed;
		top: var(--vl-panel-top, var(--vl-header-height));
		right: 0;
		left: 0;
		bottom: 0;
		display: block;
		padding: 20px var(--vl-gutter) 32px;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		border-bottom: 1px solid var(--vl-border);
		background: var(--vl-bg);
		box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity 0.3s ease, transform 0.3s var(--vl-ease), visibility 0.3s;
	}

	.main-navigation.is-open .vl-menu-panel {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.vl-menu {
		display: block;
	}

	.vl-menu li,
	.vl-menu .sub-menu li {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.vl-menu > li {
		border-bottom: 1px solid var(--vl-border-soft);
	}

	.vl-menu a,
	.vl-menu .current-menu-item > a[href*="#"]:not(:hover):not(:focus-visible) {
		flex: 1;
		padding: 14px 0;
		color: var(--vl-text);
		font-size: 16px;
	}

	.vl-menu .current-menu-item > a:not([href*="#"]),
	.vl-menu .current_page_item > a {
		color: var(--vl-accent-light);
	}

	.vl-submenu-toggle {
		width: 40px;
		height: 40px;
		border: 1px solid var(--vl-border);
	}

	.vl-menu .sub-menu,
	.vl-menu .sub-menu .sub-menu {
		position: static;
		display: none;
		flex-basis: 100%;
		min-width: 0;
		margin: 0 0 12px;
		padding: 4px 0 4px 14px;
		border: 0;
		border-left: 1px solid var(--vl-border);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		transition: none;
	}

	.vl-menu li:hover > .sub-menu,
	.vl-menu li:focus-within > .sub-menu {
		display: none;
	}

	.vl-menu li.is-open > .sub-menu {
		display: block;
	}

	.vl-menu .sub-menu a {
		padding: 10px 12px;
		font-size: 15px;
	}

	.vl-header-cta {
		margin-top: 22px;
	}

	.vl-header-cta .vl-btn {
		width: 100%;
	}

	.no-js .vl-menu-toggle {
		display: none;
	}

	.no-js .vl-header-inner {
		flex-wrap: wrap;
		padding: 12px 0;
	}

	.no-js .vl-menu-panel {
		position: static;
		display: flex;
		flex-wrap: wrap;
		padding: 0;
		overflow: visible;
		border: 0;
		background: none;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.no-js .vl-menu {
		display: flex;
	}

	.no-js .vl-menu > li {
		border: 0;
	}

	.no-js .vl-header-cta {
		margin: 0;
	}
}

@media (max-width: 900px) {
	.vl-picture-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vl-carousel-track {
		grid-auto-columns: calc((100% - 18px) / 2);
	}

	.vl-carousel.is-ready .vl-carousel-card {
		--vl-card-width: calc((100% - 18px) / 1.6);
	}

	.vl-carousel.is-ready .vl-carousel-viewport {
		-webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
		mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
	}

	.vl-footer-top.has-widgets {
		grid-template-columns: minmax(0, 1fr);
		gap: 48px;
	}
}

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

@media (max-width: 760px) {
	:root {
		--vl-gutter: 16px;
	}

	body {
		font-size: 16px;
	}

	.vl-section {
		padding: 80px 0;
	}

	.vl-section-heading {
		margin-bottom: 42px;
	}

	.vl-section-title {
		font-size: clamp(36px, 10vw, 46px);
	}

	.vl-section-text,
	.vl-hero-text {
		font-size: 16px;
	}

	.vl-hero {
		padding: 64px 0 60px;
	}

	.vl-hero-title {
		font-size: clamp(44px, 13vw, 64px);
	}

	.vl-dashboard {
		padding: 20px;
		border-radius: 22px;
	}

	.vl-stat-value {
		font-size: 36px;
	}

	.vl-chart {
		height: 130px;
	}

	.vl-chart-bars {
		gap: 5px;
	}

	.vl-carousel {
		grid-template-columns: 42px minmax(0, 1fr) 42px;
		gap: 8px;
	}

	.vl-carousel-arrow {
		width: 42px;
		height: 42px;
	}

	.vl-carousel-track {
		grid-auto-columns: 85%;
	}

	.vl-carousel.is-ready .vl-carousel-track {
		height: 270px;
	}

	.vl-carousel.is-ready .vl-carousel-card {
		--vl-card-width: 100%;
	}

	.vl-carousel.is-ready .vl-carousel-card.is-near {
		opacity: 0;
		pointer-events: none;
	}

	.vl-carousel.is-ready .vl-carousel-viewport {
		-webkit-mask-image: none;
		mask-image: none;
	}

	.vl-feature-row {
		grid-template-columns: 34px minmax(0, 1fr) 38px;
		gap: 14px;
		padding: 24px 20px;
	}

	.vl-feature-content h3 {
		font-size: 19px;
	}

	.vl-feature-content p {
		font-size: 14px;
	}

	.vl-feature-icon {
		width: 38px;
		height: 38px;
	}

	.vl-price-card {
		padding: 30px 24px;
	}

	.vl-final-cta {
		padding-bottom: 80px;
	}

	.vl-final-box {
		padding: 70px 22px;
		border-radius: 26px;
	}

	.vl-final-box .vl-section-title {
		font-size: clamp(38px, 11vw, 52px);
	}

	.vl-content-area {
		padding: 56px 0 80px;
	}

	.vl-post-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.entry-content {
		font-size: 17px;
	}

	.entry-content table,
	.entry-content .wp-block-table {
		display: block;
		max-width: 100%;
		overflow-x: auto;
	}

	.entry-content .wp-block-table table {
		min-width: 480px;
	}

	.comments-area {
		padding: 26px 20px;
	}

	.comment-list .children {
		margin-inline-start: 14px;
	}

	.post-navigation .nav-links {
		grid-template-columns: minmax(0, 1fr);
	}

	.post-navigation .nav-next {
		grid-column: auto;
	}

	.vl-error-404 {
		margin: 50px auto 80px;
		padding: 56px 22px;
	}

	.vl-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.vl-footer-menu a,
	.site-footer .widget li a,
	.vl-sidebar .widget li a {
		display: inline-block;
		padding: 6px 0;
	}
}

@media (max-width: 640px) {
	.vl-picture-grid,
	.vl-showcase-grid,
	.vl-showcase-count-2 {
		grid-template-columns: minmax(0, 1fr);
	}

	.vl-showcase-grid > .vl-showcase-card:nth-child(3):last-child {
		grid-column: auto;
	}

	.vl-showcase-card {
		min-height: 520px;
	}

	.vl-dashboard-bottom {
		grid-auto-flow: row;
	}

	.vl-mini-card {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
	}

	.vl-mini-card span {
		margin: 0;
	}

	.vl-network-bg {
		display: none;
	}
}

@media (max-width: 600px) {
	.admin-bar.vl-sticky-header .site-header {
		top: 0;
	}
}

@media (max-width: 480px) {
	.vl-hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.vl-hero-actions .vl-btn {
		width: 100%;
	}

	.vl-search-form {
		flex-direction: column;
	}

	.vl-price-label {
		padding-inline-end: 0;
	}

	.vl-price-card .vl-popular {
		position: static;
		align-self: flex-start;
		margin-bottom: 14px;
	}

	.vl-author-box {
		flex-direction: column;
	}
}


/* =========================================================================
   24. Reduced motion
   ========================================================================= */

@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;
		scroll-behavior: auto !important;
	}

	.js .vl-animations .vl-reveal:not(.is-visible) {
		opacity: 1;
		transform: none;
	}

	.vl-network-bg {
		display: none;
	}

	.vl-dashboard {
		transform: none;
	}
}
