:root {
	--volt-bg: #04070c;
	--volt-surface: rgba(13, 17, 25, 0.76);
	--volt-surface-strong: rgba(10, 14, 20, 0.96);
	--volt-card: rgba(12, 18, 28, 0.78);
	--volt-card-border: rgba(148, 163, 184, 0.16);
	--volt-text: #f8fafc;
	--volt-text-soft: rgba(226, 232, 240, 0.84);
	--volt-text-muted: rgba(148, 163, 184, 0.82);
	--volt-accent: #17b8ff;
	--volt-accent-strong: #2563eb;
	--volt-accent-soft: rgba(37, 99, 235, 0.24);
	--volt-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
	--volt-radius: 28px;
	--volt-radius-sm: 18px;
	--volt-container: min(1500px, calc(100vw - 72px));
	--volt-header-height: 92px;
}

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

html {
	scroll-behavior: smooth;
}

body.volt-body {
	margin: 0;
	color: var(--volt-text);
	background:
		radial-gradient(circle at 12% 18%, rgba(23, 184, 255, 0.12), transparent 28%),
		radial-gradient(circle at 80% 82%, rgba(37, 99, 235, 0.18), transparent 26%),
		linear-gradient(180deg, #030508 0%, #05070b 38%, #04070c 100%);
	font-family: "Manrope", "Segoe UI", sans-serif;
	line-height: 1.65;
	overflow-x: hidden;
}

body.volt-menu-visible,
body.volt-menu-open,
body.volt-menu-hiding-links {
	overflow: hidden;
}

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

img {
	display: block;
	max-width: 100%;
}

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

.volt-container {
	width: var(--volt-container);
	margin: 0 auto;
}

.volt-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	padding: 22px 0;
	background: linear-gradient(180deg, rgba(3, 5, 8, 0.92), rgba(3, 5, 8, 0.3));
	backdrop-filter: blur(18px);
}

.admin-bar .volt-header {
	top: 32px;
}

.volt-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.volt-brand {
	flex: 0 0 auto;
	max-width: 130px;
	position: relative;
	z-index: 102;
	transition: opacity 0.24s ease, transform 0.24s ease;
}

.volt-brand img {
	width: 100%;
	filter: brightness(0) invert(1);
}

.volt-nav {
	margin-left: auto;
}

.volt-nav__shell {
	display: block;
}

.volt-nav__panel-head,
.volt-nav__intro,
.volt-nav__actions {
	display: none;
}

.volt-nav__list {
	display: flex;
	align-items: center;
	gap: 38px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.volt-nav__item a {
	position: relative;
	font-size: 1rem;
	font-weight: 500;
	color: rgba(248, 250, 252, 0.88);
	transition: color 0.2s ease;
}

.volt-nav__item a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--volt-accent), transparent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.volt-nav__item a:hover,
.volt-nav__item a:focus-visible {
	color: #fff;
}

.volt-nav__item a:hover::after,
.volt-nav__item a:focus-visible::after {
	transform: scaleX(1);
}

.volt-nav__item--mobile {
	display: none;
}

.volt-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	cursor: pointer;
	position: relative;
	z-index: 102;
}

.volt-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	background: #f8fafc;
	border-radius: 999px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

body.volt-menu-visible .volt-brand {
	opacity: 0;
	transform: translateY(-6px);
	pointer-events: none;
}

.volt-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 58px;
	padding: 0 26px;
	border-radius: 16px;
	font-family: "Manrope", "Segoe UI", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.volt-button::after {
	content: "→";
	font-size: 1.05rem;
}

.volt-button:hover,
.volt-button:focus-visible {
	transform: translateY(-2px);
}

.volt-button--solid {
	color: #05070b;
	background: #fff;
	box-shadow: 0 18px 40px rgba(255, 255, 255, 0.08);
}

.volt-button--solid:hover,
.volt-button--solid:focus-visible {
	box-shadow: 0 24px 46px rgba(255, 255, 255, 0.12);
}

.volt-button--ghost {
	color: #fff;
	border: 1px solid rgba(248, 250, 252, 0.3);
	background: rgba(255, 255, 255, 0.04);
}

.volt-button--ghost:hover,
.volt-button--ghost:focus-visible {
	border-color: rgba(23, 184, 255, 0.6);
	background: rgba(8, 16, 28, 0.88);
}

.volt-main {
	position: relative;
}

.volt-hero {
	position: relative;
	padding: calc(var(--volt-header-height) + 80px) 0 56px;
	min-height: 100vh;
	display: flex;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
}

.volt-hero__gradient {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 65% 45%, rgba(0, 0, 0, 0.12), transparent 22%),
		radial-gradient(circle at 74% 88%, rgba(37, 99, 235, 0.2), transparent 18%),
		linear-gradient(90deg, rgba(4, 7, 12, 0.98) 0%, rgba(4, 7, 12, 0.9) 42%, rgba(4, 7, 12, 0.28) 100%);
	z-index: -2;
	animation: volt-gradient-breathe 16s ease-in-out infinite alternate;
}

.volt-hero__gradient::before,
.volt-hero__gradient::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	filter: blur(18px);
	pointer-events: none;
}

.volt-hero__gradient::before {
	top: -8%;
	right: -4%;
	width: min(48vw, 760px);
	height: min(48vw, 760px);
	background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, rgba(14, 165, 233, 0.08) 35%, transparent 70%);
	animation: volt-aurora-one 18s ease-in-out infinite alternate;
}

.volt-hero__gradient::after {
	left: -10%;
	bottom: -18%;
	width: min(42vw, 680px);
	height: min(42vw, 680px);
	background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, rgba(37, 99, 235, 0.08) 42%, transparent 72%);
	animation: volt-aurora-two 22s ease-in-out infinite alternate;
}

.volt-hero__mesh {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8%;
	width: 100%;
	opacity: 0.88;
	filter: drop-shadow(0 0 12px rgba(23, 184, 255, 0.34));
	z-index: -1;
	animation: volt-pulse 4.4s ease-in-out infinite, volt-mesh-drift 18s ease-in-out infinite alternate;
	transform-origin: center bottom;
}

.volt-hero__mesh svg {
	display: block;
	width: 100%;
	height: clamp(220px, 22vw, 320px);
}

.volt-hero__layout {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 18px;
}

.volt-hero__content {
	animation: volt-rise 0.8s ease forwards;
	opacity: 0;
}

.volt-eyebrow {
	margin: 0 0 24px;
	color: var(--volt-accent);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.volt-hero h1,
.volt-section h2,
.volt-entry-card__title {
	margin: 0;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1.04;
}

.volt-hero h1 {
	max-width: 760px;
	font-size: clamp(2.45rem, 4vw, 4.35rem);
}

.volt-hero__lead {
	max-width: 760px;
	margin: 30px 0 0;
	color: var(--volt-text-soft);
	font-size: clamp(0.96rem, 1.2vw, 1.22rem);
	line-height: 1.8;
}

.volt-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 42px;
}

.volt-benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 22px 30px;
	margin: 52px 0 0;
	padding: 0;
	list-style: none;
	color: rgba(248, 250, 252, 0.92);
	font-size: 1.05rem;
	font-weight: 600;
}

.volt-benefits li {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.volt-benefits li::before {
	content: "";
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	background-image: var(--volt-benefit-check-icon);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	filter: drop-shadow(0 0 10px rgba(23, 184, 255, 0.28));
}

.volt-reveal {
	opacity: 0;
	filter: blur(8px);
	transform: translate3d(0, 34px, 0);
	transition:
		opacity 0.78s ease,
		transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.78s ease;
	transition-delay: var(--volt-delay, 0s);
	will-change: opacity, transform, filter;
}

.volt-reveal--left {
	transform: translate3d(-42px, 26px, 0);
}

.volt-reveal--right {
	transform: translate3d(42px, 26px, 0);
}

.volt-reveal.is-visible {
	opacity: 1;
	filter: blur(0);
	transform: translate3d(0, 0, 0);
}

.volt-section--problem,
.volt-section--solution {
	overflow: hidden;
}

.volt-section--problem::before,
.volt-section--problem::after,
.volt-section--solution::before,
.volt-section--solution::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}

.volt-section--problem::before {
	background:
		radial-gradient(circle at 84% 18%, rgba(23, 184, 255, 0.07), transparent 22%),
		linear-gradient(180deg, rgba(5, 8, 13, 0.78), rgba(4, 7, 12, 0.98));
}

.volt-section--problem::after {
	inset: auto 0 0;
	height: 240px;
	background:
		linear-gradient(180deg, rgba(4, 7, 12, 0), rgba(4, 7, 12, 0.78)),
		linear-gradient(90deg, rgba(23, 184, 255, 0.06) 1px, transparent 1px),
		linear-gradient(180deg, rgba(23, 184, 255, 0.05) 1px, transparent 1px);
	background-size: auto, 68px 68px, 68px 68px;
	opacity: 0.42;
	mask-image: linear-gradient(180deg, transparent 8%, rgba(0, 0, 0, 0.9) 54%);
}

.volt-problem {
	display: grid;
	grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
	gap: 42px;
	align-items: start;
}

.volt-problem__content > p:not(.volt-eyebrow):not(.volt-problem__highlight),
.volt-solution__content > p:not(.volt-eyebrow) {
	max-width: 620px;
	margin: 24px 0 0;
	color: var(--volt-text-soft);
	font-size: 1.08rem;
}

.volt-problem__highlight {
	display: inline-flex;
	margin: 30px 0 0;
	padding: 14px 20px;
	border: 1px solid rgba(23, 184, 255, 0.18);
	border-radius: 999px;
	background: rgba(7, 16, 28, 0.66);
	color: #fff;
	font-size: 1.05rem;
	font-weight: 700;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

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

.volt-problem-card {
	position: relative;
	min-height: 248px;
	padding: 28px;
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: calc(var(--volt-radius) - 2px);
	background:
		radial-gradient(circle at top right, rgba(23, 184, 255, 0), rgba(23, 184, 255, 0) 44%),
		linear-gradient(180deg, rgba(10, 15, 23, 0.96), rgba(8, 12, 18, 0.9));
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
	transition:
		transform 0.24s ease,
		border-color 0.24s ease,
		box-shadow 0.24s ease,
		background 0.24s ease;
}

.volt-problem-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(circle at 78% 18%, rgba(34, 211, 238, 0.16), transparent 42%);
	opacity: 0;
	transition: opacity 0.24s ease;
	pointer-events: none;
}

.volt-problem-card:hover,
.volt-problem-card:focus-within {
	transform: translateY(-6px);
	border-color: rgba(23, 184, 255, 0.55);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.volt-problem-card:hover::before,
.volt-problem-card:focus-within::before {
	opacity: 1;
}

.volt-problem-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.volt-problem-card__number {
	color: rgba(125, 211, 252, 0.92);
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-shadow: 0 0 18px rgba(23, 184, 255, 0.24);
	animation: volt-number-glow 3.6s ease-in-out infinite;
}

.volt-problem-card__icon,
.volt-solution-note__icon,
.volt-solution-benefit__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--volt-accent);
}

.volt-problem-card__icon {
	width: 46px;
	height: 46px;
	border: 1px solid rgba(23, 184, 255, 0.2);
	border-radius: 15px;
	background: rgba(6, 15, 28, 0.7);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.volt-problem-card:hover .volt-problem-card__icon,
.volt-problem-card:focus-within .volt-problem-card__icon {
	transform: scale(1.05);
	border-color: rgba(23, 184, 255, 0.42);
	box-shadow: 0 0 22px rgba(23, 184, 255, 0.26);
}

.volt-problem-card__icon svg,
.volt-solution-note__icon svg,
.volt-solution-benefit__icon svg {
	width: 22px;
	height: 22px;
}

.volt-problem-card h3,
.volt-solution-benefit h3,
.volt-dashboard h3,
.volt-web-card h3 {
	margin: 0;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.volt-problem-card h3 {
	margin-bottom: 12px;
	font-size: 1.32rem;
	line-height: 1.18;
}

.volt-problem-card p,
.volt-solution-benefit p,
.volt-dashboard__queue li,
.volt-web-card p {
	margin: 0;
	color: var(--volt-text-soft);
	font-size: 0.98rem;
	line-height: 1.72;
}

.volt-section--solution::before {
	background:
		radial-gradient(circle at 74% 34%, rgba(23, 184, 255, 0.14), transparent 18%),
		linear-gradient(180deg, rgba(5, 8, 13, 0.92), rgba(4, 7, 12, 1));
}

.volt-section--solution::after {
	inset: 12% auto auto 6%;
	width: 220px;
	height: 360px;
	background: linear-gradient(180deg, rgba(23, 184, 255, 0.06), rgba(23, 184, 255, 0));
	clip-path: polygon(56% 0, 100% 0, 68% 42%, 86% 42%, 44% 100%, 0 100%, 32% 56%, 14% 56%);
	opacity: 0.16;
	filter: blur(1px);
}

.volt-solution {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	gap: 48px;
	align-items: center;
}

.volt-solution__content h2 {
	max-width: 760px;
}

.volt-solution-note {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	max-width: 580px;
	margin-top: 34px;
	padding: 20px 22px;
	border: 1px solid rgba(23, 184, 255, 0.28);
	border-radius: 24px;
	background: rgba(9, 16, 28, 0.54);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
	backdrop-filter: blur(16px);
}

.volt-solution-note__icon {
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: rgba(23, 184, 255, 0.08);
	box-shadow: 0 0 18px rgba(23, 184, 255, 0.22);
}

.volt-solution-note p {
	margin: 0;
	color: #fff;
	font-size: 1.02rem;
	font-weight: 600;
	line-height: 1.7;
}

.volt-solution__visual {
	position: relative;
}

.volt-system-mockup {
	position: relative;
	min-height: 560px;
	perspective: 1400px;
	transform-style: preserve-3d;
}

.volt-system-mockup__glow {
	position: absolute;
	right: 4%;
	top: 4%;
	width: 64%;
	height: 64%;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, rgba(34, 211, 238, 0.08) 38%, transparent 72%);
	filter: blur(12px);
	pointer-events: none;
}

.volt-system-mockup__line {
	position: absolute;
	left: 19%;
	top: 52%;
	width: 48%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(23, 184, 255, 0.98) 30%, rgba(96, 165, 250, 0.98) 66%, transparent);
	box-shadow: 0 0 16px rgba(23, 184, 255, 0.48);
	transform: rotate(-25deg) scaleX(0.28);
	transform-origin: left center;
	transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
}

.volt-reveal.is-visible .volt-system-mockup__line {
	transform: rotate(-25deg) scaleX(1);
}

.volt-dashboard,
.volt-web-card {
	position: relative;
	border: 1px solid rgba(23, 184, 255, 0.16);
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(8, 14, 22, 0.98), rgba(6, 10, 18, 0.92)),
		radial-gradient(circle at top right, rgba(23, 184, 255, 0.14), transparent 40%);
	box-shadow: 0 34px 84px rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(16px);
	transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.volt-dashboard {
	width: min(100%, 560px);
	margin-left: auto;
	padding: 28px;
}

.volt-system-mockup:hover .volt-dashboard,
.volt-system-mockup:hover .volt-web-card {
	border-color: rgba(23, 184, 255, 0.38);
	box-shadow: 0 40px 92px rgba(0, 0, 0, 0.48);
}

.volt-system-mockup:hover .volt-dashboard {
	transform: rotate3d(0.8, -0.8, 0, 7deg) translate3d(0, -6px, 0);
}

.volt-system-mockup:hover .volt-web-card {
	transform: rotate(-5deg) translate3d(0, -8px, 0);
}

.volt-dashboard__bar,
.volt-dashboard__chart-head,
.volt-dashboard__footer {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.volt-dashboard__label,
.volt-web-card__eyebrow {
	display: inline-flex;
	margin-bottom: 10px;
	color: var(--volt-accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.volt-dashboard h3 {
	font-size: 1.5rem;
}

.volt-dashboard__pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border: 1px solid rgba(23, 184, 255, 0.2);
	border-radius: 999px;
	background: rgba(23, 184, 255, 0.08);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	white-space: nowrap;
}

.volt-dashboard__pill--muted {
	border-color: rgba(148, 163, 184, 0.16);
	background: rgba(255, 255, 255, 0.03);
	color: rgba(226, 232, 240, 0.84);
}

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

.volt-dashboard__metric {
	padding: 18px 16px;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.02);
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.24s ease, background 0.24s ease;
}

.volt-reveal.is-visible .volt-dashboard__metric {
	opacity: 1;
	transform: translateY(0);
}

.volt-reveal.is-visible .volt-dashboard__metric:nth-child(1) { transition-delay: 0.18s; }
.volt-reveal.is-visible .volt-dashboard__metric:nth-child(2) { transition-delay: 0.24s; }
.volt-reveal.is-visible .volt-dashboard__metric:nth-child(3) { transition-delay: 0.30s; }
.volt-reveal.is-visible .volt-dashboard__metric:nth-child(4) { transition-delay: 0.36s; }
.volt-reveal.is-visible .volt-dashboard__metric:nth-child(5) { transition-delay: 0.42s; }

.volt-dashboard__metric:hover {
	border-color: rgba(23, 184, 255, 0.3);
	background: rgba(9, 20, 36, 0.7);
}

.volt-dashboard__metric span {
	display: block;
	color: rgba(226, 232, 240, 0.74);
	font-size: 0.84rem;
}

.volt-dashboard__metric strong {
	display: block;
	margin-top: 10px;
	font-size: 1.58rem;
	line-height: 1;
}

.volt-dashboard__chart {
	margin-top: 18px;
	padding: 22px;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 24px;
	background: rgba(8, 14, 22, 0.72);
}

.volt-dashboard__chart svg {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 18px;
}

.volt-dashboard__chart-line {
	stroke-dasharray: 420;
	stroke-dashoffset: 420;
	transition: stroke-dashoffset 1.45s cubic-bezier(0.22, 1, 0.36, 1) 0.52s;
}

.volt-reveal.is-visible .volt-dashboard__chart-line {
	stroke-dashoffset: 0;
}

.volt-dashboard__footer {
	gap: 18px;
	margin-top: 18px;
}

.volt-dashboard__status,
.volt-dashboard__queue {
	flex: 1;
	padding: 20px;
	border: 1px solid rgba(148, 163, 184, 0.1);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.02);
}

.volt-dashboard__status ul,
.volt-dashboard__queue ul {
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.volt-dashboard__status li,
.volt-dashboard__queue li {
	display: flex;
	align-items: center;
	gap: 10px;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.46s ease, transform 0.46s ease;
}

.volt-dashboard__status li + li,
.volt-dashboard__queue li + li {
	margin-top: 10px;
}

.volt-reveal.is-visible .volt-dashboard__status li,
.volt-reveal.is-visible .volt-dashboard__queue li {
	opacity: 1;
	transform: translateY(0);
}

.volt-reveal.is-visible .volt-dashboard__status li:nth-child(1),
.volt-reveal.is-visible .volt-dashboard__queue li:nth-child(1) {
	transition-delay: 0.48s;
}

.volt-reveal.is-visible .volt-dashboard__status li:nth-child(2),
.volt-reveal.is-visible .volt-dashboard__queue li:nth-child(2) {
	transition-delay: 0.56s;
}

.volt-reveal.is-visible .volt-dashboard__status li:nth-child(3),
.volt-reveal.is-visible .volt-dashboard__queue li:nth-child(3) {
	transition-delay: 0.64s;
}

.volt-dashboard__status-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	box-shadow: 0 0 12px currentColor;
}

.volt-dashboard__status-dot--new { color: #38bdf8; background: #38bdf8; }
.volt-dashboard__status-dot--progress { color: #f59e0b; background: #f59e0b; }
.volt-dashboard__status-dot--done { color: #22c55e; background: #22c55e; }

.volt-reveal.is-visible .volt-dashboard__status-dot {
	animation: volt-status-pulse 1.8s ease-in-out infinite;
}

.volt-web-card {
	position: absolute;
	left: 0;
	bottom: 26px;
	width: min(76%, 408px);
	padding: 24px;
	transform: rotate(-4deg);
}

.volt-web-card__bar {
	display: inline-flex;
	gap: 7px;
	margin-bottom: 18px;
}

.volt-web-card__dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: rgba(226, 232, 240, 0.38);
}

.volt-web-card h3 {
	font-size: 1.46rem;
	line-height: 1.16;
}

.volt-web-card p {
	margin-top: 16px;
}

.volt-web-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.volt-web-card__actions span {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(23, 184, 255, 0.09);
	color: rgba(248, 250, 252, 0.94);
	font-size: 0.84rem;
	font-weight: 700;
}

.volt-solution-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 44px;
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(10, 15, 23, 0.96), rgba(6, 10, 16, 0.92)),
		radial-gradient(circle at top right, rgba(23, 184, 255, 0.12), transparent 36%);
	overflow: hidden;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.volt-solution-benefit {
	position: relative;
	padding: 28px 26px 30px;
	transition: transform 0.24s ease, background 0.24s ease;
}

.volt-solution-benefit + .volt-solution-benefit {
	border-left: 1px solid rgba(148, 163, 184, 0.14);
}

.volt-solution-benefit::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 42%);
	opacity: 0;
	transition: opacity 0.24s ease;
}

.volt-solution-benefit:hover,
.volt-solution-benefit:focus-within {
	transform: translateY(-4px);
}

.volt-solution-benefit:hover::before,
.volt-solution-benefit:focus-within::before {
	opacity: 1;
}

.volt-solution-benefit__icon {
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 15px;
	background: rgba(23, 184, 255, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.volt-solution-benefit:hover .volt-solution-benefit__icon,
.volt-solution-benefit:focus-within .volt-solution-benefit__icon {
	transform: scale(1.06);
	box-shadow: 0 0 24px rgba(23, 184, 255, 0.28);
}

.volt-solution-benefit h3 {
	margin-bottom: 12px;
	font-size: 1.2rem;
	line-height: 1.16;
}

.volt-section--problem::before {
	background:
		radial-gradient(circle at 18% 18%, rgba(23, 184, 255, 0.08), transparent 20%),
		radial-gradient(circle at 78% 34%, rgba(37, 99, 235, 0.12), transparent 22%),
		linear-gradient(180deg, rgba(5, 8, 13, 0.84), rgba(4, 7, 12, 0.98));
}

.volt-section--problem::after {
	inset: auto 0 0;
	height: 260px;
	background:
		linear-gradient(180deg, rgba(4, 7, 12, 0), rgba(4, 7, 12, 0.8)),
		linear-gradient(90deg, rgba(23, 184, 255, 0.05) 1px, transparent 1px),
		linear-gradient(180deg, rgba(23, 184, 255, 0.04) 1px, transparent 1px);
	background-size: auto, 72px 72px, 72px 72px;
	opacity: 0.46;
	mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.92) 44%);
}

.volt-problem {
	display: block;
	position: relative;
}

.volt-problem__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
	gap: clamp(36px, 4vw, 56px);
	align-items: start;
}

.volt-problem__left {
	position: relative;
}

.volt-problem__lead {
	max-width: 620px;
	margin: 24px 0 0;
	color: var(--volt-text-soft);
	font-size: 1.08rem;
	line-height: 1.78;
}

.volt-problem__highlight {
	display: inline-flex;
	max-width: 620px;
	margin: 26px 0 0;
	padding: 14px 18px;
	border: 1px solid rgba(23, 184, 255, 0.22);
	border-radius: 999px;
	background: rgba(7, 16, 28, 0.72);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.volt-problem-counter {
	position: relative;
	max-width: 440px;
	margin-top: 30px;
	padding: 24px 26px;
	border: 1px solid rgba(23, 184, 255, 0.18);
	border-radius: 26px;
	background:
		linear-gradient(180deg, rgba(10, 16, 24, 0.96), rgba(8, 12, 18, 0.92)),
		radial-gradient(circle at top right, rgba(23, 184, 255, 0.16), transparent 40%);
	box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
	overflow: hidden;
}

.volt-problem-counter::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(23, 184, 255, 0.12), transparent 34%, transparent 60%, rgba(37, 99, 235, 0.08));
	opacity: 0.9;
	pointer-events: none;
}

.volt-problem-counter__eyebrow,
.volt-problem-counter__title,
.volt-problem-counter__note,
.volt-problem-counter__value {
	position: relative;
	z-index: 1;
}

.volt-problem-counter__eyebrow {
	display: inline-flex;
	color: var(--volt-accent);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.volt-problem-counter__value {
	display: block;
	margin-top: 10px;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: clamp(2.8rem, 4vw, 4rem);
	font-weight: 800;
	letter-spacing: -0.06em;
	line-height: 0.95;
}

.volt-problem-counter__title {
	margin: 10px 0 0;
	color: #fff;
	font-size: 1.12rem;
	font-weight: 700;
}

.volt-problem-counter__note {
	display: block;
	margin-top: 10px;
	color: var(--volt-text-soft);
	font-size: 0.95rem;
	line-height: 1.6;
}

.volt-problem-mockup {
	position: relative;
	margin-top: 28px;
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(8, 13, 21, 0.98), rgba(5, 8, 13, 0.96)),
		radial-gradient(circle at top right, rgba(23, 184, 255, 0.14), transparent 40%);
	box-shadow: 0 34px 88px rgba(0, 0, 0, 0.44);
	overflow: hidden;
}

.volt-problem-mockup::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 18%, rgba(23, 184, 255, 0.1), transparent 28%);
	pointer-events: none;
}

.volt-problem-mockup__chrome {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
	background: rgba(255, 255, 255, 0.02);
}

.volt-problem-mockup__dots {
	display: inline-flex;
	gap: 8px;
}

.volt-problem-mockup__dots span {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: rgba(226, 232, 240, 0.28);
}

.volt-problem-mockup__url {
	color: rgba(226, 232, 240, 0.72);
	font-size: 0.88rem;
	font-weight: 600;
}

.volt-problem-mockup__status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border: 1px solid rgba(23, 184, 255, 0.22);
	border-radius: 999px;
	background: rgba(23, 184, 255, 0.08);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	box-shadow: 0 0 20px rgba(23, 184, 255, 0.12);
	transition: color 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.volt-problem-mockup__viewport {
	position: relative;
	min-height: 430px;
	padding: 26px;
}

.volt-problem-stage {
	position: absolute;
	inset: 26px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	opacity: 0;
	transform: translate3d(0, 18px, 0) scale(0.985);
	transition: opacity 0.38s ease, transform 0.48s ease;
	pointer-events: none;
}

.volt-problem-stage.is-active {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	pointer-events: auto;
}

.volt-problem-stage__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.volt-problem-stage__label {
	margin: 0 0 8px;
	color: var(--volt-accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.volt-problem-stage h3 {
	margin: 0;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: 1.36rem;
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.14;
}

.volt-problem-stage__cta,
.volt-problem-stage__warning,
.volt-problem-stage__clock,
.volt-problem-stage__status-bad {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 700;
	white-space: nowrap;
}

.volt-problem-stage__cta {
	border: 1px solid rgba(248, 250, 252, 0.16);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(248, 250, 252, 0.78);
}

.volt-problem-stage--inquiries.is-active .volt-problem-stage__cta {
	animation: volt-weak-flash 2.2s ease-in-out infinite;
}

.volt-problem-stage__warning,
.volt-problem-stage__status-bad {
	border: 1px solid rgba(248, 113, 113, 0.2);
	background: rgba(248, 113, 113, 0.08);
	color: #fecaca;
}

.volt-problem-stage__clock {
	border: 1px solid rgba(250, 204, 21, 0.2);
	background: rgba(250, 204, 21, 0.08);
	color: #fde68a;
}

.volt-problem-stage__metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.volt-problem-stage__metric {
	padding: 16px 14px;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.02);
}

.volt-problem-stage__metric span {
	display: block;
	color: rgba(226, 232, 240, 0.7);
	font-size: 0.78rem;
}

.volt-problem-stage__metric strong {
	display: block;
	margin-top: 10px;
	font-size: 1.36rem;
	line-height: 1;
}

.volt-problem-chart {
	margin-top: auto;
	padding: 18px;
	border: 1px solid rgba(148, 163, 184, 0.1);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.02);
}

.volt-problem-chart__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	color: rgba(226, 232, 240, 0.72);
	font-size: 0.82rem;
	font-weight: 600;
}

.volt-problem-chart__legend span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.volt-problem-chart__line {
	display: inline-block;
	width: 18px;
	height: 3px;
	border-radius: 999px;
}

.volt-problem-chart__line--visits {
	background: #22d3ee;
}

.volt-problem-chart__line--inquiries {
	background: #64748b;
}

.volt-problem-chart svg {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 14px;
}

.volt-problem-chart__curve {
	stroke-dasharray: 380;
	stroke-dashoffset: 380;
}

.volt-problem-stage--inquiries.is-active .volt-problem-chart__curve--visits {
	animation: volt-chart-draw 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.volt-problem-stage--inquiries.is-active .volt-problem-chart__curve--inquiries {
	animation: volt-chart-draw 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards;
}

.volt-problem-legacy {
	display: grid;
	gap: 18px;
	padding: 22px;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(70, 85, 105, 0.16), rgba(15, 23, 42, 0.3)),
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 24px, transparent 24px, transparent 48px);
}

.volt-problem-stage--trust.is-active .volt-problem-legacy {
	animation: volt-glitch-shiver 0.42s steps(2, end);
}

.volt-problem-legacy__hero,
.volt-problem-legacy__cta,
.volt-problem-legacy__lines span {
	display: block;
	border-radius: 12px;
	background: rgba(203, 213, 225, 0.14);
}

.volt-problem-legacy__hero {
	height: 110px;
}

.volt-problem-legacy__lines {
	display: grid;
	gap: 10px;
}

.volt-problem-legacy__lines span:nth-child(1) { width: 92%; height: 12px; }
.volt-problem-legacy__lines span:nth-child(2) { width: 86%; height: 12px; }
.volt-problem-legacy__lines span:nth-child(3) { width: 72%; height: 12px; }
.volt-problem-legacy__lines span:nth-child(4) { width: 58%; height: 12px; }

.volt-problem-legacy__cta {
	width: 110px;
	height: 34px;
}

.volt-problem-trust {
	display: grid;
	gap: 14px;
	padding: 18px;
	border: 1px solid rgba(148, 163, 184, 0.1);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.02);
}

.volt-problem-trust__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.volt-problem-trust__item span {
	color: rgba(226, 232, 240, 0.72);
	font-size: 0.84rem;
}

.volt-problem-trust__item strong {
	font-size: 1.18rem;
}

.volt-problem-trust__bar {
	height: 10px;
	border-radius: 999px;
	background: rgba(148, 163, 184, 0.12);
	overflow: hidden;
}

.volt-problem-trust__bar span {
	display: block;
	width: 38%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #f97316, #ef4444);
	transform-origin: left center;
	transform: scaleX(0.82);
}

.volt-problem-stage--trust.is-active .volt-problem-trust__bar span {
	animation: volt-trust-drop 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.volt-problem-mobile-scene {
	position: relative;
	min-height: 260px;
	padding-top: 10px;
}

.volt-problem-mobile-scene__desktop {
	height: 200px;
	padding: 20px;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.02);
}

.volt-problem-mobile-scene__desktop span,
.volt-problem-mobile-scene__content .volt-problem-mobile-scene__broken {
	display: block;
	height: 14px;
	border-radius: 999px;
	background: rgba(148, 163, 184, 0.18);
}

.volt-problem-mobile-scene__desktop span + span {
	margin-top: 16px;
}

.volt-problem-mobile-scene__desktop span:nth-child(1) { width: 70%; }
.volt-problem-mobile-scene__desktop span:nth-child(2) { width: 84%; }
.volt-problem-mobile-scene__desktop span:nth-child(3) { width: 48%; }

.volt-problem-mobile-scene__phone {
	position: absolute;
	right: 24px;
	bottom: -8px;
	width: 182px;
	padding: 10px;
	border: 1px solid rgba(248, 250, 252, 0.18);
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(6, 10, 16, 0.98), rgba(9, 12, 20, 0.96));
	box-shadow: 0 26px 56px rgba(0, 0, 0, 0.4);
	transform: translate3d(16px, 22px, 0) scale(0.92);
	opacity: 0;
}

.volt-problem-stage--mobile.is-active .volt-problem-mobile-scene__phone {
	animation: volt-phone-pop 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.volt-problem-mobile-scene__notch {
	width: 70px;
	height: 12px;
	margin: 0 auto 14px;
	border-radius: 999px;
	background: rgba(248, 250, 252, 0.08);
}

.volt-problem-mobile-scene__content {
	display: grid;
	gap: 12px;
}

.volt-problem-mobile-scene__broken:nth-child(1) {
	width: 120%;
}

.volt-problem-mobile-scene__broken:nth-child(2) {
	width: 96%;
}

.volt-problem-mobile-scene__broken:nth-child(3) {
	width: 104%;
}

.volt-problem-mobile-scene__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	margin-top: 6px;
	border-radius: 12px;
	background: rgba(239, 68, 68, 0.16);
	color: #fecaca;
	font-size: 0.82rem;
	font-weight: 700;
}

.volt-problem-mobile-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.volt-problem-mobile-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(248, 250, 252, 0.84);
	font-size: 0.82rem;
	font-weight: 600;
}

.volt-problem-floating {
	position: relative;
	min-height: 240px;
}

.volt-problem-floating span {
	position: absolute;
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 14px;
	background: rgba(12, 18, 28, 0.86);
	color: rgba(248, 250, 252, 0.88);
	font-size: 0.84rem;
	font-weight: 600;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.volt-problem-floating span:nth-child(1) { left: 0; top: 18px; }
.volt-problem-floating span:nth-child(2) { right: 16px; top: 2px; }
.volt-problem-floating span:nth-child(3) { left: 24px; top: 92px; }
.volt-problem-floating span:nth-child(4) { right: 40px; top: 106px; }
.volt-problem-floating span:nth-child(5) { left: 142px; bottom: 14px; }
.volt-problem-floating span:nth-child(6) { right: 0; bottom: 30px; }

.volt-problem-stage--manual.is-active .volt-problem-floating span:nth-child(1) { animation: volt-float-drift 3.6s ease-in-out infinite; }
.volt-problem-stage--manual.is-active .volt-problem-floating span:nth-child(2) { animation: volt-float-drift 4.2s ease-in-out infinite 0.3s; }
.volt-problem-stage--manual.is-active .volt-problem-floating span:nth-child(3) { animation: volt-float-drift 3.9s ease-in-out infinite 0.5s; }
.volt-problem-stage--manual.is-active .volt-problem-floating span:nth-child(4) { animation: volt-float-drift 4.3s ease-in-out infinite 0.7s; }
.volt-problem-stage--manual.is-active .volt-problem-floating span:nth-child(5) { animation: volt-float-drift 3.5s ease-in-out infinite 0.4s; }
.volt-problem-stage--manual.is-active .volt-problem-floating span:nth-child(6) { animation: volt-float-drift 4.1s ease-in-out infinite 0.8s; }

.volt-problem-floating .is-error {
	border-color: rgba(248, 113, 113, 0.32);
	background: rgba(248, 113, 113, 0.12);
	color: #fecaca;
}

.volt-problem-manual-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.volt-problem-manual-meta div {
	padding: 16px;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.02);
}

.volt-problem-manual-meta span {
	display: block;
	color: rgba(226, 232, 240, 0.72);
	font-size: 0.78rem;
}

.volt-problem-manual-meta strong {
	display: block;
	margin-top: 10px;
	font-size: 1.28rem;
}

.volt-problem-timeline {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

.volt-problem-timeline__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 88px;
	padding: 12px;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.02);
	color: rgba(248, 250, 252, 0.88);
	font-size: 0.9rem;
	font-weight: 700;
	text-align: center;
}

.volt-problem-timeline__item.is-done {
	border-color: rgba(34, 211, 238, 0.22);
}

.volt-problem-timeline__item.is-waiting::before {
	content: "";
	position: absolute;
	top: 12px;
	right: 12px;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #f59e0b;
	box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.volt-problem-stage--timeline.is-active .volt-problem-timeline__item.is-waiting::before {
	animation: volt-status-pulse 1.7s ease-in-out infinite;
}

.volt-problem-timeline__copy {
	margin: 0;
	color: rgba(248, 250, 252, 0.88);
	font-size: 0.92rem;
	line-height: 1.64;
}

.volt-problem-scatter {
	position: relative;
	min-height: 266px;
}

.volt-problem-scatter::before {
	content: "";
	position: absolute;
	inset: 18% 14% 18% 14%;
	border: 1px dashed rgba(148, 163, 184, 0.14);
	border-radius: 24px;
}

.volt-problem-scatter__card,
.volt-problem-scatter__center {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 16px;
	background: rgba(12, 18, 28, 0.88);
	color: rgba(248, 250, 252, 0.88);
	font-size: 0.84rem;
	font-weight: 700;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.volt-problem-scatter__card:nth-child(1) { left: 0; top: 24px; }
.volt-problem-scatter__card:nth-child(2) { right: 0; top: 14px; }
.volt-problem-scatter__card:nth-child(3) { left: 30px; bottom: 34px; }
.volt-problem-scatter__card:nth-child(4) { right: 24px; bottom: 24px; }

.volt-problem-scatter__center {
	left: 50%;
	top: 50%;
	min-width: 220px;
	transform: translate(-50%, -50%);
	border-color: rgba(248, 113, 113, 0.18);
	background: rgba(127, 29, 29, 0.14);
	color: #fecaca;
}

.volt-problem-stage--data.is-active .volt-problem-scatter__card:nth-child(1) { animation: volt-float-drift 3.8s ease-in-out infinite; }
.volt-problem-stage--data.is-active .volt-problem-scatter__card:nth-child(2) { animation: volt-float-drift 4.1s ease-in-out infinite 0.35s; }
.volt-problem-stage--data.is-active .volt-problem-scatter__card:nth-child(3) { animation: volt-float-drift 4.3s ease-in-out infinite 0.6s; }
.volt-problem-stage--data.is-active .volt-problem-scatter__card:nth-child(4) { animation: volt-float-drift 3.6s ease-in-out infinite 0.25s; }

.volt-problem__cards {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	--volt-connector-y: 76px;
	--volt-connector-opacity: 0;
}

.volt-problem__cards::before,
.volt-problem__cards::after {
	content: "";
	position: absolute;
	opacity: var(--volt-connector-opacity);
	transition: opacity 0.24s ease, top 0.24s ease;
	pointer-events: none;
}

.volt-problem__cards::before {
	top: var(--volt-connector-y);
	left: -110px;
	width: 110px;
	height: 2px;
	background: linear-gradient(90deg, rgba(23, 184, 255, 0.96), rgba(23, 184, 255, 0));
	box-shadow: 0 0 14px rgba(23, 184, 255, 0.34);
}

.volt-problem__cards::after {
	top: calc(var(--volt-connector-y) - 4px);
	left: -118px;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #22d3ee;
	box-shadow: 0 0 18px rgba(34, 211, 238, 0.46);
}

.volt-problem-card {
	display: block;
	width: 100%;
	min-height: 218px;
	padding: 24px;
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(23, 184, 255, 0), transparent 42%),
		linear-gradient(180deg, rgba(10, 15, 23, 0.96), rgba(8, 12, 18, 0.92));
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
	text-align: left;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.volt-problem-card:hover,
.volt-problem-card:focus-visible,
.volt-problem-card.is-active {
	transform: translateY(-5px);
	border-color: rgba(0, 175, 255, 0.55);
	background:
		radial-gradient(circle at top right, rgba(0, 175, 255, 0.16), transparent 40%),
		linear-gradient(180deg, rgba(11, 18, 29, 0.98), rgba(8, 12, 18, 0.94));
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.volt-problem-card:focus-visible {
	outline: 0;
}

.volt-problem-card.is-active .volt-problem-card__number {
	color: #00afff;
	text-shadow: 0 0 20px rgba(0, 175, 255, 0.5);
}

.volt-problem-card.is-active .volt-problem-card__icon {
	border-color: rgba(0, 175, 255, 0.38);
	box-shadow: 0 0 24px rgba(0, 175, 255, 0.24);
}

.volt-problem-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.volt-problem-card__body {
	display: block;
}

.volt-problem-card__body strong {
	display: block;
	margin-bottom: 12px;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: 1.18rem;
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.03em;
}

.volt-problem-card__body span {
	display: block;
	color: var(--volt-text-soft);
	font-size: 0.95rem;
	line-height: 1.7;
}

.volt-section {
	position: relative;
	padding: 118px 0;
}

.volt-section--contrast::before,
.volt-section--contact::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(10, 14, 20, 0.84), rgba(8, 12, 18, 0.94)),
		radial-gradient(circle at 18% 50%, rgba(23, 184, 255, 0.08), transparent 34%);
	z-index: -1;
}

.volt-section__intro {
	max-width: 780px;
	margin-bottom: 34px;
}

.volt-section h2 {
	font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.volt-section__intro p:last-child,
.volt-split p:not(.volt-eyebrow),
.volt-card p,
.volt-project p,
.volt-price-card p,
.volt-panel p,
.volt-copy-block p {
	color: var(--volt-text-soft);
	font-size: 1.08rem;
}

.volt-card-grid,
.volt-project-grid,
.volt-pricing-grid {
	display: grid;
	gap: 24px;
}

.volt-card-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.volt-card,
.volt-project,
.volt-price-card,
.volt-panel,
.volt-entry-card {
	position: relative;
	padding: 30px;
	border: 1px solid var(--volt-card-border);
	border-radius: var(--volt-radius);
	background:
		linear-gradient(180deg, rgba(14, 18, 28, 0.92), rgba(10, 14, 22, 0.78)),
		radial-gradient(circle at top right, rgba(23, 184, 255, 0.1), transparent 34%);
	box-shadow: var(--volt-shadow);
}

.volt-card::before,
.volt-project::before,
.volt-price-card::before,
.volt-panel::before,
.volt-entry-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(135deg, rgba(23, 184, 255, 0.4), transparent 36%, transparent 64%, rgba(148, 163, 184, 0.12));
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.volt-card h3,
.volt-project h3,
.volt-price-card h3 {
	margin: 0 0 14px;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: 1.32rem;
	font-weight: 700;
}

.volt-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
	gap: 34px;
	align-items: start;
}

.volt-feature-list,
.volt-price-card ul {
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.volt-feature-list li,
.volt-price-card li {
	position: relative;
	padding-left: 28px;
	margin-top: 16px;
	color: rgba(248, 250, 252, 0.92);
}

.volt-feature-list li::before,
.volt-price-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: linear-gradient(135deg, #17b8ff, #2563eb);
	box-shadow: 0 0 18px rgba(23, 184, 255, 0.42);
}

.volt-panel-stack {
	display: grid;
	gap: 18px;
}

.volt-panel span,
.volt-project__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(23, 184, 255, 0.12);
	color: var(--volt-accent);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.volt-panel p {
	margin-bottom: 0;
}

.volt-project-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.volt-project__tag {
	margin-bottom: 18px;
}

.volt-pricing-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.volt-price-card {
	padding-bottom: 34px;
}

.volt-price-card--featured {
	transform: translateY(-10px);
	border-color: rgba(23, 184, 255, 0.32);
	background:
		linear-gradient(180deg, rgba(10, 16, 28, 0.98), rgba(9, 15, 26, 0.88)),
		radial-gradient(circle at top right, rgba(23, 184, 255, 0.16), transparent 40%);
}

.volt-copy-block {
	max-width: 560px;
}

.volt-contact {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	padding: 44px;
	border: 1px solid rgba(23, 184, 255, 0.14);
	border-radius: calc(var(--volt-radius) + 6px);
	background:
		linear-gradient(180deg, rgba(9, 14, 21, 0.98), rgba(7, 11, 18, 0.92)),
		radial-gradient(circle at 18% 0%, rgba(23, 184, 255, 0.18), transparent 42%);
	box-shadow: var(--volt-shadow);
}

.volt-contact h2 {
	max-width: 760px;
}

.volt-contact__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.volt-contact__mail {
	margin: 6px 0 0;
	color: var(--volt-text-muted);
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.volt-footer {
	padding: 88px 0 34px;
	border-top: 1px solid rgba(148, 163, 184, 0.08);
	background:
		radial-gradient(circle at 14% 16%, rgba(23, 184, 255, 0.08), transparent 26%),
		linear-gradient(180deg, rgba(3, 5, 8, 0.96), rgba(3, 5, 8, 1));
}

.volt-footer__top {
	display: grid;
	grid-template-columns: minmax(280px, 1.15fr) minmax(170px, 0.72fr) minmax(170px, 0.72fr) minmax(230px, 0.9fr);
	gap: 42px;
	align-items: start;
}

.volt-footer__brand-column,
.volt-footer__nav-column,
.volt-footer__contact-column {
	min-width: 0;
}

.volt-footer__nav-column,
.volt-footer__contact-column {
	padding-left: 34px;
	border-left: 1px solid rgba(148, 163, 184, 0.12);
}

.volt-footer__brand {
	display: inline-flex;
	align-items: center;
}

.volt-footer__brand-image {
	width: 142px;
	max-width: 100%;
	filter: brightness(0) invert(1);
}

.volt-footer__description {
	max-width: 290px;
	margin: 30px 0 0;
	color: rgba(226, 232, 240, 0.82);
	font-size: 1.08rem;
	line-height: 1.78;
}

.volt-footer__heading {
	position: relative;
	margin: 8px 0 34px;
	font-size: 1.02rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.volt-footer__heading::after {
	content: "";
	display: block;
	width: 22px;
	height: 2px;
	margin-top: 16px;
	border-radius: 999px;
	background: var(--volt-accent);
}

.volt-footer__menu,
.volt-footer__contact-list,
.volt-footer__legal {
	margin: 0;
	padding: 0;
	list-style: none;
}

.volt-footer__menu {
	display: grid;
	gap: 24px;
}

.volt-footer__menu a,
.volt-footer__contact-list a,
.volt-footer__contact-list span,
.volt-footer__legal a,
.volt-footer__copyright {
	color: rgba(226, 232, 240, 0.84);
}

.volt-footer__menu a {
	display: inline-flex;
	align-items: center;
	font-size: 1rem;
	line-height: 1.45;
	transition: color 0.2s ease, transform 0.2s ease;
}

.volt-footer__menu a:hover,
.volt-footer__menu a:focus-visible,
.volt-footer__legal a:hover,
.volt-footer__legal a:focus-visible,
.volt-footer__contact-list a:hover,
.volt-footer__contact-list a:focus-visible {
	color: #fff;
}

.volt-footer__menu a:hover,
.volt-footer__menu a:focus-visible {
	transform: translateX(1px);
}

.volt-footer__contact-list {
	display: grid;
	gap: 26px;
}

.volt-footer__contact-list li {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

.volt-footer__contact-list li > span:last-child,
.volt-footer__contact-list li > a {
	font-size: 1rem;
	line-height: 1.5;
}

.volt-footer__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: var(--volt-accent);
}

.volt-footer__contact-icon svg {
	width: 24px;
	height: 24px;
}

.volt-footer__bottom {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) auto;
	align-items: center;
	gap: 24px 40px;
	margin-top: 92px;
	padding-top: 34px;
	border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.volt-footer__copyright {
	margin: 0;
	font-size: 0.98rem;
}

.volt-footer__legal {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
	justify-self: end;
}

.volt-footer__legal li {
	display: inline-flex;
	align-items: center;
	gap: 26px;
}

.volt-footer__legal li:not(:last-child)::after {
	content: "";
	width: 1px;
	height: 22px;
	background: rgba(148, 163, 184, 0.28);
}

.volt-footer__legal a {
	font-size: 0.98rem;
	transition: color 0.2s ease;
}

.volt-footer__socials {
	display: flex;
	align-items: center;
	gap: 18px;
}

.volt-footer__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: rgba(248, 250, 252, 0.94);
	transition: color 0.2s ease, transform 0.2s ease;
}

.volt-footer__socials a:hover,
.volt-footer__socials a:focus-visible {
	color: var(--volt-accent);
	transform: translateY(-1px);
}

.volt-footer__socials svg {
	width: 24px;
	height: 24px;
}

.volt-footer__socials--brand {
	margin-top: 56px;
}

.volt-main--default {
	padding: calc(var(--volt-header-height) + 78px) 0 110px;
}

.volt-entry-list {
	display: grid;
	gap: 24px;
}

.volt-entry-card__title {
	font-size: clamp(2rem, 3vw, 3rem);
}

.volt-entry-card__title a:hover,
.volt-entry-card__title a:focus-visible {
	color: var(--volt-accent);
}

.volt-entry-card__content {
	margin-top: 20px;
	color: var(--volt-text-soft);
}

.volt-entry-card__content > *:first-child {
	margin-top: 0;
}

.volt-entry-card__content > *:last-child {
	margin-bottom: 0;
}

@keyframes volt-rise {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes volt-pulse {
	0%,
	100% {
		opacity: 0.74;
	}

	50% {
		opacity: 1;
	}
}

@keyframes volt-gradient-breathe {
	0% {
		transform: scale(1) translate3d(0, 0, 0);
		opacity: 0.92;
	}

	100% {
		transform: scale(1.05) translate3d(1.5%, -1.5%, 0);
		opacity: 1;
	}
}

@keyframes volt-aurora-one {
	0% {
		transform: translate3d(0, 0, 0) scale(0.96);
		opacity: 0.7;
	}

	50% {
		transform: translate3d(-2%, 4%, 0) scale(1.04);
		opacity: 0.92;
	}

	100% {
		transform: translate3d(-6%, 8%, 0) scale(1.08);
		opacity: 0.78;
	}
}

@keyframes volt-aurora-two {
	0% {
		transform: translate3d(0, 0, 0) scale(0.94);
		opacity: 0.42;
	}

	50% {
		transform: translate3d(5%, -4%, 0) scale(1.02);
		opacity: 0.6;
	}

	100% {
		transform: translate3d(10%, -8%, 0) scale(1.08);
		opacity: 0.5;
	}
}

@keyframes volt-mesh-drift {
	0% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(1.25%, -1.5%, 0);
	}

	100% {
		transform: translate3d(-1.5%, 1%, 0);
	}
}

@keyframes volt-number-glow {
	0%,
	100% {
		opacity: 0.84;
		text-shadow: 0 0 10px rgba(23, 184, 255, 0.12);
	}

	50% {
		opacity: 1;
		text-shadow: 0 0 22px rgba(23, 184, 255, 0.34);
	}
}

@keyframes volt-status-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 10px currentColor;
	}

	50% {
		transform: scale(1.2);
		box-shadow: 0 0 18px currentColor;
	}
}

@keyframes volt-chart-draw {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes volt-weak-flash {
	0%,
	100% {
		border-color: rgba(248, 250, 252, 0.16);
		background: rgba(255, 255, 255, 0.04);
		color: rgba(248, 250, 252, 0.78);
	}

	50% {
		border-color: rgba(23, 184, 255, 0.46);
		background: rgba(23, 184, 255, 0.12);
		color: #fff;
	}
}

@keyframes volt-glitch-shiver {
	0% { transform: translate3d(0, 0, 0); }
	20% { transform: translate3d(-2px, 1px, 0); }
	40% { transform: translate3d(2px, -1px, 0); }
	60% { transform: translate3d(-1px, 1px, 0); }
	80% { transform: translate3d(1px, 0, 0); }
	100% { transform: translate3d(0, 0, 0); }
}

@keyframes volt-trust-drop {
	0% {
		transform: scaleX(0.82);
		filter: saturate(1);
	}

	100% {
		transform: scaleX(0.38);
		filter: saturate(1.15);
	}
}

@keyframes volt-phone-pop {
	0% {
		opacity: 0;
		transform: translate3d(16px, 22px, 0) scale(0.92);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}
}

@keyframes volt-float-drift {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, -8px, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.volt-hero__gradient,
	.volt-hero__gradient::before,
	.volt-hero__gradient::after,
	.volt-hero__mesh,
	.volt-hero__content,
	.volt-reveal,
	.volt-system-mockup__line,
	.volt-dashboard__chart-line,
	.volt-dashboard__status-dot,
	.volt-problem-card__number,
	.volt-problem-chart__curve,
	.volt-problem-stage__cta,
	.volt-problem-legacy,
	.volt-problem-trust__bar span,
	.volt-problem-mobile-scene__phone,
	.volt-problem-floating span,
	.volt-problem-scatter__card {
		animation: none !important;
	}

	.volt-reveal,
	.volt-dashboard__metric,
	.volt-dashboard__status li,
	.volt-dashboard__queue li,
	.volt-problem-stage {
		opacity: 1 !important;
		filter: none !important;
		transform: none !important;
		transition: none !important;
	}
}

@media (max-width: 1380px) {
	:root {
		--volt-container: min(1320px, calc(100vw - 48px));
	}

	.volt-problem {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	}

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

	.volt-footer__top {
		grid-template-columns: minmax(250px, 1fr) repeat(3, minmax(160px, 0.72fr));
		gap: 28px;
	}

	.volt-footer__bottom {
		grid-template-columns: 1fr;
		justify-items: start;
	}

	.volt-footer__legal {
		justify-self: start;
	}
}

@media (max-width: 1080px) {
	:root {
		--volt-container: min(100vw - 32px, 1000px);
	}

	.volt-nav-toggle {
		display: inline-flex;
	}

	.volt-nav {
		position: fixed;
		inset: 0;
		display: block;
		padding: 0;
		background: rgba(2, 5, 10, 0.32);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.24s ease, visibility 0.24s ease;
	}

	body.volt-menu-visible .volt-nav {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	body.volt-menu-visible .volt-nav-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	body.volt-menu-visible .volt-nav-toggle span:nth-child(2) {
		opacity: 0;
	}

	body.volt-menu-visible .volt-nav-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.volt-nav__shell {
		position: relative;
		display: flex;
		flex-direction: column;
		min-height: 100dvh;
		width: 100%;
		padding: 18px 18px 22px;
		border: 0;
		border-radius: 0;
		background:
			radial-gradient(circle at 76% 18%, rgba(23, 184, 255, 0.18), transparent 28%),
			radial-gradient(circle at 84% 84%, rgba(23, 184, 255, 0.14), transparent 26%),
			linear-gradient(180deg, rgba(9, 13, 20, 0.96), rgba(4, 7, 12, 0.96));
		box-shadow:
			0 28px 80px rgba(0, 0, 0, 0.42),
			inset 0 1px 0 rgba(255, 255, 255, 0.04);
		overflow: hidden;
		transform-origin: top right;
		isolation: isolate;
		clip-path: circle(28px at calc(100% - 42px) 42px);
		opacity: 0;
		transition:
			clip-path 0.44s cubic-bezier(0.2, 0.85, 0.2, 1),
			opacity 0.2s ease;
		will-change: clip-path, opacity;
	}

	.volt-nav__shell::before,
	.volt-nav__shell::after {
		content: "";
		position: absolute;
		pointer-events: none;
	}

	.volt-nav__shell::before {
		inset: auto -14% -12% auto;
		width: 56vw;
		height: 56vw;
		max-width: 320px;
		max-height: 320px;
		border-radius: 50%;
		background: radial-gradient(circle, rgba(23, 184, 255, 0.22), rgba(23, 184, 255, 0.08) 42%, transparent 72%);
		filter: blur(14px);
		opacity: 0.92;
		transform: translate3d(18px, 18px, 0) scale(0.92);
		transition: transform 0.75s cubic-bezier(0.2, 0.85, 0.2, 1), opacity 0.4s ease;
	}

	.volt-nav__shell::after {
		inset: 0;
		background:
			linear-gradient(90deg, rgba(23, 184, 255, 0.05) 1px, transparent 1px),
			linear-gradient(180deg, rgba(23, 184, 255, 0.045) 1px, transparent 1px);
		background-size: 48px 48px;
		mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.82) 26%, rgba(0, 0, 0, 0.12));
		opacity: 0.18;
	}

	body.volt-menu-open .volt-nav__shell {
		clip-path: circle(160vmax at calc(100% - 42px) 42px);
		opacity: 1;
	}

	body.volt-menu-open .volt-nav__shell::before {
		transform: translate3d(0, 0, 0) scale(1);
	}

	.volt-nav__panel-head,
	.volt-nav__actions {
		display: block;
		position: relative;
		z-index: 1;
	}

	.volt-nav__panel-head {
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	.volt-nav__panel-brand {
		width: 116px;
		filter: brightness(0) invert(1);
	}

	.volt-nav__content {
		position: relative;
		z-index: 1;
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
		justify-content: space-between;
		gap: 20px;
		padding-top: 36px;
	}

	.volt-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		margin-top: 0;
	}

	.volt-nav__item a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 58px;
		padding: 0 18px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.04);
		font-size: 1.18rem;
		font-weight: 700;
		line-height: 1.1;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	.volt-nav__item a::after {
		position: static;
		width: auto;
		height: auto;
		background: none;
		content: "↗";
		transform: none;
		color: var(--volt-accent);
		font-size: 0.96rem;
		font-weight: 800;
		opacity: 0.85;
	}

	.volt-nav__actions {
		margin-top: auto;
		padding-top: 20px;
	}

	.volt-nav__cta {
		width: 100%;
	}

	.volt-nav__micro {
		margin: 12px 0 0;
		color: rgba(226, 232, 240, 0.62);
		font-size: 0.88rem;
		line-height: 1.5;
	}

	.volt-nav__panel-head,
	.volt-nav__item,
	.volt-nav__actions {
		opacity: 0;
		transform: translateY(14px);
		transition: opacity 0.16s ease, transform 0.24s cubic-bezier(0.2, 0.85, 0.2, 1);
	}

	body.volt-menu-links-visible .volt-nav__panel-head,
	body.volt-menu-links-visible .volt-nav__item,
	body.volt-menu-links-visible .volt-nav__actions {
		opacity: 1;
		transform: translateY(0);
	}

	body.volt-menu-hiding-links .volt-nav__panel-head,
	body.volt-menu-hiding-links .volt-nav__item,
	body.volt-menu-hiding-links .volt-nav__actions {
		opacity: 0;
		transform: translateY(12px);
	}

	body.volt-menu-links-visible .volt-nav__panel-head {
		transition-delay: 0.05s;
	}

	body.volt-menu-links-visible .volt-nav__item:nth-child(1) {
		transition-delay: 0.12s;
	}

	body.volt-menu-links-visible .volt-nav__item:nth-child(2) {
		transition-delay: 0.16s;
	}

	body.volt-menu-links-visible .volt-nav__item:nth-child(3) {
		transition-delay: 0.2s;
	}

	body.volt-menu-links-visible .volt-nav__item:nth-child(4) {
		transition-delay: 0.24s;
	}

	body.volt-menu-links-visible .volt-nav__item:nth-child(5) {
		transition-delay: 0.28s;
	}

	body.volt-menu-links-visible .volt-nav__item:nth-child(6) {
		transition-delay: 0.32s;
	}

	body.volt-menu-links-visible .volt-nav__actions {
		transition-delay: 0.38s;
	}

	body.volt-menu-hiding-links .volt-nav__actions {
		transition-delay: 0s;
	}

	body.volt-menu-hiding-links .volt-nav__item:nth-child(6) {
		transition-delay: 0.02s;
	}

	body.volt-menu-hiding-links .volt-nav__item:nth-child(5) {
		transition-delay: 0.04s;
	}

	body.volt-menu-hiding-links .volt-nav__item:nth-child(4) {
		transition-delay: 0.06s;
	}

	body.volt-menu-hiding-links .volt-nav__item:nth-child(3) {
		transition-delay: 0.08s;
	}

	body.volt-menu-hiding-links .volt-nav__item:nth-child(2) {
		transition-delay: 0.1s;
	}

	body.volt-menu-hiding-links .volt-nav__item:nth-child(1) {
		transition-delay: 0.12s;
	}

	body.volt-menu-hiding-links .volt-nav__panel-head {
		transition-delay: 0.14s;
	}

	.volt-hero {
		padding-top: calc(var(--volt-header-height) + 58px);
		min-height: auto;
	}

	.volt-footer {
		padding-top: 72px;
	}

	.volt-problem,
	.volt-solution,
	.volt-hero__layout,
	.volt-split,
	.volt-project-grid,
	.volt-pricing-grid {
		grid-template-columns: 1fr;
	}

	.volt-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 26px;
	}

	.volt-footer__brand-column {
		grid-column: 1 / -1;
	}

	.volt-footer__nav-column,
	.volt-footer__contact-column {
		padding-left: 0;
		border-left: 0;
	}

	.volt-footer__socials--brand {
		margin-top: 36px;
	}

	.volt-problem-grid,
	.volt-solution-benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.volt-hero__layout {
		display: grid;
		gap: 42px;
	}

	.volt-solution-benefits {
		gap: 1px;
		padding: 1px;
		background: rgba(148, 163, 184, 0.14);
	}

	.volt-solution-benefit {
		background: rgba(7, 11, 18, 0.96);
	}

	.volt-solution-benefit + .volt-solution-benefit {
		border-left: 0;
	}

	.volt-system-mockup {
		min-height: 600px;
	}

	.volt-web-card {
		left: 2%;
		width: min(78%, 420px);
	}

	.volt-dashboard__footer {
		flex-direction: column;
	}

	.volt-hero__mesh {
		left: -12%;
		right: -12%;
		bottom: 12%;
	}

	.volt-contact {
		flex-direction: column;
		align-items: flex-start;
		padding: 34px;
	}

	.volt-footer__bottom {
		margin-top: 56px;
	}
}

@media (max-width: 780px) {
	:root {
		--volt-container: calc(100vw - 24px);
		--volt-radius: 22px;
		--volt-header-height: 76px;
	}

	.admin-bar .volt-header {
		top: 46px;
	}

	.volt-header {
		padding: 16px 0;
	}

	.volt-brand {
		max-width: 106px;
	}

	.volt-eyebrow {
		font-size: 0.74rem;
		letter-spacing: 0.14em;
	}

	.volt-hero {
		padding-top: calc(var(--volt-header-height) + 26px);
		padding-bottom: 18px;
	}

	.volt-hero h1 {
		max-width: 11.5ch;
		font-size: clamp(1.98rem, 9vw, 2.85rem);
		line-height: 1.02;
	}

	.volt-problem-grid,
	.volt-solution-benefits,
	.volt-dashboard__metrics {
		grid-template-columns: 1fr;
	}

	.volt-problem__content > p:not(.volt-eyebrow):not(.volt-problem__highlight),
	.volt-solution__content > p:not(.volt-eyebrow) {
		font-size: 1rem;
	}

	.volt-problem__highlight {
		font-size: 0.98rem;
	}

	.volt-problem-card,
	.volt-solution-benefit,
	.volt-dashboard,
	.volt-web-card {
		padding: 24px;
	}

	.volt-system-mockup {
		min-height: 0;
	}

	.volt-system-mockup__line {
		display: none;
	}

	.volt-dashboard {
		width: 100%;
		margin-left: 0;
	}

	.volt-web-card {
		position: relative;
		left: auto;
		bottom: auto;
		width: calc(100% - 18px);
		margin: -28px 0 0 18px;
		transform: rotate(0deg);
	}

	.volt-hero__lead {
		margin-top: 18px;
		font-size: 0.97rem;
		line-height: 1.64;
	}

	.volt-hero__actions,
	.volt-benefits {
		width: 100%;
	}

	.volt-hero__actions {
		gap: 12px;
		margin-top: 28px;
	}

	.volt-benefits {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px 16px;
		margin-top: 28px;
		font-size: 0.94rem;
	}

	.volt-benefits li {
		min-width: 0;
		gap: 10px;
	}

	.volt-benefits li::before {
		flex-basis: 18px;
		width: 18px;
		height: 18px;
	}

	.volt-button {
		width: 100%;
		min-height: 54px;
		padding: 0 20px;
		font-size: 0.97rem;
	}

	.volt-card-grid,
	.volt-project-grid,
	.volt-pricing-grid {
		grid-template-columns: 1fr;
	}

	.volt-section {
		padding: 78px 0;
	}

	.volt-footer {
		padding: 58px 0 26px;
	}

	.volt-footer__top {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.volt-footer__heading {
		margin-bottom: 18px;
	}

	.volt-footer__heading::after {
		margin-top: 12px;
	}

	.volt-footer__menu {
		gap: 16px;
	}

	.volt-footer__bottom {
		gap: 18px;
		margin-top: 42px;
		padding-top: 22px;
	}

	.volt-footer__legal {
		gap: 14px;
		justify-self: start;
	}

	.volt-footer__legal li {
		gap: 14px;
	}

	.volt-footer__legal li:not(:last-child)::after {
		height: 16px;
	}

	.volt-card,
	.volt-project,
	.volt-price-card,
	.volt-panel,
		.volt-entry-card {
			padding: 24px;
		}

	.volt-footer__socials--brand {
		margin-top: 24px;
	}
}

@media (max-width: 520px) {
	:root {
		--volt-container: calc(100vw - 20px);
	}

	.volt-hero {
		padding-top: calc(var(--volt-header-height) + 20px);
	}

	.volt-hero__mesh {
		left: -32%;
		right: -32%;
		bottom: 4%;
		opacity: 0.62;
	}

	.volt-hero__mesh svg {
		height: clamp(110px, 34vw, 150px);
	}

	.volt-hero h1 {
		max-width: 10.5ch;
		font-size: clamp(1.82rem, 9.8vw, 2.45rem);
	}

	.volt-hero__lead {
		font-size: 0.92rem;
		line-height: 1.58;
	}

	.volt-benefits {
		display: block;
		position: relative;
		min-height: 34px;
		margin-top: 28px;
		overflow: hidden;
		font-size: 0.9rem;
	}

	.volt-benefits li {
		position: absolute;
		top: 0;
		left: 0;
		min-width: 0;
		opacity: 0;
		transform: translateX(-14px);
		transition: opacity 280ms ease, transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
		white-space: nowrap;
		will-change: transform, opacity;
	}

	.volt-benefits li.is-active {
		opacity: 1;
		transform: translateX(0);
	}

	.volt-benefits li.is-exiting {
		opacity: 0;
		transform: translateX(18px);
	}

	.volt-section {
		padding: 70px 0;
	}

	.volt-section--problem {
		padding: 72px 0 80px;
	}

	.volt-problem-v2__title {
		font-size: clamp(1.78rem, 9.4vw, 2.42rem);
	}

	.volt-problem-v2__copy {
		font-size: 0.92rem;
	}

	.volt-solutions-showcase__title {
		max-width: 11.2ch;
		font-size: clamp(1.72rem, 9.5vw, 2.3rem);
	}

	.volt-solutions-showcase__copy {
		font-size: 0.92rem;
	}

	.volt-solutions-panel__title {
		font-size: clamp(1.34rem, 7.4vw, 1.82rem);
	}

	.volt-solutions-panel__description {
		font-size: 0.92rem;
	}

	.volt-solutions-panel__visual,
	.volt-solutions-visual {
		min-height: 232px;
	}

	.volt-process-flow__intro h2 {
		font-size: clamp(1.78rem, 9.2vw, 2.42rem);
	}

	.volt-process-flow__question {
		font-size: clamp(1.02rem, 5.4vw, 1.3rem);
	}

	.volt-process-step h3 {
		font-size: clamp(1.24rem, 6.2vw, 1.62rem);
	}

	.volt-process-step p {
		font-size: 0.9rem;
	}

	.volt-why-volt__intro h2 {
		font-size: clamp(1.78rem, 9.2vw, 2.42rem);
	}

	.volt-why-volt__intro p:not(.volt-eyebrow),
	.volt-why-volt__list li,
	.volt-footer__description,
	.volt-footer__menu a,
	.volt-footer__contact-list li {
		font-size: 0.92rem;
	}

	.volt-footer {
		padding: 46px 0 22px;
	}
}

@media (max-width: 1180px) {
	.volt-problem__layout {
		grid-template-columns: 1fr;
	}

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

	.volt-problem__cards::before,
	.volt-problem__cards::after {
		display: none;
	}

	.volt-problem-stage__metrics,
	.volt-problem-manual-meta {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.volt-problem-counter {
		max-width: none;
	}

	.volt-problem-mockup__chrome {
		grid-template-columns: auto 1fr;
	}

	.volt-problem-mockup__status {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.volt-problem-mockup__viewport {
		min-height: 520px;
	}

	.volt-problem-stage {
		inset: 20px;
	}

	.volt-problem__cards,
	.volt-problem-stage__metrics,
	.volt-problem-manual-meta,
	.volt-problem-timeline {
		grid-template-columns: 1fr;
	}

	.volt-problem-mobile-scene__phone {
		right: 0;
	}
}

@media (max-width: 620px) {
	.volt-problem__lead,
	.volt-problem-card__body span,
	.volt-problem-counter__note,
	.volt-problem-timeline__copy {
		font-size: 0.92rem;
	}

	.volt-problem__highlight {
		display: block;
		border-radius: 22px;
	}

	.volt-problem-counter {
		padding: 20px;
	}

	.volt-problem-counter__value {
		font-size: 2.5rem;
	}

	.volt-problem-mockup {
		border-radius: 24px;
	}

	.volt-problem-mockup__viewport {
		min-height: 560px;
		padding: 20px;
	}

	.volt-problem-stage {
		inset: 20px;
	}

	.volt-problem-stage h3 {
		font-size: 1.18rem;
	}

	.volt-problem-stage__top {
		flex-direction: column;
		align-items: flex-start;
	}

	.volt-problem-mobile-scene__phone {
		position: relative;
		right: auto;
		bottom: auto;
		width: 160px;
		margin: 18px auto 0;
	}

	.volt-problem-mobile-scene__desktop {
		height: 150px;
	}

	.volt-problem-floating {
		min-height: 300px;
	}

	.volt-problem-floating span:nth-child(1) { left: 0; top: 8px; }
	.volt-problem-floating span:nth-child(2) { right: 0; top: 0; }
	.volt-problem-floating span:nth-child(3) { left: 0; top: 88px; }
	.volt-problem-floating span:nth-child(4) { right: 4px; top: 116px; }
	.volt-problem-floating span:nth-child(5) { left: 18px; bottom: 54px; }
	.volt-problem-floating span:nth-child(6) { right: 0; bottom: 16px; }

	.volt-problem-scatter {
		min-height: 320px;
	}

	.volt-problem-scatter__card:nth-child(1) { left: 0; top: 8px; }
	.volt-problem-scatter__card:nth-child(2) { right: 0; top: 0; }
	.volt-problem-scatter__card:nth-child(3) { left: 8px; bottom: 60px; }
	.volt-problem-scatter__card:nth-child(4) { right: 0; bottom: 36px; }

	.volt-problem-scatter__center {
		min-width: 0;
		width: calc(100% - 24px);
	}

	.volt-problem-card {
		min-height: 0;
		padding: 20px;
	}
}

.volt-section--problem {
	position: relative;
	padding: 138px 0 148px;
	background:
		radial-gradient(circle at 18% 14%, rgba(23, 184, 255, 0.12), transparent 28%),
		radial-gradient(circle at 84% 10%, rgba(37, 99, 235, 0.2), transparent 24%),
		radial-gradient(circle at 52% 100%, rgba(14, 165, 233, 0.08), transparent 36%),
		linear-gradient(90deg, rgba(4, 7, 12, 0.98) 0%, rgba(5, 12, 22, 0.94) 42%, rgba(11, 28, 54, 0.82) 100%);
	isolation: isolate;
	overflow: hidden;
}

.volt-section--problem::before,
.volt-section--problem::after {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

.volt-section--problem::before {
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%),
		radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.018), transparent 38%);
	opacity: 0.95;
}

.volt-section--problem::after {
	right: -12%;
	top: -10%;
	width: 44vw;
	height: 44vw;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.24), rgba(14, 165, 233, 0.08) 38%, transparent 72%);
	filter: blur(14px);
	opacity: 0.82;
	animation: volt-problem-orb 12s ease-in-out infinite;
}

.volt-problem-v2 {
	position: relative;
	z-index: 1;
}

.volt-problem-v2__orb,
.volt-problem-v2__phone-outline,
.volt-problem-v2__dots {
	position: absolute;
	pointer-events: none;
}

.volt-problem-v2__orb {
	border-radius: 50%;
	filter: blur(10px);
	opacity: 0.82;
}

.volt-problem-v2__orb--top {
	top: -58px;
	right: 6%;
	width: clamp(220px, 26vw, 380px);
	height: clamp(220px, 26vw, 380px);
	background: radial-gradient(circle, rgba(37, 99, 235, 0.28), rgba(14, 165, 233, 0.08) 42%, transparent 75%);
	animation: volt-problem-orb 13s ease-in-out infinite reverse;
}

.volt-problem-v2__orb--bottom {
	left: -4%;
	bottom: -62px;
	width: clamp(180px, 22vw, 320px);
	height: clamp(180px, 22vw, 320px);
	background: radial-gradient(circle, rgba(34, 211, 238, 0.16), rgba(37, 99, 235, 0.06) 44%, transparent 74%);
	animation: volt-problem-orb 16s ease-in-out infinite;
}

.volt-problem-v2__phone-outline {
	top: 36px;
	right: 34px;
	width: 66px;
	height: 142px;
	border: 1px solid rgba(23, 184, 255, 0.14);
	border-radius: 26px;
	opacity: 0.28;
	box-shadow: inset 0 0 18px rgba(23, 184, 255, 0.06);
}

.volt-problem-v2__phone-outline::before,
.volt-problem-v2__phone-outline::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 999px;
	background: rgba(110, 132, 255, 0.1);
}

.volt-problem-v2__phone-outline::before {
	top: 50%;
	width: 10px;
	height: 10px;
}

.volt-problem-v2__phone-outline::after {
	bottom: 16px;
	width: 10px;
	height: 44px;
}

.volt-problem-v2__dots {
	left: 38px;
	bottom: 12px;
	width: 132px;
	height: 132px;
	background-image: radial-gradient(rgba(23, 184, 255, 0.28) 1.4px, transparent 1.4px);
	background-size: 16px 16px;
	opacity: 0.26;
	mask-image: radial-gradient(circle at center, black 54%, transparent 100%);
	animation: volt-problem-dots 15s ease-in-out infinite;
}

.volt-problem-v2__header {
	position: relative;
	z-index: 2;
	max-width: 1020px;
	margin: 0 auto 52px;
	text-align: center;
}

.volt-problem-v2__badge {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 12px 26px;
	margin-top: -10px;
	border: 1px solid rgba(23, 184, 255, 0.2);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(8, 16, 28, 0.92), rgba(5, 11, 20, 0.74));
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
	color: var(--volt-accent);
	font-family: "Manrope", "Segoe UI", sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.volt-problem-v2__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	filter: drop-shadow(0 0 12px rgba(23, 184, 255, 0.32));
	animation: volt-problem-icon-breathe 4.6s ease-in-out infinite;
}

.volt-problem-v2__badge-icon svg {
	width: 100%;
	height: 100%;
}

.volt-problem-v2__title {
	margin: 28px auto 24px;
	max-width: 1120px;
	font-family: "Sora", "Manrope", sans-serif;
	font-size: clamp(2.95rem, 4.7vw, 5rem);
	line-height: 1.04;
	letter-spacing: -0.05em;
	font-weight: 800;
	color: #ffffff;
}

.volt-problem-v2__accent,
.volt-problem-v2__closing-accent {
	position: relative;
	display: inline-block;
	color: var(--volt-accent);
	text-shadow: 0 0 24px rgba(23, 184, 255, 0.18);
}

.volt-problem-v2__accent::after,
.volt-problem-v2__closing-accent::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.18em;
	height: 0.15em;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(23, 184, 255, 0.7), rgba(23, 184, 255, 1), rgba(23, 184, 255, 0.7));
	box-shadow: 0 0 14px rgba(23, 184, 255, 0.26);
	transform: scaleX(0.05);
	transform-origin: left center;
	opacity: 0;
}

.volt-problem-v2__title.is-visible .volt-problem-v2__accent::after,
.volt-problem-v2__closing.is-visible .volt-problem-v2__closing-accent::after {
	opacity: 1;
	animation: volt-problem-underline 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.volt-problem-v2__copy {
	margin: 10px auto 0;
	max-width: 820px;
	color: var(--volt-text-soft);
	font-family: "Manrope", "Segoe UI", sans-serif;
	font-size: clamp(0.98rem, 1.24vw, 1.28rem);
	font-weight: 500;
	line-height: 1.72;
}

.volt-problem-v2__copy strong {
	color: var(--volt-text);
	font-weight: 700;
}

.volt-problem-v2__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.volt-problem-v2-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 286px;
	padding: 30px 28px 28px;
	border: 1px solid rgba(23, 184, 255, 0.14);
	border-radius: 32px;
	background:
		radial-gradient(circle at 16% 10%, rgba(23, 184, 255, 0.08), transparent 24%),
		linear-gradient(180deg, rgba(8, 16, 30, 0.94), rgba(5, 10, 20, 0.9));
	box-shadow:
		0 24px 64px rgba(0, 0, 0, 0.38),
		inset 0 1px 0 rgba(255, 255, 255, 0.03);
	overflow: hidden;
	transition:
		transform 240ms ease,
		border-color 240ms ease,
		box-shadow 240ms ease,
		background 240ms ease;
}

.volt-problem-v2-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(23, 184, 255, 0.14), transparent 42%);
	opacity: 0;
	transition: opacity 240ms ease;
}

.volt-problem-v2-card::after {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	border: 1px solid rgba(255, 255, 255, 0.02);
	pointer-events: none;
}

.volt-problem-v2-card:hover,
.volt-problem-v2-card:focus-within {
	transform: translateY(-6px);
	border-color: rgba(23, 184, 255, 0.34);
	box-shadow:
		0 26px 78px rgba(0, 0, 0, 0.42),
		0 0 0 1px rgba(23, 184, 255, 0.1) inset,
		0 0 28px rgba(23, 184, 255, 0.12);
}

.volt-problem-v2-card:hover::before,
.volt-problem-v2-card:focus-within::before {
	opacity: 1;
}

.volt-problem-v2-card__head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
}

.volt-problem-v2-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	border-radius: 24px;
	border: 1px solid rgba(23, 184, 255, 0.16);
	background:
		radial-gradient(circle at 32% 24%, rgba(23, 184, 255, 0.14), transparent 34%),
		linear-gradient(180deg, rgba(11, 21, 40, 0.95), rgba(8, 15, 28, 0.88));
	color: #6fc8ff;
	box-shadow:
		0 14px 34px rgba(14, 34, 70, 0.26),
		0 0 0 1px rgba(255, 255, 255, 0.03) inset,
		0 0 26px rgba(23, 184, 255, 0.12);
	transition: transform 240ms ease, box-shadow 240ms ease, color 240ms ease;
	animation: volt-problem-icon-breathe 4.8s ease-in-out infinite;
	animation-delay: calc(var(--volt-delay, 0s) + 0.35s);
}

.volt-problem-v2-card__icon svg {
	width: 34px;
	height: 34px;
}

.volt-problem-v2-card__icon--image {
	width: 88px;
	height: 88px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.volt-problem-v2-card__icon--image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 0 18px rgba(23, 184, 255, 0.14));
	transition: filter 240ms ease;
}

.volt-problem-v2-card:hover .volt-problem-v2-card__icon,
.volt-problem-v2-card:focus-within .volt-problem-v2-card__icon {
	transform: translateY(-2px) scale(1.04);
	color: #9cdcff;
	box-shadow:
		0 18px 40px rgba(14, 34, 70, 0.3),
		0 0 0 1px rgba(23, 184, 255, 0.18) inset,
		0 0 34px rgba(23, 184, 255, 0.18);
}

.volt-problem-v2-card:hover .volt-problem-v2-card__icon--image,
.volt-problem-v2-card:focus-within .volt-problem-v2-card__icon--image {
	box-shadow: none;
	color: inherit;
}

.volt-problem-v2-card:hover .volt-problem-v2-card__icon--image img,
.volt-problem-v2-card:focus-within .volt-problem-v2-card__icon--image img {
	filter: drop-shadow(0 0 26px rgba(23, 184, 255, 0.18));
}

.volt-problem-v2-card__number {
	position: relative;
	top: -8px;
	font-family: "Sora", "Manrope", sans-serif;
	font-size: clamp(2.9rem, 3.8vw, 4.4rem);
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.06em;
	color: rgba(37, 99, 235, 0.42);
	text-shadow: 0 0 16px rgba(23, 184, 255, 0.08);
}

.volt-problem-v2-card.volt-reveal.is-visible .volt-problem-v2-card__number {
	animation: volt-problem-number-glow 6.8s ease-in-out infinite;
	animation-delay: calc(var(--volt-delay, 0s) + 0.4s);
}

.volt-problem-v2-card h3,
.volt-problem-v2-card p {
	position: relative;
	z-index: 1;
	margin: 0;
}

.volt-problem-v2-card h3 {
	margin-bottom: 14px;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: clamp(1.5rem, 2vw, 2.1rem);
	line-height: 1.08;
	letter-spacing: -0.05em;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.98);
}

.volt-problem-v2-card p {
	max-width: 30ch;
	font-size: 1rem;
	line-height: 1.58;
	color: var(--volt-text-soft);
}

.volt-problem-v2__divider {
	display: flex;
	align-items: center;
	gap: 24px;
	max-width: 520px;
	margin: 40px auto 34px;
	color: var(--volt-accent);
}

.volt-problem-v2__divider span {
	flex: 1 1 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(23, 184, 255, 0.62), transparent);
}

.volt-problem-v2__divider i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 999px;
	border: 1px solid rgba(23, 184, 255, 0.28);
	background: rgba(6, 10, 20, 0.8);
	box-shadow: 0 0 20px rgba(23, 184, 255, 0.1);
	animation: volt-problem-divider-spin 9s linear infinite;
}

.volt-problem-v2__divider i svg {
	width: 22px;
	height: 22px;
}

.volt-problem-v2__closing {
	margin: 0 auto;
	max-width: 920px;
	text-align: center;
	font-family: "Sora", "Manrope", sans-serif;
	font-size: clamp(2.6rem, 4.3vw, 4.8rem);
	line-height: 1.08;
	letter-spacing: -0.055em;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.98);
}

.volt-problem-v2__closing-accent::after {
	bottom: -0.16em;
}

@keyframes volt-problem-orb {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(12px, -18px, 0) scale(1.06);
	}
}

@keyframes volt-problem-dots {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
		opacity: 0.18;
	}
	50% {
		transform: translate3d(10px, -8px, 0);
		opacity: 0.3;
	}
}

@keyframes volt-problem-underline {
	0% {
		transform: scaleX(0.05);
		opacity: 0;
	}
	100% {
		transform: scaleX(1);
		opacity: 1;
	}
}

@keyframes volt-problem-number-glow {
	0%,
	100% {
		color: rgba(37, 99, 235, 0.42);
		text-shadow: 0 0 10px rgba(23, 184, 255, 0.08);
	}
	50% {
		color: rgba(82, 188, 255, 0.88);
		text-shadow: 0 0 28px rgba(23, 184, 255, 0.24);
	}
}

@keyframes volt-problem-icon-breathe {
	0%,
	100% {
		filter: drop-shadow(0 0 0 rgba(23, 184, 255, 0.02));
	}
	50% {
		filter: drop-shadow(0 0 18px rgba(23, 184, 255, 0.2));
	}
}

@keyframes volt-problem-divider-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 1180px) {
	.volt-section--problem {
		padding: 118px 0 130px;
	}

	.volt-problem-v2__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.volt-problem-v2__header {
		max-width: 920px;
	}
}

@media (max-width: 780px) {
	.volt-section--problem {
		padding: 78px 0 88px;
	}

	.volt-problem-v2__phone-outline {
		display: none;
	}

	.volt-problem-v2__header {
		margin-bottom: 28px;
	}

	.volt-problem-v2__badge {
		gap: 10px;
		padding: 10px 18px;
		font-size: 0.8rem;
		letter-spacing: 0.22em;
	}

	.volt-problem-v2__title {
		margin: 22px auto 18px;
		font-size: clamp(2rem, 9.8vw, 3rem);
		line-height: 1.06;
	}

	.volt-problem-v2__copy {
		font-size: 0.98rem;
		line-height: 1.62;
	}

	.volt-problem-v2__grid {
		display: flex;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 14px;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 4px 10px 14px 2px;
		margin-inline: -2px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
		touch-action: pan-x;
	}

	.volt-problem-v2__grid::-webkit-scrollbar {
		display: none;
	}

	.volt-problem-v2-card {
		flex: 0 0 min(86vw, 320px);
		min-height: 0;
		padding: 18px 16px 18px;
		border-radius: 24px;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.volt-problem-v2-card__head {
		margin-bottom: 16px;
	}

	.volt-problem-v2-card__icon {
		width: 58px;
		height: 58px;
		border-radius: 18px;
	}

	.volt-problem-v2-card__icon svg {
		width: 28px;
		height: 28px;
	}

	.volt-problem-v2-card__icon--image {
		width: 66px;
		height: 66px;
	}

	.volt-problem-v2-card__number {
		font-size: 2.5rem;
	}

	.volt-problem-v2-card h3 {
		font-size: clamp(1.18rem, 5.8vw, 1.52rem);
		line-height: 1.12;
	}

	.volt-problem-v2-card p {
		font-size: 0.9rem;
		line-height: 1.52;
	}

	.volt-problem-v2__divider {
		margin: 22px auto 0;
		gap: 14px;
	}

	.volt-problem-v2__divider i {
		width: 42px;
		height: 42px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.volt-section--problem::after,
	.volt-problem-v2__orb,
	.volt-problem-v2__dots,
	.volt-problem-v2__badge-icon,
	.volt-problem-v2-card.volt-reveal.is-visible .volt-problem-v2-card__number,
	.volt-problem-v2-card__icon,
	.volt-problem-v2__divider i {
		animation: none !important;
	}

	.volt-problem-v2__title.is-visible .volt-problem-v2__accent::after,
	.volt-problem-v2__closing.is-visible .volt-problem-v2__closing-accent::after {
		animation: none !important;
		transform: scaleX(1);
		opacity: 1;
	}
}

.volt-section--solutions-showcase {
	position: relative;
	padding: 138px 0 142px;
	background:
		radial-gradient(circle at 18% 18%, rgba(0, 175, 255, 0.1), transparent 24%),
		radial-gradient(circle at 80% 46%, rgba(var(--volt-solutions-accent-rgb, 0, 175, 255), 0.18), transparent 24%),
		linear-gradient(180deg, #020408 0%, #040913 52%, #03070d 100%);
	isolation: isolate;
	overflow: hidden;
	--volt-solutions-accent: #00AFFF;
	--volt-solutions-accent-rgb: 0, 175, 255;
}

.volt-section--solutions-showcase::before,
.volt-section--solutions-showcase::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.volt-section--solutions-showcase::before {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%),
		linear-gradient(90deg, rgba(23, 184, 255, 0.06) 1px, transparent 1px),
		linear-gradient(180deg, rgba(23, 184, 255, 0.045) 1px, transparent 1px);
	background-size: auto, 74px 74px, 74px 74px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.2));
	opacity: 0.24;
}

.volt-section--solutions-showcase::after {
	inset: auto;
	right: -8%;
	top: 18%;
	width: clamp(260px, 42vw, 720px);
	height: clamp(260px, 42vw, 720px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(var(--volt-solutions-accent-rgb, 0, 175, 255), 0.18), rgba(var(--volt-solutions-accent-rgb, 0, 175, 255), 0.06) 42%, transparent 74%);
	filter: blur(18px);
	opacity: 0.72;
	animation: volt-solutions-glow-pulse 8.8s ease-in-out infinite;
}

.volt-solutions-showcase {
	position: relative;
	z-index: 1;
}

.volt-solutions-showcase__header {
	max-width: 1040px;
	margin: 0 auto;
	text-align: center;
}

.volt-solutions-showcase__title {
	margin: 0 auto;
	max-width: 980px;
	font-family: "Sora", "Manrope", sans-serif;
	font-size: clamp(2.85rem, 4.6vw, 5.15rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.058em;
	color: #ffffff;
}

.volt-solutions-showcase__highlight {
	display: inline-block;
	color: rgba(255, 255, 255, 0.74);
	transition:
		color 0.28s ease,
		text-shadow 0.28s ease,
		transform 0.28s ease,
		opacity 0.28s ease;
}

.volt-solutions-showcase__highlight.is-active {
	color: var(--volt-solutions-accent);
	text-shadow: 0 0 24px rgba(var(--volt-solutions-accent-rgb, 0, 175, 255), 0.22);
}

.volt-solutions-showcase__highlight.is-entering {
	animation: volt-solutions-verb-enter 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.volt-solutions-showcase__copy {
	max-width: 860px;
	margin: 26px auto 0;
	color: var(--volt-text-soft);
	font-size: clamp(1rem, 1.26vw, 1.18rem);
	line-height: 1.78;
}

.volt-solutions-showcase__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: 36px auto 0;
}

.volt-solutions-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(248, 250, 252, 0.84);
	font-family: "Manrope", "Segoe UI", sans-serif;
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
	transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.volt-solutions-tab:hover,
.volt-solutions-tab:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(var(--volt-tab-accent-rgb, 23, 184, 255), 0.42);
	background: rgba(var(--volt-tab-accent-rgb, 23, 184, 255), 0.08);
	color: #ffffff;
}

.volt-solutions-tab.is-active {
	border-color: rgba(var(--volt-tab-accent-rgb, 23, 184, 255), 0.52);
	background:
		radial-gradient(circle at top right, rgba(var(--volt-tab-accent-rgb, 23, 184, 255), 0.16), transparent 42%),
		linear-gradient(135deg, rgba(var(--volt-tab-accent-rgb, 23, 184, 255), 0.22), rgba(var(--volt-tab-accent-rgb, 23, 184, 255), 0.1));
	color: #ffffff;
	box-shadow:
		0 14px 34px rgba(var(--volt-tab-accent-rgb, 23, 184, 255), 0.14),
		inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.volt-solutions-showcase__stage {
	position: relative;
	margin-top: 34px;
	min-width: 0;
}

.volt-solutions-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	gap: 42px;
	align-items: center;
	padding: 38px 38px 40px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
		linear-gradient(180deg, rgba(7, 12, 20, 0.94), rgba(5, 9, 16, 0.88));
	box-shadow:
		0 28px 80px rgba(0, 0, 0, 0.42),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	overflow: hidden;
	transform-origin: center;
}

.volt-solutions-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 0%, rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.06) 18%, transparent 34%, transparent 62%, rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.08) 100%);
	opacity: 0.9;
	animation: volt-solutions-shimmer 14s linear infinite;
	pointer-events: none;
}

.volt-solutions-panel::after {
	content: "";
	position: absolute;
	inset: auto auto -22% 58%;
	width: 46%;
	height: 62%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.22), rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.06) 38%, transparent 72%);
	filter: blur(26px);
	opacity: 0.82;
	pointer-events: none;
}

.volt-solutions-panel:hover,
.volt-solutions-panel:focus-within {
	transform: translateY(-6px);
	border-color: rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.26);
	box-shadow:
		0 34px 90px rgba(0, 0, 0, 0.46),
		0 0 0 1px rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.08) inset,
		0 0 32px rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.08);
}

.volt-solutions-panel.is-entering {
	animation: volt-solutions-panel-enter 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.volt-solutions-panel__content,
.volt-solutions-panel__visual {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.volt-solutions-panel__label {
	display: inline-flex;
	align-items: center;
	padding: 9px 14px;
	border: 1px solid rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.98);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.volt-solutions-panel__title {
	margin: 22px 0 0;
	font-family: "Sora", "Manrope", sans-serif;
	font-size: clamp(2rem, 2.7vw, 3.05rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.055em;
	color: #ffffff;
}

.volt-solutions-panel__description {
	max-width: 58ch;
	margin: 18px 0 0;
	color: var(--volt-text-soft);
	font-size: 1.06rem;
	line-height: 1.78;
}

.volt-solutions-panel__meta {
	margin-top: 28px;
}

.volt-solutions-panel__meta-label {
	display: inline-block;
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.volt-solutions-services {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.volt-solutions-services li {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(248, 250, 252, 0.88);
	font-size: 0.96rem;
	font-weight: 600;
	transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.volt-solutions-services li:hover {
	transform: translateY(-2px);
	border-color: rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.22);
	background: rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.08);
}

.volt-button--solutions {
	margin-top: 32px;
	color: #04111d;
	background: linear-gradient(135deg, rgba(var(--volt-solutions-accent-rgb, 0, 175, 255), 1), rgba(var(--volt-solutions-accent-rgb, 0, 175, 255), 0.82));
	box-shadow:
		0 18px 42px rgba(var(--volt-solutions-accent-rgb, 0, 175, 255), 0.22),
		inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.volt-button--solutions:hover,
.volt-button--solutions:focus-visible {
	box-shadow:
		0 24px 52px rgba(var(--volt-solutions-accent-rgb, 0, 175, 255), 0.28),
		0 0 18px rgba(var(--volt-solutions-accent-rgb, 0, 175, 255), 0.18);
}

.volt-solutions-panel__visual {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 430px;
}

.volt-solutions-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 430px;
	overflow: hidden;
}

.volt-solutions-visual[hidden] {
	display: none !important;
}

.volt-solutions-visual.is-entering {
	animation: volt-solutions-visual-enter 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.volt-solutions-visual__ambient {
	position: absolute;
	inset: 16% 8% 10%;
	border-radius: 40px;
	background: radial-gradient(circle, rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.18), rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.06) 44%, transparent 74%);
	filter: blur(22px);
	opacity: 0.8;
	animation: volt-solutions-glow-pulse 9s ease-in-out infinite;
}

.volt-solutions-browser,
.volt-solutions-shop,
.volt-solutions-system,
.volt-solutions-app {
	position: relative;
	width: min(100%, 460px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(6, 13, 24, 0.96), rgba(5, 9, 16, 0.9));
	box-shadow:
		0 22px 58px rgba(0, 0, 0, 0.42),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.volt-solutions-browser {
	padding: 18px;
}

.volt-solutions-browser__bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 14px;
}

.volt-solutions-browser__bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(248, 250, 252, 0.18);
}

.volt-solutions-browser__address {
	flex: 1 1 auto;
	height: 12px;
	margin-left: 10px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.26));
}

.volt-solutions-browser__hero,
.volt-solutions-browser__sections {
	display: grid;
	gap: 14px;
}

.volt-solutions-browser__hero {
	padding: 22px;
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.18), transparent 44%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.volt-solutions-browser__kicker,
.volt-solutions-browser__headline,
.volt-solutions-browser__body,
.volt-solutions-browser__cta,
.volt-solutions-browser__section,
.volt-solutions-shop__thumb,
.volt-solutions-shop__line,
.volt-solutions-shop__price,
.volt-solutions-system__item,
.volt-solutions-app__screen-line,
.volt-solutions-app__screen-card {
	border-radius: 16px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.22));
}

.volt-solutions-browser__kicker {
	width: 28%;
	height: 10px;
	border-radius: 999px;
}

.volt-solutions-browser__headline {
	width: 74%;
	height: 22px;
}

.volt-solutions-browser__body {
	width: 88%;
	height: 14px;
	opacity: 0.7;
}

.volt-solutions-browser__cta {
	width: 142px;
	height: 44px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.92), rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.56));
	animation: volt-solutions-glow-pulse 7.4s ease-in-out infinite;
}

.volt-solutions-browser__sections {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 16px;
}

.volt-solutions-browser__section {
	height: 92px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.14));
}

.volt-solutions-float-card,
.volt-solutions-float-pill {
	position: absolute;
	display: grid;
	gap: 4px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: rgba(5, 12, 22, 0.78);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow:
		0 14px 30px rgba(0, 0, 0, 0.3),
		0 0 24px rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.12);
	color: rgba(248, 250, 252, 0.9);
	animation: volt-solutions-float 7.4s ease-in-out infinite;
}

.volt-solutions-float-card strong,
.volt-solutions-float-pill strong {
	font-family: "Sora", "Manrope", sans-serif;
	font-size: 1.06rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.03em;
}

.volt-solutions-float-card span,
.volt-solutions-float-pill span,
.volt-solutions-float-pill {
	font-size: 0.84rem;
	font-weight: 600;
}

.volt-solutions-float-card--top {
	top: 18px;
	right: 14px;
}

.volt-solutions-float-card--right {
	top: 34px;
	right: 0;
}

.volt-solutions-float-card--bottom {
	left: 18px;
	bottom: 24px;
}

.volt-solutions-float-pill--bottom {
	left: 22px;
	bottom: 16px;
	padding: 12px 16px;
	border-radius: 999px;
}

.volt-solutions-float-pill--right {
	right: 12px;
	bottom: 18px;
	padding: 12px 16px;
	border-radius: 999px;
}

.volt-solutions-shop {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 16px;
	padding: 20px;
}

.volt-solutions-shop__products {
	display: grid;
	gap: 14px;
}

.volt-solutions-shop__product,
.volt-solutions-shop__checkout {
	padding: 16px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.volt-solutions-shop__thumb {
	height: 112px;
	margin-bottom: 14px;
	background: linear-gradient(135deg, rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.22), rgba(255, 255, 255, 0.05));
}

.volt-solutions-shop__line {
	height: 12px;
	margin-top: 10px;
}

.volt-solutions-shop__line--wide {
	width: 82%;
}

.volt-solutions-shop__price {
	width: 36%;
	height: 16px;
	margin-top: 14px;
	background: linear-gradient(90deg, rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.72), rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.36));
}

.volt-solutions-shop__checkout {
	display: grid;
	gap: 16px;
}

.volt-solutions-shop__checkout-head,
.volt-solutions-system__metric,
.volt-solutions-app__stack-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.volt-solutions-shop__checkout-head span,
.volt-solutions-system__metric span,
.volt-solutions-app__stack-card span,
.volt-solutions-system__column h4 {
	color: rgba(248, 250, 252, 0.72);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.volt-solutions-shop__checkout-head strong,
.volt-solutions-system__metric strong,
.volt-solutions-app__stack-card strong {
	color: #ffffff;
	font-family: "Sora", "Manrope", sans-serif;
	font-size: 1rem;
	font-weight: 700;
}

.volt-solutions-shop__progress {
	height: 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.volt-solutions-shop__progress span {
	display: block;
	width: 62%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.78), rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.34));
	animation: volt-solutions-progress 5s ease-in-out infinite;
}

.volt-solutions-shop__list,
.volt-solutions-system__board,
.volt-solutions-app__stack {
	display: grid;
}

.volt-solutions-shop__list {
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.volt-solutions-shop__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(248, 250, 252, 0.86);
	font-size: 0.92rem;
	font-weight: 600;
}

.volt-solutions-shop__list li span,
.volt-solutions-system__pulse {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 1);
	box-shadow: 0 0 16px rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.42);
}

.volt-solutions-system {
	display: grid;
	gap: 18px;
	padding: 20px;
}

.volt-solutions-system__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.volt-solutions-system__metric,
.volt-solutions-system__column,
.volt-solutions-app__stack-card {
	padding: 14px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.volt-solutions-system__board {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.volt-solutions-system__column {
	gap: 10px;
}

.volt-solutions-system__column h4 {
	margin: 0 0 10px;
}

.volt-solutions-system__item {
	height: 42px;
	margin-top: 8px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.18));
}

.volt-solutions-system__timeline {
	position: relative;
	display: grid;
	gap: 12px;
	padding: 16px 0 0;
}

.volt-solutions-system__track {
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 1), rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0));
}

.volt-solutions-system__pulse {
	animation: volt-solutions-pulse-dot 2.6s ease-in-out infinite;
}

.volt-solutions-system__note {
	color: rgba(248, 250, 252, 0.84);
	font-size: 0.92rem;
	font-weight: 600;
}

.volt-solutions-app {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
	gap: 18px;
	padding: 20px;
}

.volt-solutions-app__phone {
	position: relative;
	width: min(100%, 220px);
	margin: 0 auto;
	padding: 16px 12px 14px;
	border-radius: 34px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(180deg, rgba(8, 16, 28, 0.98), rgba(5, 10, 18, 0.9));
	box-shadow:
		0 18px 42px rgba(0, 0, 0, 0.36),
		inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.volt-solutions-app__notch {
	width: 38%;
	height: 9px;
	margin: 0 auto 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
}

.volt-solutions-app__screen {
	display: grid;
	gap: 12px;
	padding: 12px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.03);
}

.volt-solutions-app__screen-line {
	height: 12px;
}

.volt-solutions-app__screen-line--wide {
	width: 78%;
}

.volt-solutions-app__screen-card {
	height: 92px;
	background: linear-gradient(135deg, rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.16), rgba(255, 255, 255, 0.04));
}

.volt-solutions-app__stack {
	gap: 12px;
	align-content: center;
}

.volt-solutions-app__stack-card {
	min-height: 72px;
}

.volt-solutions-app__stack-card strong {
	color: rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.98);
}

@keyframes volt-solutions-panel-enter {
	0% {
		opacity: 0;
		transform: translate3d(0, 28px, 0) scale(0.985);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}
}

@keyframes volt-solutions-visual-enter {
	0% {
		opacity: 0;
		transform: translate3d(0, 20px, 0) scale(0.98);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}
}

@keyframes volt-solutions-shimmer {
	0% {
		transform: translate3d(-10%, 0, 0);
	}
	50% {
		transform: translate3d(5%, 0, 0);
	}
	100% {
		transform: translate3d(-10%, 0, 0);
	}
}

@keyframes volt-solutions-float {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, -8px, 0);
	}
}

@keyframes volt-solutions-glow-pulse {
	0%,
	100% {
		opacity: 0.68;
		transform: scale(1);
	}
	50% {
		opacity: 0.92;
		transform: scale(1.05);
	}
}

@keyframes volt-solutions-progress {
	0%,
	100% {
		width: 58%;
	}
	50% {
		width: 78%;
	}
}

@keyframes volt-solutions-pulse-dot {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 14px rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.36);
	}
	50% {
		transform: scale(1.28);
		box-shadow: 0 0 22px rgba(var(--volt-panel-accent-rgb, 0, 175, 255), 0.52);
	}
}

@keyframes volt-solutions-verb-enter {
	0% {
		opacity: 0;
		transform: translate3d(0, 16px, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@media (min-width: 1041px) {
	.volt-section--solutions-showcase {
		padding: 64px 0 68px;
	}

	.volt-solutions-showcase__header {
		max-width: 1280px;
	}

	.volt-solutions-showcase__title {
		max-width: 1240px;
		font-size: clamp(2rem, 3.2vw, 3.55rem);
		line-height: 1.02;
	}

	.volt-solutions-showcase__copy {
		max-width: 980px;
		margin-top: 14px;
		font-size: clamp(0.92rem, 0.98vw, 1.02rem);
		line-height: 1.52;
	}

	.volt-solutions-showcase__tabs {
		margin-top: 18px;
		gap: 8px;
	}

	.volt-solutions-tab {
		min-height: 44px;
		padding: 0 18px;
		font-size: 0.89rem;
	}

	.volt-solutions-showcase__stage {
		margin-top: 16px;
	}

	.volt-solutions-panel {
		gap: 24px;
		padding: 24px 24px 26px;
		border-radius: 26px;
	}

	.volt-solutions-panel__label {
		padding: 7px 12px;
		font-size: 0.7rem;
	}

	.volt-solutions-panel__title {
		margin-top: 14px;
		font-size: clamp(1.45rem, 1.85vw, 2.1rem);
	}

	.volt-solutions-panel__description {
		margin-top: 12px;
		font-size: 0.92rem;
		line-height: 1.48;
	}

	.volt-solutions-panel__meta {
		margin-top: 16px;
	}

	.volt-solutions-panel__meta-label {
		margin-bottom: 8px;
		font-size: 0.76rem;
	}

	.volt-solutions-services {
		gap: 8px;
	}

	.volt-solutions-services li {
		min-height: 34px;
		padding: 0 12px;
		font-size: 0.82rem;
	}

	.volt-button--solutions {
		margin-top: 18px;
	}

	.volt-solutions-panel__visual,
	.volt-solutions-visual {
		min-height: 280px;
	}

	.volt-solutions-browser,
	.volt-solutions-shop,
	.volt-solutions-system,
	.volt-solutions-app {
		width: min(100%, 360px);
	}

	.volt-solutions-browser__hero {
		padding: 14px;
	}

	.volt-solutions-browser__sections {
		margin-top: 10px;
	}

	.volt-solutions-browser__section {
		height: 66px;
	}

	.volt-solutions-shop {
		padding: 14px;
	}

	.volt-solutions-shop__thumb {
		height: 82px;
	}

	.volt-solutions-shop__checkout {
		min-width: 0;
		padding: 14px 12px;
		overflow: hidden;
	}

	.volt-solutions-shop__checkout-head {
		min-width: 0;
		align-items: flex-start;
		gap: 10px;
	}

	.volt-solutions-shop__checkout-head span {
		flex: 0 1 auto;
		min-width: 0;
		max-width: 100%;
		font-size: 0.76rem;
		letter-spacing: 0.05em;
		line-height: 1.15;
	}

	.volt-solutions-shop__checkout-head strong {
		flex: 0 0 auto;
		max-width: 92px;
		font-size: 0.74rem;
		line-height: 1.15;
		text-align: right;
		word-break: keep-all;
		overflow-wrap: anywhere;
	}

	.volt-solutions-shop__list {
		gap: 10px;
		min-width: 0;
	}

	.volt-solutions-shop__list li {
		min-width: 0;
		gap: 8px;
		padding-right: 2px;
		font-size: 0.78rem;
		line-height: 1.28;
		overflow: hidden;
	}

	.volt-solutions-shop__list li span {
		flex: 0 0 auto;
	}

	.volt-solutions-float-card--right {
		top: 26px;
		right: 10px;
		max-width: 88px;
		padding: 9px 10px;
		text-align: center;
	}

	.volt-solutions-float-card--right strong {
		font-size: 0.92rem;
	}

	.volt-solutions-float-card--right span {
		font-size: 0.72rem;
		line-height: 1.2;
	}

	.volt-solutions-visual--shop .volt-solutions-shop__checkout-head {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.volt-solutions-visual--shop .volt-solutions-shop__checkout-head > * {
		display: block;
	}

	.volt-solutions-visual--shop .volt-solutions-shop__checkout-head span {
		width: 100%;
		text-align: left;
		white-space: normal;
	}

	.volt-solutions-visual--shop .volt-solutions-shop__checkout-head strong {
		width: 100%;
		max-width: none;
		margin-top: 3px;
		text-align: left;
	}

	.volt-solutions-visual--system .volt-solutions-system {
		overflow: hidden;
	}

	.volt-solutions-visual--system .volt-solutions-system__metrics {
		gap: 8px;
	}

	.volt-solutions-visual--system .volt-solutions-system__metric {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		min-width: 0;
		padding: 12px 10px;
		align-items: flex-start;
		gap: 8px;
		overflow: hidden;
	}

	.volt-solutions-visual--system .volt-solutions-system__metric span {
		flex: 1 1 auto;
		min-width: 0;
		font-size: 0.66rem;
		line-height: 1.2;
		letter-spacing: 0.04em;
		word-break: break-word;
		overflow-wrap: anywhere;
	}

	.volt-solutions-visual--system .volt-solutions-system__metric strong {
		display: block;
		flex: 0 0 auto;
		width: 100%;
		font-size: 0.86rem;
		line-height: 1;
		text-align: left;
	}

	.volt-solutions-visual--system .volt-solutions-float-pill--right {
		right: 8px;
		bottom: 12px;
		max-width: 104px;
		padding: 10px 12px;
		font-size: 0.72rem;
		line-height: 1.2;
		text-align: center;
	}

	.volt-solutions-system__metrics {
		gap: 10px;
	}

	.volt-solutions-float-card,
	.volt-solutions-float-pill {
		padding: 10px 12px;
	}
}

@media (max-width: 1180px) {
	.volt-section--solutions-showcase {
		padding: 118px 0 128px;
	}

	.volt-solutions-panel {
		gap: 28px;
		padding: 32px;
	}

	.volt-solutions-panel__title {
		font-size: clamp(1.84rem, 3vw, 2.7rem);
	}
}

@media (max-width: 1040px) {
	.volt-solutions-panel {
		grid-template-columns: 1fr;
	}

	.volt-solutions-panel__visual,
	.volt-solutions-visual {
		min-height: 360px;
	}
}

@media (max-width: 780px) {
	.volt-section--solutions-showcase {
		padding: 80px 0 88px;
	}

	.volt-solutions-showcase__title {
		max-width: 12.5ch;
		font-size: clamp(1.9rem, 9vw, 2.75rem);
		line-height: 1.06;
		letter-spacing: -0.052em;
	}

	.volt-solutions-showcase__copy {
		margin-top: 18px;
		font-size: 0.96rem;
		line-height: 1.62;
	}

	.volt-solutions-showcase__tabs {
		gap: 10px;
		margin-top: 24px;
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 10px 4px 12px;
		margin-inline: -4px;
		scroll-padding-inline: 4px;
		scrollbar-width: none;
	}

	.volt-solutions-showcase__tabs::-webkit-scrollbar {
		display: none;
	}

	.volt-solutions-tab {
		position: relative;
		z-index: 1;
		flex: 0 0 auto;
		min-height: 46px;
		padding: 0 16px;
		font-size: 0.9rem;
	}

	.volt-solutions-panel {
		gap: 18px;
		padding: 20px 18px;
		border-radius: 22px;
	}

	.volt-solutions-panel__visual,
	.volt-solutions-visual {
		display: none;
		min-height: 0;
	}

	.volt-solutions-panel__label {
		padding: 8px 12px;
		font-size: 0.72rem;
		letter-spacing: 0.14em;
	}

	.volt-solutions-panel__title {
		margin-top: 16px;
		font-size: clamp(1.52rem, 7vw, 2.1rem);
		line-height: 1.08;
	}

	.volt-solutions-panel__description {
		margin-top: 14px;
		font-size: 0.95rem;
		line-height: 1.62;
	}

	.volt-solutions-panel__meta {
		margin-top: 20px;
	}

	.volt-solutions-panel__meta-label {
		margin-bottom: 10px;
		font-size: 0.82rem;
	}

	.volt-solutions-services {
		gap: 8px;
	}

	.volt-solutions-services li {
		min-height: 36px;
		padding: 0 12px;
		font-size: 0.82rem;
	}

	.volt-solutions-browser__sections,
	.volt-solutions-shop,
	.volt-solutions-system__metrics,
	.volt-solutions-system__board,
	.volt-solutions-app {
		grid-template-columns: 1fr;
	}

	.volt-solutions-app__phone {
		width: min(100%, 200px);
	}

	.volt-solutions-float-card--top,
	.volt-solutions-float-card--right {
		right: 10px;
		top: 10px;
	}

	.volt-solutions-float-card,
	.volt-solutions-float-pill {
		padding: 10px 12px;
		border-radius: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.volt-section--solutions-showcase::after,
	.volt-solutions-panel::before,
	.volt-solutions-visual__ambient,
	.volt-solutions-float-card,
	.volt-solutions-float-pill,
	.volt-solutions-browser__cta,
	.volt-solutions-shop__progress span,
	.volt-solutions-system__pulse {
		animation: none !important;
	}
}

.volt-section--process-flow {
	position: relative;
	overflow: clip;
	padding: 132px 0 148px;
	background:
		radial-gradient(circle at 18% 18%, rgba(0, 175, 255, 0.12), transparent 30%),
		radial-gradient(circle at 84% 16%, rgba(0, 175, 255, 0.1), transparent 28%),
		radial-gradient(circle at 68% 72%, rgba(0, 175, 255, 0.08), transparent 24%),
		linear-gradient(180deg, rgba(2, 7, 14, 0.96) 0%, #020408 100%);
}

.volt-section--process-flow::before,
.volt-section--process-flow::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.volt-section--process-flow::before {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 78px 78px;
	mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 18%, rgba(0, 0, 0, 1) 100%);
	opacity: 0.18;
}

.volt-section--process-flow::after {
	background:
		radial-gradient(circle at 68% 48%, rgba(0, 175, 255, 0.15), transparent 21%),
		radial-gradient(circle at 26% 78%, rgba(0, 175, 255, 0.08), transparent 25%);
	filter: blur(26px);
	opacity: 0.92;
}

.volt-process-flow {
	position: relative;
	z-index: 1;
}

.volt-process-flow__layout {
	display: grid;
	grid-template-columns: minmax(300px, 0.43fr) minmax(0, 0.57fr);
	gap: clamp(34px, 4vw, 72px);
	align-items: start;
}

.volt-process-flow__intro {
	position: sticky;
	top: 112px;
	align-self: start;
	max-width: 520px;
	padding-top: 8px;
}

.volt-process-flow__intro h2 {
	margin: 0;
	font-family: "Sora", "Manrope", sans-serif;
	font-size: clamp(2.5rem, 4vw, 4.4rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.06em;
}

.volt-process-flow__intro > p:not(.volt-process-flow__question) {
	margin: 22px 0 0;
	font-size: clamp(1rem, 1.22vw, 1.14rem);
	line-height: 1.8;
	color: var(--volt-text-soft);
}

.volt-process-flow__question {
	margin: 34px 0 0;
	max-width: 34ch;
	font-family: "Sora", "Manrope", sans-serif;
	font-size: clamp(1.38rem, 2vw, 2.12rem);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.045em;
	color: rgba(255, 255, 255, 0.96);
}

.volt-process-flow__question span {
	color: #8cdfff;
	text-shadow: 0 0 24px rgba(0, 175, 255, 0.22);
}

.volt-process-flow__steps {
	position: relative;
	min-width: 0;
}

.volt-process-flow__steps-inner {
	position: relative;
	padding-top: 12px;
	padding-bottom: 14vh;
}

.volt-process-step {
	position: sticky;
	top: 118px;
	z-index: calc(16 + var(--volt-step-index));
	display: grid;
	grid-template-columns: minmax(0, 1fr) 46px;
	gap: 24px;
	align-items: center;
	min-height: clamp(280px, 28vw, 330px);
	margin: 0 0 clamp(22vh, 25vh, 260px);
	padding: 34px 32px 34px 34px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 32px;
	background:
		radial-gradient(circle at top right, rgba(0, 175, 255, 0.1), transparent 34%),
		linear-gradient(180deg, rgba(10, 17, 28, 0.94) 0%, rgba(5, 10, 18, 0.98) 100%);
	box-shadow:
		0 32px 90px rgba(0, 0, 0, 0.44),
		0 0 0 1px rgba(255, 255, 255, 0.015) inset;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transform-origin: center center;
	transition:
		transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.35s ease,
		filter 0.35s ease,
		border-color 0.32s ease,
		box-shadow 0.32s ease,
		background 0.32s ease;
	will-change: transform, opacity;
	overflow: hidden;
}

.volt-process-step + .volt-process-step {
	margin-top: -118px;
}

.volt-process-step::before,
.volt-process-step::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.volt-process-step::before {
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, transparent 24%),
		radial-gradient(circle at 82% 16%, rgba(0, 175, 255, 0.12), transparent 22%);
	opacity: 0.96;
}

.volt-process-step::after {
	content: attr(data-step);
	right: 28px;
	top: 20px;
	font-family: "Sora", "Manrope", sans-serif;
	font-size: clamp(3.8rem, 7vw, 5.9rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.08em;
	color: rgba(0, 175, 255, 0.2);
}

.volt-process-step:not(.is-current):not(.is-past) {
	transform: translateY(18px) scale(0.985);
	opacity: 0.88;
}

.volt-process-step.is-past {
	transform: translateY(-10px) scale(0.956);
	opacity: 0.44;
	filter: saturate(0.82) brightness(0.84);
	border-color: rgba(255, 255, 255, 0.05);
}

.volt-process-step.is-current {
	transform: translateY(0) scale(1);
	opacity: 1;
	border-color: rgba(0, 175, 255, 0.28);
	background:
		radial-gradient(circle at top right, rgba(0, 175, 255, 0.15), transparent 36%),
		linear-gradient(180deg, rgba(10, 18, 30, 0.98) 0%, rgba(4, 9, 17, 1) 100%);
	box-shadow:
		0 36px 100px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(0, 175, 255, 0.08) inset,
		0 0 40px rgba(0, 175, 255, 0.1);
}

.volt-process-step__body {
	position: relative;
	z-index: 1;
	max-width: 37ch;
}

.volt-process-step__number {
	display: inline-flex;
	align-items: center;
	margin-bottom: 20px;
	font-family: "Sora", "Manrope", sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: rgba(140, 223, 255, 0.9);
	text-transform: uppercase;
}

.volt-process-step h3 {
	margin: 0;
	font-family: "Sora", "Manrope", sans-serif;
	font-size: clamp(1.95rem, 2.45vw, 2.75rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.055em;
	color: #ffffff;
}

.volt-process-step p {
	margin: 18px 0 0;
	font-size: clamp(1rem, 1.12vw, 1.1rem);
	line-height: 1.8;
	color: var(--volt-text-soft);
}

.volt-process-step__meter {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 11px;
}

.volt-process-step__meter::before {
	content: "";
	width: 10px;
	height: 86px;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(0, 175, 255, 0.92) 0%, rgba(0, 175, 255, 0.18) 100%);
	box-shadow: 0 0 20px rgba(0, 175, 255, 0.22);
	opacity: 0.44;
	transform-origin: center top;
	transition:
		opacity 0.32s ease,
		box-shadow 0.32s ease,
		transform 0.32s ease;
}

.volt-process-step__meter span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 1px solid rgba(0, 175, 255, 0.26);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 12px rgba(0, 175, 255, 0.08);
	opacity: 0.44;
	transition:
		transform 0.32s ease,
		opacity 0.32s ease,
		background 0.32s ease,
		box-shadow 0.32s ease;
}

.volt-process-step.is-current .volt-process-step__meter::before {
	opacity: 0.98;
	transform: scaleY(1.05);
	box-shadow:
		0 0 0 8px rgba(0, 175, 255, 0.08),
		0 0 30px rgba(0, 175, 255, 0.28);
	animation: volt-process-meter-glow 3.6s ease-in-out infinite;
}

.volt-process-step.is-current .volt-process-step__meter span {
	opacity: 1;
	background: #8cdfff;
	box-shadow:
		0 0 0 6px rgba(0, 175, 255, 0.08),
		0 0 20px rgba(0, 175, 255, 0.24);
}

@keyframes volt-process-meter-glow {
	0%,
	100% {
		transform: scaleY(1.02);
		box-shadow:
			0 0 0 8px rgba(0, 175, 255, 0.08),
			0 0 26px rgba(0, 175, 255, 0.24);
	}
	50% {
		transform: scaleY(1.08);
		box-shadow:
			0 0 0 10px rgba(0, 175, 255, 0.12),
			0 0 30px rgba(0, 175, 255, 0.3);
	}
}

@media (max-width: 1220px) {
	.volt-process-flow__layout {
		grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
		gap: 28px;
	}

	.volt-process-step {
		padding: 30px 28px 30px 30px;
		min-height: 270px;
	}

	.volt-process-step + .volt-process-step {
		margin-top: -96px;
	}
}

@media (max-width: 1040px) {
	.volt-section--process-flow {
		padding: 108px 0 116px;
	}

	.volt-process-flow__layout {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.volt-process-flow__intro {
		position: static;
		max-width: none;
	}

	.volt-process-flow__steps-inner {
		padding-top: 8px;
		padding-bottom: 18vh;
	}

	.volt-process-step {
		position: sticky;
		top: 104px;
		min-height: 240px;
		margin: 0 0 23vh;
		padding: 26px 24px;
	}

	.volt-process-step + .volt-process-step {
		margin-top: -86px;
	}

	.volt-process-step__body {
		max-width: none;
	}
}

@media (max-width: 780px) {
	.volt-section--process-flow {
		padding: 80px 0 88px;
	}

	.volt-process-flow__intro h2 {
		font-size: clamp(1.96rem, 9vw, 2.8rem);
	}

	.volt-process-flow__intro > p:not(.volt-process-flow__question) {
		margin-top: 18px;
		font-size: 0.96rem;
		line-height: 1.64;
	}

	.volt-process-flow__question {
		margin-top: 24px;
		font-size: clamp(1.12rem, 5.6vw, 1.46rem);
		line-height: 1.42;
		max-width: none;
	}

	.volt-process-step {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
		top: 92px;
		min-height: 0;
		margin-bottom: 20vh;
		padding: 18px 16px;
		border-radius: 22px;
	}

	.volt-process-step + .volt-process-step {
		margin-top: -72px;
	}

	.volt-process-step::after {
		right: 18px;
		top: 16px;
		font-size: 3.4rem;
	}

	.volt-process-step h3 {
		font-size: clamp(1.34rem, 6.8vw, 1.8rem);
	}

	.volt-process-step p {
		margin-top: 12px;
		font-size: 0.94rem;
		line-height: 1.58;
	}

	.volt-process-step__meter {
		flex-direction: row;
		justify-content: flex-start;
		gap: 8px;
	}

	.volt-process-step__meter::before {
		width: 72px;
		height: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.volt-process-step,
	.volt-process-step__meter::before,
	.volt-process-step__meter span {
		animation: none !important;
		transition: none !important;
	}

	.volt-process-flow__layout {
		grid-template-columns: 1fr;
	}

	.volt-process-flow__intro {
		position: static;
		max-width: none;
	}

	.volt-process-flow__steps-inner {
		display: grid;
		gap: 18px;
	}

	.volt-process-step {
		position: relative;
		top: auto;
		margin: 0;
		transform: none !important;
		opacity: 1 !important;
		filter: none !important;
	}

	.volt-process-step + .volt-process-step {
		margin-top: 0;
	}
}

.volt-section--why-volt {
	position: relative;
	overflow: hidden;
	padding: 118px 0 124px;
	background:
		radial-gradient(circle at 18% 20%, rgba(0, 175, 255, 0.08), transparent 28%),
		radial-gradient(circle at 82% 22%, rgba(0, 175, 255, 0.1), transparent 26%),
		linear-gradient(180deg, rgba(3, 7, 13, 0.96) 0%, rgba(2, 4, 8, 1) 100%);
}

.volt-section--why-volt::before,
.volt-section--why-volt::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.volt-section--why-volt::before {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 84px 84px;
	mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 18%, rgba(0, 0, 0, 1) 100%);
	opacity: 0.15;
}

.volt-section--why-volt::after {
	background:
		radial-gradient(circle at 28% 72%, rgba(0, 175, 255, 0.08), transparent 24%),
		radial-gradient(circle at 74% 50%, rgba(0, 175, 255, 0.12), transparent 22%);
	filter: blur(24px);
	opacity: 0.92;
}

.volt-why-volt {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
	gap: clamp(30px, 4vw, 72px);
	align-items: start;
}

.volt-why-volt__intro h2 {
	margin: 0;
	font-family: "Sora", "Manrope", sans-serif;
	font-size: clamp(2.35rem, 4.15vw, 4.25rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.06em;
}

.volt-why-volt__title {
	display: block;
}

.volt-why-volt__intro p:not(.volt-eyebrow) {
	margin: 22px 0 0;
	max-width: 36ch;
	font-size: clamp(1rem, 1.18vw, 1.14rem);
	line-height: 1.82;
	color: var(--volt-text-soft);
}

.volt-why-volt__panel {
	position: relative;
	padding: clamp(28px, 3vw, 38px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	background:
		radial-gradient(circle at top right, rgba(0, 175, 255, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(10, 17, 28, 0.9) 0%, rgba(5, 10, 18, 0.98) 100%);
	box-shadow:
		0 28px 72px rgba(0, 0, 0, 0.38),
		0 0 0 1px rgba(255, 255, 255, 0.015) inset;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	overflow: hidden;
}

.volt-why-volt__panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 24%),
		linear-gradient(120deg, transparent 0%, rgba(0, 175, 255, 0.05) 42%, transparent 100%);
	pointer-events: none;
}

.volt-why-volt__panel-head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.volt-why-volt__panel-head span {
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #8cdfff;
}

.volt-why-volt__panel-head strong {
	font-family: "Sora", "Manrope", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: rgba(255, 255, 255, 0.72);
}

.volt-why-volt__list {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.volt-why-volt__list li {
	position: relative;
	min-height: 100%;
	padding: 18px 18px 18px 54px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.98rem;
	line-height: 1.55;
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
	transition:
		transform 0.28s ease,
		border-color 0.28s ease,
		background 0.28s ease,
		box-shadow 0.28s ease;
}

.volt-why-volt__list li::before,
.volt-why-volt__list li::after {
	content: "";
	position: absolute;
}

.volt-why-volt__list li::before {
	left: 18px;
	top: 20px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid rgba(0, 175, 255, 0.28);
	background: radial-gradient(circle, rgba(0, 175, 255, 0.9) 0%, rgba(0, 175, 255, 0.12) 72%);
	box-shadow: 0 0 18px rgba(0, 175, 255, 0.16);
}

.volt-why-volt__list li::after {
	left: 25px;
	top: 26px;
	width: 7px;
	height: 11px;
	border-right: 2px solid #020408;
	border-bottom: 2px solid #020408;
	transform: rotate(38deg);
}

.volt-why-volt__list li:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 175, 255, 0.18);
	background: rgba(0, 175, 255, 0.06);
	box-shadow:
		0 24px 48px rgba(0, 0, 0, 0.22),
		0 0 24px rgba(0, 175, 255, 0.08);
}

@media (max-width: 1080px) {
	.volt-why-volt {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.volt-why-volt__intro p:not(.volt-eyebrow) {
		max-width: none;
	}
}

@media (max-width: 780px) {
	.volt-section--why-volt {
		padding: 80px 0 88px;
	}

	.volt-why-volt__intro h2 {
		font-size: clamp(1.94rem, 9vw, 2.8rem);
	}

	.volt-why-volt__intro p:not(.volt-eyebrow) {
		font-size: 0.96rem;
		line-height: 1.64;
	}

	.volt-why-volt__panel {
		padding: 20px 16px;
		border-radius: 22px;
	}

	.volt-why-volt__panel-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		padding-bottom: 16px;
	}

	.volt-why-volt__list {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.volt-why-volt__list li {
		padding: 14px 14px 14px 46px;
		border-radius: 18px;
		font-size: 0.93rem;
		line-height: 1.5;
	}
}
