:root {
	--vfw-bg: #070b13;
	--vfw-panel: #0b121e;
	--vfw-panel-2: #101926;
	--vfw-line: #273244;
	--vfw-line-soft: #1d2736;
	--vfw-text: #f5f7fb;
	--vfw-muted: #a8b0bf;
	--vfw-dim: #737e90;
	--vfw-purple: #7447ff;
	--vfw-purple-2: #a067ff;
	--vfw-danger: #ff6b78;
	--vfw-success: #50d890;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body.vfw-wizard-page {
	margin: 0;
	background:
		radial-gradient(circle at 50% -15%, rgba(91, 62, 180, .16), transparent 36rem),
		var(--vfw-bg);
	color: var(--vfw-text);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
}

button, input, textarea { font: inherit; }
button { color: inherit; }

.vfw-wizard {
	width: min(1510px, calc(100% - 28px));
	min-height: min(960px, calc(100vh - 28px));
	margin: 14px auto;
	padding: 22px 28px 24px;
	background: linear-gradient(145deg, rgba(10, 17, 29, .98), rgba(8, 14, 24, .98));
	border: 1px solid var(--vfw-line);
	border-radius: 14px;
	position: relative;
	overflow: hidden;
}

.vfw-wizard::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 50% 30%, rgba(48, 69, 107, .09), transparent 34rem);
}

.vfw-wizard__header {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 180px 1fr 180px;
	align-items: center;
	gap: 20px;
}

.vfw-wizard__logo { display: inline-flex; width: 142px; }
.vfw-wizard__logo img { display: block; width: 100%; height: auto; }

.vfw-cancel {
	justify-self: end;
	padding: 10px 18px;
	border: 1px solid var(--vfw-line);
	border-radius: 8px;
	color: var(--vfw-text);
	font-size: 14px;
	text-decoration: none;
	transition: background .16s ease, border-color .16s ease;
}
.vfw-cancel:hover { color: #fff; text-decoration: none; background: #121c2a; border-color: #3a485d; }

.vfw-stepper { display: flex; align-items: center; justify-content: center; }
.vfw-stepper__line { width: 30px; height: 1px; background: var(--vfw-line); transition: background .2s ease; }
.vfw-stepper__line.is-complete { background: #7050d7; }
.vfw-stepper__step {
	width: 30px;
	height: 30px;
	padding: 0;
	border: 1px solid var(--vfw-line);
	border-radius: 50%;
	background: #111a28;
	display: grid;
	place-items: center;
	font-size: 13px;
	cursor: pointer;
	transition: all .18s ease;
}
.vfw-stepper__step i { display: none; font-size: 15px; }
.vfw-stepper__step.is-current { border-color: var(--vfw-purple); background: var(--vfw-purple); box-shadow: 0 0 0 4px rgba(116, 71, 255, .12); }
.vfw-stepper__step.is-complete { background: #131d2c; border-color: #3b4759; }
.vfw-stepper__step.is-complete span { display: none; }
.vfw-stepper__step.is-complete i { display: block; }

.vfw-notice {
	position: fixed;
	top: 18px;
	left: 50%;
	z-index: 100;
	transform: translate(-50%, -120px);
	min-width: min(420px, calc(100vw - 40px));
	max-width: 680px;
	padding: 12px 18px;
	border: 1px solid #42506a;
	border-radius: 9px;
	background: #131d2b;
	color: #eef3fb;
	font-size: 14px;
	text-align: center;
	opacity: 0;
	transition: transform .22s ease, opacity .22s ease;
}
.vfw-notice.is-visible { transform: translate(-50%, 0); opacity: 1; }
.vfw-notice.is-error { border-color: rgba(255, 107, 120, .55); background: #2b151d; color: #ffdce1; }
.vfw-notice.is-success { border-color: rgba(80, 216, 144, .5); background: #10251d; color: #dcffec; }

.vfw-panel {
	position: relative;
	z-index: 1;
	display: none;
	width: min(1370px, 100%);
	margin: 16px auto 0;
	animation: vfw-panel-in .24s ease both;
}
.vfw-panel.is-active { display: block; }

@keyframes vfw-panel-in {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.vfw-panel__intro { text-align: center; margin: 14px auto 28px; }
.vfw-panel__intro h1 { margin: 0; color: #f7f8fb; font-size: clamp(26px, 2.2vw, 34px); font-weight: 700; letter-spacing: -.025em; }
.vfw-panel__intro h1 span { color: var(--vfw-muted); font-weight: 500; }
.vfw-panel__intro p { margin: 8px 0 0; color: var(--vfw-muted); font-size: 14px; }

.vfw-universal-input {
	width: min(1040px, 100%);
	margin: 0 auto;
	padding: 18px 20px 17px;
	border: 1px dashed #8e62ff;
	border-radius: 11px;
	background: rgba(18, 28, 42, .76);
	transition: border-color .18s ease, background .18s ease;
}
.vfw-universal-input:focus-within { border-color: #ac8bff; background: rgba(21, 32, 49, .94); }
.vfw-universal-input.is-hidden { display: none; }
.vfw-universal-input textarea {
	display: block;
	width: 100%;
	min-height: 70px;
	padding: 0;
	resize: vertical;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--vfw-text);
	font-size: 16px;
	line-height: 1.55;
}
.vfw-universal-input textarea::placeholder, .vfw-url-row input::placeholder { color: #8993a5; }
.vfw-universal-input__tools { display: flex; align-items: center; gap: 10px; }
.vfw-tool-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 9px 13px;
	border: 1px solid #2c394b;
	border-radius: 7px;
	background: #111b29;
	color: #e7eaf0;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
}
.vfw-tool-button:hover { border-color: #4a5870; background: #162233; }
.vfw-tool-button i { font-size: 17px; }
.vfw-tool-button.is-disabled, .vfw-tool-button[aria-disabled="true"] { opacity: .5; cursor: not-allowed; pointer-events: none; }
.vfw-url-row {
	display: none;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	padding: 10px 12px;
	border: 1px solid #293649;
	border-radius: 7px;
	background: #0c1521;
}
.vfw-url-row.is-visible { display: flex; }
.vfw-url-row i { color: #8d6fff; font-size: 20px; }
.vfw-url-row input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--vfw-text); }

.vfw-upload-hint { margin: 10px 0 0; color: #9ca3af; font-size: .78rem; }
.vfw-upload-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 0; }
.vfw-upload-list:not(:empty) { margin-top: 14px; }
.vfw-upload-item {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 220px;
	max-width: 340px;
	padding: 7px 8px;
	border: 1px solid #293649;
	border-radius: 7px;
	background: #0d1622;
}
.vfw-upload-item__thumb { width: 38px; height: 38px; flex: 0 0 auto; border-radius: 5px; object-fit: cover; background: #182434; }
.vfw-upload-item__fallback { display: grid; place-items: center; font-size: 20px; color: #8b74ff; }
.vfw-upload-item__copy { min-width: 0; flex: 1; }
.vfw-upload-item__copy strong, .vfw-upload-item__copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vfw-upload-item__copy strong { font-size: 12px; font-weight: 600; }
.vfw-upload-item__copy small { margin-top: 2px; color: var(--vfw-dim); font-size: 11px; }
.vfw-upload-item button { padding: 3px; border: 0; background: transparent; color: #8e98a8; cursor: pointer; }
.vfw-upload-item button:hover { color: var(--vfw-danger); }
.vfw-upload-item.is-uploading { opacity: .7; }

.vfw-divider { display: flex; align-items: center; width: min(1100px, 100%); margin: 22px auto; color: var(--vfw-muted); font-size: 13px; }
.vfw-divider::before, .vfw-divider::after { content: ""; height: 1px; flex: 1; background: var(--vfw-line-soft); }
.vfw-divider span { padding: 0 18px; }

.vfw-mode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; width: min(1220px, 100%); margin: 0 auto; }
.vfw-mode-card {
	min-height: 162px;
	padding: 22px 18px 18px;
	border: 1px solid #344153;
	border-radius: 10px;
	background: linear-gradient(150deg, rgba(20, 31, 46, .94), rgba(13, 22, 34, .94));
	text-align: center;
	cursor: pointer;
	transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.vfw-mode-card:hover { transform: translateY(-2px); border-color: #5b6a80; }
.vfw-mode-card.is-selected { border-color: #7650f8; background: rgba(40, 29, 73, .38); }
.vfw-mode-card > i { display: block; margin-bottom: 10px; font-size: 42px; }
.vfw-mode-card--web > i { color: #7953ff; }
.vfw-mode-card--image > i { color: #79d1af; }
.vfw-mode-card--avatar > i { color: #45c8ed; }
.vfw-mode-card--generated-avatar > i { color: #9f73ff; }
.vfw-mode-card--text > i { color: #f0a044; }
.vfw-mode-card--video > i { color: #ad47c5; }

.vfw-avatar-creator, .vfw-avatar-library { display: none; width: min(980px, 100%); margin: 18px auto 0; border: 1px solid #2b3b53; border-radius: 18px; background: rgba(9, 20, 37, .82); padding: 20px; }
.vfw-avatar-creator.is-visible, .vfw-avatar-library.is-visible { display: block; }
.vfw-avatar-creator__head, .vfw-avatar-library__head { display: flex; align-items: flex-start; gap: 14px; }
.vfw-avatar-creator__head > span { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 48px; border-radius: 14px; background: linear-gradient(135deg,#2689ff,#a822e8); color: #fff; font-size: 25px; }
.vfw-avatar-creator__head small, .vfw-avatar-library__head small { color: #43c8ff; font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.vfw-avatar-creator__head h2, .vfw-avatar-library__head h2 { margin: 3px 0 4px; font-size: 20px; }
.vfw-avatar-creator__head p { margin: 0; color: var(--vfw-muted); font-size: 13px; }
.vfw-avatar-creator__fields { display: grid; gap: 14px; margin-top: 18px; }
.vfw-avatar-creator__fields label { display: grid; gap: 7px; color: #dce7f8; font-size: 13px; font-weight: 700; }
.vfw-avatar-creator__fields input, .vfw-avatar-creator__fields textarea { width: 100%; border: 1px solid #34445d; border-radius: 11px; background: #071325; color: #f5f8ff; padding: 12px 14px; outline: none; resize: vertical; }
.vfw-avatar-creator__fields input:focus, .vfw-avatar-creator__fields textarea:focus { border-color: #8a63ff; box-shadow: 0 0 0 3px rgba(138,99,255,.12); }
.vfw-avatar-creator__fields label > small { color: var(--vfw-muted); font-weight: 400; line-height: 1.45; }
.vfw-avatar-library__head { justify-content: space-between; align-items: center; }
.vfw-avatar-library__head a { color: #77cfff; font-size: 12px; font-weight: 700; }
.vfw-avatar-library__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-top: 14px; }
.vfw-avatar-source { display: grid; grid-template-columns: 52px minmax(0,1fr) auto; align-items: center; gap: 11px; min-width: 0; border: 1px solid #2d3d56; border-radius: 13px; background: #0a1729; color: #eef5ff; padding: 8px; text-align: left; }
.vfw-avatar-source:hover { border-color: #7858f6; background: #111d33; }
.vfw-avatar-source img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; }
.vfw-avatar-source span, .vfw-avatar-source strong, .vfw-avatar-source small { display: block; min-width: 0; }
.vfw-avatar-source strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vfw-avatar-source small { margin-top: 3px; color: var(--vfw-muted); font-size: 11px; }
.vfw-avatar-source > i { color: #59c8ff; font-size: 21px; }
.vfw-mode-card strong, .vfw-mode-card span { display: block; }
.vfw-mode-card strong { margin-bottom: 7px; font-size: 16px; }
.vfw-mode-card span { color: var(--vfw-muted); font-size: 13px; line-height: 1.5; }

.vfw-reference-setup { display: none; width: min(1040px, 100%); margin: 0 auto; padding: 22px; border: 1px solid rgba(125, 89, 255, .5); border-radius: 12px; background: linear-gradient(145deg, rgba(39, 28, 70, .6), rgba(13, 22, 34, .96)); }
.vfw-reference-setup.is-visible { display: block; }
.vfw-reference-setup__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.vfw-reference-setup__head small { color: #a991ff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.vfw-reference-setup__head h2 { margin: 4px 0 0; font-size: 20px; }
.vfw-reference-setup__head > span { padding: 7px 10px; border: 1px solid #344153; border-radius: 20px; color: #9ca8b9; font-size: 11px; white-space: nowrap; }
.vfw-reference-setup__head > span i { margin-right: 5px; color: #79d1af; }
.vfw-reference-upload { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 14px; padding: 12px 13px; border: 1px dashed #55437f; border-radius: 9px; background: rgba(9, 16, 27, .5); }
.vfw-reference-upload strong, .vfw-reference-upload span { display: block; }
.vfw-reference-upload strong { margin-bottom: 3px; font-size: 13px; }
.vfw-reference-upload span { color: #8995a7; font-size: 11px; }
.vfw-reference-upload-list { margin-bottom: 14px; }
.vfw-reference-modes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.vfw-reference-modes > button { display: flex; align-items: center; gap: 10px; min-height: 74px; padding: 12px; border: 1px solid #344153; border-radius: 9px; background: rgba(11, 20, 31, .78); color: #e8edf5; text-align: left; cursor: pointer; }
.vfw-reference-modes > button:hover, .vfw-reference-modes > button.is-selected { border-color: #8a69ff; background: rgba(64, 43, 105, .6); }
.vfw-reference-modes > button:disabled { opacity: .48; cursor: not-allowed; }
.vfw-reference-modes > button > i { flex: 0 0 auto; color: #a991ff; font-size: 25px; }
.vfw-reference-modes strong, .vfw-reference-modes small { display: block; }
.vfw-reference-modes strong { margin-bottom: 4px; font-size: 13px; }
.vfw-reference-modes small { color: #8995a7; font-size: 11px; line-height: 1.35; }
.vfw-reference-prompt { display: none; margin-top: 16px; }
.vfw-reference-prompt.is-visible { display: block; }
.vfw-reference-prompt label { display: flex; justify-content: space-between; margin-bottom: 7px; color: #dfe5ee; font-size: 12px; font-weight: 700; }
.vfw-reference-prompt label span { color: #7f8b9d; font-weight: 400; }
.vfw-reference-prompt textarea { width: 100%; padding: 12px 13px; resize: vertical; border: 1px solid #3b485b; border-radius: 8px; outline: 0; background: #0c1520; color: #edf1f7; font: inherit; line-height: 1.5; }
.vfw-reference-prompt textarea:focus { border-color: #8a69ff; box-shadow: 0 0 0 3px rgba(122, 82, 248, .13); }
.vfw-reference-examples { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }
.vfw-reference-examples button { padding: 6px 9px; border: 1px solid #374459; border-radius: 18px; background: #111c2a; color: #aab5c5; font-size: 11px; cursor: pointer; }
.vfw-reference-examples button:hover { border-color: #7650f8; color: #e7e1ff; }
.vfw-reference-prompt > p { margin: 10px 0 0; color: #8490a2; font-size: 11px; line-height: 1.45; }
.vfw-reference-prompt > p.vfw-reference-policy { padding: 9px 10px; border: 1px solid rgba(244, 171, 77, .32); border-radius: 7px; background: rgba(119, 70, 18, .16); color: #e5b36f; }
.vfw-reference-prompt > p i { margin-right: 4px; }

.vfw-rights {
	display: none;
	align-items: flex-start;
	gap: 10px;
	width: min(720px, 100%);
	margin: 20px auto 0;
	padding: 10px 13px;
	border: 1px solid #283447;
	border-radius: 7px;
	background: #0d1521;
	color: var(--vfw-muted);
	font-size: 12px;
	cursor: pointer;
}
.vfw-rights.is-visible { display: flex; }
.vfw-rights input { margin-top: 3px; accent-color: var(--vfw-purple); }
.vfw-rights i { margin-right: 4px; }
.vfw-security-note { margin: 22px 0 0; color: #768195; font-size: 12px; text-align: center; }
.vfw-security-note i { margin-right: 6px; }

.vfw-channel-grid {
	display: grid;
	grid-template-columns: repeat(10, minmax(0, 1fr));
	gap: 17px;
	width: min(1180px, 100%);
	margin: 40px auto 0;
}
.vfw-channel-card {
	grid-column: span 2;
	min-height: 190px;
	padding: 24px 13px 16px;
	position: relative;
	border: 1px solid #334054;
	border-radius: 11px;
	background: linear-gradient(155deg, #121d2b, #0d1622);
	text-align: center;
	cursor: pointer;
	transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.vfw-channel-card--wide { grid-column: span 3; min-height: 150px; }
.vfw-channel-card--facebook { grid-column: 2 / span 2; }
.vfw-channel-card:hover { transform: translateY(-2px); border-color: #5d6b80; }
.vfw-channel-card.is-selected { border-color: #865bff; background: linear-gradient(155deg, rgba(44, 31, 78, .66), #111a28); box-shadow: inset 0 0 0 1px rgba(134, 91, 255, .38); }
.vfw-card-check { display: none; position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; border-radius: 50%; background: var(--vfw-purple); place-items: center; font-size: 15px; z-index: 3; }
.is-selected > .vfw-card-check { display: grid; }
.vfw-channel-card__icon { display: block; margin: 0 auto 13px; font-size: 50px; line-height: 1; }
.vfw-channel-card--instagram .vfw-channel-card__icon { color: #f45d9b; }
.vfw-channel-card--tiktok .vfw-channel-card__icon { color: #f4f6fa; text-shadow: 2px 1px #fa2c68, -2px -1px #23eef0; }
.vfw-channel-card--youtube .vfw-channel-card__icon, .vfw-channel-card--shorts .vfw-channel-card__icon { color: #ff202c; }
.vfw-channel-card--linkedin .vfw-channel-card__icon { color: #3f9be9; }
.vfw-channel-card--facebook .vfw-channel-card__icon { color: #4d8ff7; }
.vfw-channel-card--website .vfw-channel-card__icon { color: #8792a4; }
.vfw-channel-card--auto .vfw-channel-card__icon { color: #9c7cff; }
.vfw-channel-card strong, .vfw-channel-card small { display: block; }
.vfw-channel-card strong { min-height: 42px; font-size: 16px; line-height: 1.25; }
.vfw-channel-card--wide strong { min-height: auto; }
.vfw-channel-card small { margin-top: 7px; color: var(--vfw-muted); font-size: 12px; line-height: 1.35; }

.vfw-panel__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 30px; }
.vfw-panel__footer--first { justify-content: center; margin-top: 18px; }
.vfw-panel__footer--first .vfw-primary { min-width: 180px; }
.vfw-back, .vfw-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}
.vfw-back { border: 1px solid #2d394b; background: #0e1723; color: #e7eaf0; }
.vfw-back:hover { background: #152131; border-color: #47566c; }
.vfw-primary { border: 1px solid transparent; background: linear-gradient(135deg, #5c31e9, #8355ff); color: #fff; }
.vfw-primary:hover { filter: brightness(1.1); }
.vfw-primary:disabled { cursor: not-allowed; opacity: .5; filter: none; }
.vfw-primary--create { min-width: 190px; }

.vfw-style-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: min(1210px, 100%); margin: 36px auto 0; }
.vfw-style-card {
	padding: 0;
	position: relative;
	overflow: hidden;
	border: 1px solid #354256;
	border-radius: 10px;
	background: #111b28;
	cursor: pointer;
	transition: transform .16s ease, border-color .16s ease;
}
.vfw-style-card:hover { transform: translateY(-2px); border-color: #64728a; }
.vfw-style-card.is-selected { border-color: #855cff; box-shadow: 0 0 0 2px rgba(133, 92, 255, .38); }
.vfw-style-card__preview { display: grid; place-items: center; height: 136px; position: relative; overflow: hidden; background: #202b37; }
.vfw-style-card__preview::before, .vfw-style-card__preview::after { content: ""; position: absolute; }
.vfw-style-card__preview video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vfw-style-card__preview:has(video)::before, .vfw-style-card__preview:has(video)::after { display: none; }
.vfw-style-card__preview > i { width: 50px; height: 50px; display: grid; place-items: center; z-index: 2; border: 2px solid rgba(255,255,255,.85); border-radius: 50%; background: rgba(5,9,15,.52); color: #fff; font-size: 24px; padding-left: 3px; }
.vfw-style-card > strong { display: block; padding: 12px; font-size: 14px; font-weight: 600; }

.vfw-style-preview--modern-clean { background: linear-gradient(150deg, #d8d2c2, #7b8277 52%, #272d2a); }
.vfw-style-preview--modern-clean::before { width: 48%; height: 60%; left: 8%; bottom: 0; background: #c7c1b2; border-radius: 40% 40% 0 0; box-shadow: 130px 10px 0 #303a35; }
.vfw-style-preview--cinematic { background: linear-gradient(180deg, #7cb2d1 0 42%, #2b5165 43% 55%, #1b2428 56%); }
.vfw-style-preview--cinematic::before { inset: 34px -20px auto; height: 60px; background: #243d48; transform: skewY(-12deg); }
.vfw-style-preview--luxury { background: radial-gradient(circle at 60% 42%, #6f6a62, #1d1b1b 36%, #08090b 72%); }
.vfw-style-preview--luxury::before { width: 74px; height: 74px; border: 12px solid #a99d80; border-radius: 50%; }
.vfw-style-preview--social { background: linear-gradient(135deg, #10133b, #ec178c 45%, #2b50ff); }
.vfw-style-preview--social::before { width: 86px; height: 110px; border-radius: 48% 48% 38% 38%; background: #29233f; box-shadow: 0 -20px 30px #17daff; }
.vfw-style-preview--product-tech { background: radial-gradient(circle at 55% 40%, #315775, #111923 46%, #030608); }
.vfw-style-preview--product-tech::before { width: 150px; height: 72px; border-radius: 34px 20px 30px 18px; background: #151b22; border: 1px solid #5e7585; transform: rotate(-15deg); }
.vfw-style-preview--ugc { background: linear-gradient(130deg, #d7b08f, #786151 56%, #2d3938); }
.vfw-style-preview--ugc::before { width: 80px; height: 110px; border-radius: 48% 48% 28% 28%; background: #ad8169; }
.vfw-style-preview--minimalist { background: linear-gradient(145deg, #e7e4dd, #a4a3a0); }
.vfw-style-preview--minimalist::before { width: 54px; height: 88px; border-radius: 50% 50% 42% 42%; background: #f5f3ef; box-shadow: 72px 20px 0 #c9c5bd, -70px 30px 0 #dedad2; }
.vfw-style-preview--storytelling { background: linear-gradient(180deg, #e6a95d 0 45%, #6d442b 46% 61%, #17211f 62%); }
.vfw-style-preview--storytelling::before { width: 35%; height: 48%; bottom: 0; right: 8%; background: #1e2723; clip-path: polygon(50% 0, 100% 100%, 0 100%); }

.vfw-ai-choice { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 22px auto 0; padding: 12px 25px; border: 1px solid #344155; border-radius: 8px; background: #111a27; color: #f0f2f7; font-weight: 600; cursor: pointer; }
.vfw-ai-choice i { color: #a17aff; font-size: 20px; }
.vfw-ai-choice.is-selected { border-color: #8058fb; background: rgba(61, 39, 105, .35); }

.vfw-brand-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; width: min(1060px, 100%); margin: 42px auto 0; }
.vfw-brand-card, .vfw-no-brand {
	min-height: 300px;
	padding: 22px;
	position: relative;
	border: 1px solid #354256;
	border-radius: 11px;
	background: linear-gradient(150deg, #121c2a, #0c1520);
	cursor: pointer;
	text-align: left;
	transition: border-color .16s ease, transform .16s ease;
}
.vfw-brand-card:hover, .vfw-no-brand:hover { transform: translateY(-2px); border-color: #59677d; }
.vfw-brand-card.is-selected, .vfw-no-brand.is-selected { border-color: #895eff; box-shadow: inset 0 0 0 1px rgba(137, 94, 255, .42); }
.vfw-brand-card__head { display: flex; align-items: center; gap: 14px; }
.vfw-brand-avatar { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid #4b586b; border-radius: 50%; background: #0b111a; color: #fff; font-size: 21px; text-transform: lowercase; }
.vfw-brand-card__head strong, .vfw-brand-card__head small { display: block; }
.vfw-brand-card__head strong { font-size: 17px; }
.vfw-brand-card__head small { margin-top: 3px; color: var(--vfw-dim); font-size: 12px; }
.vfw-brand-card__swatches { display: flex; align-items: center; gap: 10px; margin: 18px 0; }
.vfw-brand-card__swatches i { width: 24px; height: 24px; display: block; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: var(--swatch); }
.vfw-brand-card__swatches span { margin-left: 4px; font-size: 19px; font-weight: 600; }
.vfw-brand-card ul { margin: 0; padding: 0; border: 1px solid #293548; border-radius: 7px; list-style: none; }
.vfw-brand-card li { display: flex; justify-content: space-between; gap: 15px; padding: 10px 12px; border-bottom: 1px solid #263244; font-size: 12px; }
.vfw-brand-card li:last-child { border-bottom: 0; }
.vfw-brand-card li span { color: var(--vfw-muted); }
.vfw-brand-card li strong { max-width: 65%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 500; }
.vfw-no-brand { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.vfw-no-brand > i { color: #798598; font-size: 58px; }
.vfw-no-brand > strong { margin-top: 12px; font-size: 17px; }
.vfw-no-brand > p { margin: 9px 0 20px; color: var(--vfw-muted); font-size: 13px; }
.vfw-add-brand { display: inline-flex; align-items: center; gap: 7px; padding: 10px 15px; border: 1px solid #3a475b; border-radius: 7px; background: #111a27; font-size: 13px; font-weight: 600; }
.vfw-brand-note { width: min(760px, 100%); margin: 24px auto 0; padding: 10px 14px; border: 1px solid #293548; border-radius: 7px; color: #7e899b; font-size: 12px; text-align: center; }
.vfw-brand-note i { margin-right: 7px; }

.vfw-audio-layout { width: min(1040px, 100%); margin: 34px auto 0; }
.vfw-audio-block {
	padding: 18px 20px;
	border: 1px solid #303d50;
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(18, 28, 42, .96), rgba(12, 20, 31, .96));
}
.vfw-audio-block + .vfw-audio-block { margin-top: 14px; }
.vfw-audio-block__head { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.vfw-audio-block__head > i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 9px; background: rgba(116, 71, 255, .15); color: #9b7cff; font-size: 22px; }
.vfw-audio-block__head span, .vfw-audio-block__head strong, .vfw-audio-block__head small { display: block; }
.vfw-audio-block__head strong { font-size: 15px; }
.vfw-audio-block__head small { margin-top: 2px; color: var(--vfw-muted); font-size: 12px; font-weight: 400; }
.vfw-choice-row { display: flex; flex-wrap: wrap; gap: 9px; }
.vfw-choice-row button {
	min-width: 116px;
	padding: 9px 14px;
	border: 1px solid #344257;
	border-radius: 8px;
	background: #0d1622;
	font-size: 13px;
	cursor: pointer;
}
.vfw-choice-row button:hover, .vfw-audio-options > button:hover { border-color: #5d6b82; }
.vfw-choice-row button.is-selected, .vfw-audio-options > button.is-selected { border-color: #855bff; background: rgba(116, 71, 255, .16); box-shadow: inset 0 0 0 1px rgba(133, 91, 255, .28); }
.vfw-audio-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.vfw-audio-options--pair { grid-template-columns: repeat(2, 1fr); }
.vfw-audio-options > button { display: flex; align-items: center; gap: 11px; min-height: 70px; padding: 12px; border: 1px solid #344257; border-radius: 9px; background: #0d1622; text-align: left; cursor: pointer; }
.vfw-audio-options > button > i { color: #9878ff; font-size: 26px; }
.vfw-audio-options span, .vfw-audio-options strong, .vfw-audio-options small { display: block; }
.vfw-audio-options strong { font-size: 13px; }
.vfw-audio-options small { margin-top: 3px; color: var(--vfw-muted); font-size: 11px; font-weight: 400; }
.vfw-voice-setup { display: none; margin-top: 14px; padding-top: 14px; border-top: 1px solid #273346; }
.vfw-voice-setup.is-visible { display: block; }
.vfw-voice-setup .vfw-audio-block__head { margin: 16px 0 10px; }
.vfw-voice-setup .vfw-audio-block__head:first-child { margin-top: 0; }
.vfw-voice-profile-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-bottom:4px}.vfw-voice-profile-grid>button{display:flex;align-items:center;gap:9px;min-height:58px;padding:10px 12px;border:1px solid #2b3953;border-radius:8px;background:#091427;color:#dbe7f7;text-align:left}.vfw-voice-profile-grid>button>i{color:#4bbcff;font-size:20px}.vfw-voice-profile-grid>button span,.vfw-voice-profile-grid>button strong,.vfw-voice-profile-grid>button small{display:block}.vfw-voice-profile-grid>button small{margin-top:2px;color:#748bab;font-size:10px}.vfw-voice-profile-grid>button.is-selected{border-color:#3aaeff;background:#102449;box-shadow:inset 0 0 0 1px #2779d4}.vfw-manage-voices{display:flex;align-items:center;justify-content:center;gap:5px;min-height:58px;border:1px dashed #354869;border-radius:8px;color:#79bfff;font-size:11px}.vfw-manage-voices:hover{color:#b2ddff;text-decoration:none}#js-vfw-auto-voice-fields.is-hidden{display:none}
.vfw-character-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.vfw-character-grid > button { display: flex; align-items: flex-start; gap: 10px; min-height: 72px; padding: 11px; border: 1px solid #344257; border-radius: 9px; background: #0d1622; text-align: left; cursor: pointer; }
.vfw-character-grid > button:hover { border-color: #5d6b82; }
.vfw-character-grid > button.is-selected { border-color: #855bff; background: rgba(116, 71, 255, .16); box-shadow: inset 0 0 0 1px rgba(133, 91, 255, .28); }
.vfw-character-grid > button > i { color: #9878ff; font-size: 20px; }
.vfw-character-grid span, .vfw-character-grid strong, .vfw-character-grid small { display: block; }
.vfw-character-grid strong { font-size: 13px; }
.vfw-character-grid small { margin-top: 3px; color: var(--vfw-muted); font-size: 11px; font-weight: 400; }
.vfw-voice-preview-row { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.vfw-voice-preview-row.is-off { display: none; }
.vfw-voice-preview-row button { padding: 10px 14px; border: 1px solid #5940ae; border-radius: 7px; background: #20164a; color: #f4efff; cursor: pointer; }
.vfw-voice-preview-row button:disabled { opacity: .45; cursor: not-allowed; }
.vfw-voice-preview-row > span { color: var(--vfw-muted); font-size: 11px; }
.vfw-audio-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.vfw-audio-pair .vfw-audio-block { margin: 0; }

.vfw-tier-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	width: min(1040px, 100%);
	margin: 46px auto 0;
}
.vfw-tier-card {
	min-height: 310px;
	padding: 28px 24px 24px;
	position: relative;
	border: 1px solid #354256;
	border-radius: 13px;
	background: linear-gradient(150deg, rgba(18, 29, 44, .98), rgba(10, 18, 29, .98));
	text-align: left;
	cursor: pointer;
	transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.vfw-tier-card, .vfw-tier-card * { cursor: pointer; }
.vfw-tier-card[aria-disabled="true"], .vfw-tier-card[aria-disabled="true"] * { cursor: not-allowed; }
.vfw-mode-card[aria-disabled="true"] { opacity: .48; cursor: not-allowed; filter: saturate(.45); }
.vfw-mode-card[aria-disabled="true"] em { display: inline-flex; width: max-content; margin-top: 8px; padding: 4px 8px; border: 1px solid rgba(148,163,184,.24); border-radius: 999px; color: #94a3b8; font-size: 10px; font-style: normal; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.vfw-tier-card:hover { transform: translateY(-3px); border-color: #64738a; }
.vfw-tier-card.is-unavailable { opacity: .48; filter: saturate(.35); }
.vfw-tier-card.is-unavailable:hover { transform: none; border-color: #354256; }
.vfw-tier-card.is-selected { border-color: #865bff; box-shadow: inset 0 0 0 1px rgba(134, 91, 255, .42), 0 18px 48px rgba(35, 20, 82, .18); }
.vfw-tier-card--recommended::before { content: "Empfohlen"; position: absolute; top: -12px; left: 22px; padding: 5px 10px; border-radius: 999px; background: linear-gradient(135deg, #5d34e9, #8959ff); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.vfw-tier-card__icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 25px; border: 1px solid rgba(143, 107, 255, .28); border-radius: 14px; background: rgba(116, 71, 255, .12); color: #a88cff; font-size: 29px; }
.vfw-tier-card > small { display: block; color: #9780ef; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.vfw-tier-card > strong { display: block; margin-top: 7px; font-size: 25px; }
.vfw-tier-card > p { min-height: 66px; margin: 13px 0 24px; color: var(--vfw-muted); font-size: 13px; line-height: 1.65; }
.vfw-tier-card__meta { display: inline-flex; align-items: center; gap: 7px; color: #c7ced9; font-size: 12px; }
.vfw-tier-card__meta i { color: var(--vfw-success); font-size: 17px; }
.vfw-tier-card__availability, .vfw-tier-card__forced { display: none; align-items: center; gap: 6px; margin-top: 12px; font-size: 11px; font-weight: 600; }
.vfw-tier-card.is-unavailable .vfw-tier-card__availability { display: flex; color: #aab2c0; }
.vfw-tier-card.is-v2v-locked .vfw-tier-card__forced { display: flex; color: #a991ff; }
.vfw-tier-card__availability i, .vfw-tier-card__forced i { font-size: 15px; }
.vfw-tier-note { width: min(760px, 100%); margin: 24px auto 0; color: #7f8a9d; font-size: 12px; text-align: center; }
.vfw-tier-note i { margin-right: 6px; }

.vfw-modal { display: none; position: fixed; inset: 0; z-index: 200; align-items: center; justify-content: center; padding: 20px; }
.vfw-modal.is-open { display: flex; }
.vfw-modal__backdrop { position: absolute; inset: 0; background: rgba(1, 4, 9, .78); backdrop-filter: blur(4px); }
.vfw-modal__dialog { width: min(520px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: 22px; position: relative; border: 1px solid #37455a; border-radius: 12px; background: #101925; color: var(--vfw-text); }
.vfw-modal__dialog header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.vfw-modal__dialog h2 { margin: 0; font-size: 21px; }
.vfw-modal__dialog header button { padding: 4px; border: 0; background: transparent; color: var(--vfw-muted); font-size: 22px; cursor: pointer; }
.vfw-modal__dialog label { display: block; margin-bottom: 14px; color: #d9dde5; font-size: 12px; font-weight: 600; }
.vfw-modal__dialog input, .vfw-modal__dialog textarea { display: block; width: 100%; margin-top: 6px; padding: 10px 11px; border: 1px solid #303d50; border-radius: 7px; outline: 0; background: #0a121d; color: #f4f6fa; font-size: 14px; }
.vfw-modal__dialog input:focus, .vfw-modal__dialog textarea:focus { border-color: #7851f5; }
.vfw-modal__dialog input[type="color"] { height: 42px; padding: 4px; }
.vfw-modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vfw-modal__dialog footer { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }
.vfw-library-modal__dialog{width:min(920px,100%)}.vfw-library-modal__dialog header small{display:block;margin-bottom:4px;color:#43c8ff;font-size:10px;font-weight:850;letter-spacing:.14em}.vfw-library-search{position:relative;margin:0 0 12px!important}.vfw-library-search>i{position:absolute;left:13px;top:50%;z-index:1;transform:translateY(-50%);color:#7f8998;font-size:18px}.vfw-library-search input{margin:0!important;padding-left:40px!important}.vfw-library-status{min-height:20px;margin:0 0 12px;color:#929dae;font-size:12px}.vfw-library-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:11px;max-height:min(54vh,520px);overflow:auto;padding:2px}.vfw-library-card{position:relative;display:flex;min-width:0;flex-direction:column;padding:0;overflow:hidden;border:1px solid #28374b;border-radius:11px;background:#0a121d;color:#f0f3f8;text-align:left;cursor:pointer;transition:border-color .16s,transform .16s}.vfw-library-card:hover{transform:translateY(-2px);border-color:#7552ee}.vfw-library-card img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover;background:#172131}.vfw-library-card span{display:block;min-width:0;padding:10px 34px 10px 11px}.vfw-library-card strong,.vfw-library-card small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vfw-library-card strong{font-size:11px}.vfw-library-card small{margin-top:3px;color:#8792a2;font-size:9px}.vfw-library-card>i{position:absolute;right:9px;bottom:15px;color:#8d72ff;font-size:19px}.vfw-library-card.is-loading{opacity:.58}.vfw-library-card.is-added{border-color:#33be84}.vfw-library-card.is-added>i{color:#33be84}.vfw-library-modal__dialog>footer{align-items:center;justify-content:space-between;color:#909bad;font-size:11px}

@media (max-width: 1050px) {
	.vfw-wizard { width: calc(100% - 16px); min-height: calc(100vh - 16px); margin: 8px auto; padding: 18px; }
	.vfw-mode-grid, .vfw-style-grid { grid-template-columns: repeat(2, 1fr); }
	.vfw-avatar-library__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.vfw-channel-grid { grid-template-columns: repeat(4, 1fr); }
	.vfw-channel-card, .vfw-channel-card--wide, .vfw-channel-card--facebook { grid-column: span 1; min-height: 170px; }
}

@media (max-width: 720px) {
	body.vfw-wizard-page { background: var(--vfw-bg); }
	.vfw-wizard { width: 100%; min-height: 100vh; margin: 0; padding: 15px; border: 0; border-radius: 0; }
	.vfw-wizard__header { grid-template-columns: 120px 1fr auto; gap: 10px; }
	.vfw-wizard__logo { width: 116px; }
	.vfw-cancel { padding: 8px 10px; font-size: 12px; }
	.vfw-stepper { position: absolute; top: 52px; left: 50%; transform: translateX(-50%); }
	.vfw-panel { margin-top: 48px; }
	.vfw-panel__intro { margin-bottom: 22px; }
	.vfw-panel__intro h1 { font-size: 26px; }
	.vfw-universal-input { padding: 15px; }
	.vfw-universal-input__tools { flex-wrap: wrap; }
	.vfw-tool-button { flex: 1 1 auto; justify-content: center; }
	.vfw-reference-upload { align-items: stretch; flex-direction: column; }
	.vfw-mode-grid, .vfw-style-grid, .vfw-brand-grid, .vfw-audio-options, .vfw-audio-options--pair, .vfw-character-grid, .vfw-audio-pair, .vfw-tier-grid { grid-template-columns: 1fr; }
	.vfw-reference-setup { padding: 16px; }
	.vfw-reference-setup__head { flex-direction: column; }
	.vfw-reference-modes { grid-template-columns: 1fr; }
	.vfw-tier-grid { margin-top: 30px; }
	.vfw-tier-card { min-height: 230px; }
	.vfw-tier-card > p { min-height: 0; }
	.vfw-mode-card { min-height: 140px; }
	.vfw-avatar-library__grid { grid-template-columns: 1fr; }
	.vfw-channel-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
	.vfw-channel-card { min-height: 160px; }
	.vfw-channel-card__icon { font-size: 42px; }
	.vfw-panel__footer { position: sticky; bottom: 0; margin: 24px -15px -15px; padding: 13px 15px; background: rgba(8, 13, 22, .94); border-top: 1px solid #222d3c; backdrop-filter: blur(8px); }
	.vfw-brand-card, .vfw-no-brand { min-height: 260px; }
	.vfw-voice-preview-row { align-items: stretch; flex-direction: column; }
}

@media (max-width: 430px) {
	.vfw-wizard__header { grid-template-columns: 1fr auto; }
	.vfw-stepper { top: 50px; }
	.vfw-stepper__line { width: 18px; }
	.vfw-cancel { grid-column: 2; }
	.vfw-channel-grid { grid-template-columns: 1fr; }
	.vfw-channel-card { min-height: 145px; }
	.vfw-modal__row { grid-template-columns: 1fr; gap: 0; }
	.vfw-library-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.vfw-library-modal__dialog>footer{align-items:stretch;flex-direction:column}
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
	.mdi-spin, .mdi-spin:before { animation-duration: 3.6s !important; }
	.vfw-analysis__glow { animation-duration: 5.8s !important; }
	.vfw-analysis__scan { animation-duration: 4.2s !important; }
	.vfw-analysis__spark { animation-duration: 5.4s !important; }
	.vfw-analysis__progress span { animation-duration: 4.4s !important; }
	.vfw-analysis__words span { animation-duration: 16s !important; }
}

.mdi-spin, .mdi-spin:before { animation-duration: 3.6s !important; }

body.vfw-is-analyzing { overflow: hidden; }
.vfw-analysis { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; overflow: hidden; background: #080c14; color: #f4f6fb; }
.vfw-analysis[hidden] { display: none; }
.vfw-analysis__glow { position: absolute; width: min(760px, 88vw); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(113, 64, 239, .28), rgba(24, 109, 231, .1) 38%, transparent 70%); animation: vfw-analysis-glow 5.8s ease-in-out infinite; }
.vfw-analysis__stage { position: relative; width: min(680px, calc(100% - 40px)); text-align: center; }
.vfw-analysis__visual { position: relative; width: 128px; height: 128px; margin: 0 auto 30px; display: grid; place-items: center; }
.vfw-analysis__frame { position: relative; width: 92px; height: 66px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(144, 111, 255, .65); border-radius: 15px; background: linear-gradient(145deg, rgba(43, 27, 92, .95), rgba(14, 28, 48, .96)); color: #b59dff; font-size: 26px; box-shadow: 0 20px 70px rgba(76, 42, 180, .35); }
.vfw-analysis__frame::before,.vfw-analysis__frame::after { content: ""; position: absolute; top: 0; bottom: 0; width: 4px; opacity: .45; background: repeating-linear-gradient(180deg,#a991ff 0 4px,transparent 4px 9px); }.vfw-analysis__frame::before{left:8px}.vfw-analysis__frame::after{right:8px}
.vfw-analysis__scan { position: absolute; left: 12px; right: 12px; top: 29px; height: 2px; border-radius: 999px; background: linear-gradient(90deg,transparent,#55d9ff,#9e70ff,transparent); box-shadow: 0 0 18px #6e8fff; animation: vfw-analysis-scan 4.2s ease-in-out infinite; }
.vfw-analysis__spark { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #8c66ff; box-shadow: 0 0 15px #8c66ff; animation: vfw-analysis-orbit 5.4s linear infinite; }.vfw-analysis__spark.is-one{top:7px;left:20px}.vfw-analysis__spark.is-two{right:5px;bottom:28px;animation-delay:-1.8s}.vfw-analysis__spark.is-three{left:2px;bottom:12px;animation-delay:-3.6s}
.vfw-analysis__kicker { color: #987cff; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.vfw-analysis h1 { margin: 10px 0 12px; font-size: clamp(30px, 5vw, 48px); letter-spacing: -.025em; }
.vfw-analysis p { max-width: 610px; margin: 0 auto; color: #929fb3; font-size: 15px; line-height: 1.7; }
.vfw-analysis__progress { width: min(430px, 90%); height: 5px; margin: 30px auto 17px; overflow: hidden; border-radius: 999px; background: #1d2a3c; }.vfw-analysis__progress span{display:block;width:42%;height:100%;border-radius:inherit;background:linear-gradient(90deg,#5f38e5,#a66aff,#54c9ef);animation:vfw-analysis-progress 4.4s ease-in-out infinite}
.vfw-analysis__words { position: relative; height: 21px; color: #7f8ca0; font-size: 11px; letter-spacing: .03em; }.vfw-analysis__words span{position:absolute;inset:0;opacity:0;animation:vfw-analysis-word 16s infinite}.vfw-analysis__words span:nth-child(2){animation-delay:4s}.vfw-analysis__words span:nth-child(3){animation-delay:8s}.vfw-analysis__words span:nth-child(4){animation-delay:12s}
@keyframes vfw-analysis-glow{50%{transform:scale(1.08);opacity:.72}}@keyframes vfw-analysis-scan{0%,100%{transform:translateY(-20px);opacity:.3}50%{transform:translateY(60px);opacity:1}}@keyframes vfw-analysis-orbit{50%{transform:translate(8px,-8px) scale(1.5);opacity:.45}}@keyframes vfw-analysis-progress{0%{transform:translateX(-110%)}60%,100%{transform:translateX(260%)}}@keyframes vfw-analysis-word{0%,100%{opacity:0;transform:translateY(5px)}8%,20%{opacity:1;transform:translateY(0)}25%{opacity:0;transform:translateY(-4px)}}

/* Image-to-Video: sichtbare Vorbereitung der verbindlichen Startframes. */
.vfw-analysis--image .vfw-analysis__glow{background:radial-gradient(circle,rgba(162,91,255,.24),rgba(51,136,232,.1) 42%,transparent 70%)}
.vfw-image-reader{position:relative;width:154px;height:126px;margin:0 auto 30px}.vfw-image-reader span{position:absolute;display:grid;place-items:center;width:98px;height:76px;border:1px solid rgba(148,112,255,.7);border-radius:15px;background:linear-gradient(145deg,#291c50,#101d30);color:#bca8ff;font-size:28px;box-shadow:0 18px 50px rgba(68,38,145,.28)}.vfw-image-reader .is-back{left:5px;top:7px;transform:rotate(-8deg);opacity:.58}.vfw-image-reader .is-front{right:4px;bottom:5px;animation:vfw-image-reader-focus 3.4s ease-in-out infinite}.vfw-image-reader b{position:absolute;right:-3px;bottom:2px;width:42px;height:42px;border:2px solid #5ad6ef;border-radius:50%;box-shadow:0 0 24px rgba(90,214,239,.65);animation:vfw-image-reader-scan 3.4s ease-in-out infinite}.vfw-image-reader b:after{content:"";position:absolute;width:18px;height:2px;right:-13px;bottom:-6px;transform:rotate(45deg);background:#5ad6ef;border-radius:9px}@keyframes vfw-image-reader-focus{50%{transform:translateY(-4px);box-shadow:0 22px 70px rgba(103,67,219,.48)}}@keyframes vfw-image-reader-scan{50%{transform:translate(-45px,-29px) scale(.82)}}

/* Web-to-Video: passive Landingpage-Leseanimation vor dem Creative Director. */
.vfw-analysis--web .vfw-analysis__glow { background: radial-gradient(circle,rgba(45,199,180,.2),rgba(72,91,230,.12) 40%,transparent 70%); }
.vfw-web-reader { position:relative;width:190px;height:142px;margin:0 auto 28px; }
.vfw-web-reader__browser { position:absolute;inset:3px 14px 9px;border:1px solid rgba(111,231,211,.48);border-radius:14px;background:#101928;overflow:hidden;box-shadow:0 22px 70px rgba(20,107,124,.25); }
.vfw-web-reader__browser::after { content:"";position:absolute;left:0;right:0;top:25px;height:1px;background:rgba(136,160,190,.2); }
.vfw-web-reader__browser>i { position:relative;z-index:1;float:left;width:6px;height:6px;margin:10px 0 0 6px;border-radius:50%;background:#526078; }
.vfw-web-reader__browser>i:first-child { margin-left:11px;background:#7256ec; }.vfw-web-reader__browser>i:nth-child(2){background:#39b8cc}.vfw-web-reader__browser>b{position:absolute;top:7px;left:50px;right:10px;height:11px;border-radius:7px;background:#1c2a3d}
.vfw-web-reader__page { position:absolute;left:34px;right:34px;top:37px;bottom:20px;padding:10px;border-radius:6px;background:#172337;overflow:hidden; }
.vfw-web-reader__page>i { display:block;width:100%;height:5px;margin:6px 0;border-radius:4px;background:#40506a;animation:vfw-web-line 2.8s ease-in-out infinite; }.vfw-web-reader__page>i.is-hero{height:22px;margin-top:0;background:#30455e}.vfw-web-reader__page>i.is-short{width:62%}.vfw-web-reader__page>i:nth-child(2){animation-delay:-.4s}.vfw-web-reader__page>i:nth-child(3){animation-delay:-.8s}.vfw-web-reader__page>i:nth-child(4){animation-delay:-1.2s}.vfw-web-reader__page>i:nth-child(5){animation-delay:-1.6s}
.vfw-web-reader__page>strong { position:absolute;right:7px;top:7px;width:20px;height:20px;border-radius:5px;background:#5940b7;overflow:hidden }.vfw-web-reader__page>strong span{position:absolute;left:4px;right:4px;bottom:4px;height:7px;border-radius:50% 50% 2px 2px;background:#b8aaff}
.vfw-web-reader__beam { position:absolute;z-index:3;left:25px;right:25px;top:37px;height:2px;border-radius:99px;background:linear-gradient(90deg,transparent,#53e0d0,#aa8cff,transparent);box-shadow:0 0 16px rgba(83,224,208,.8);animation:vfw-web-scan 3.4s ease-in-out infinite; }
.vfw-web-reader__fact { position:absolute;z-index:4;width:27px;height:27px;display:grid;place-items:center;border:1px solid rgba(117,222,207,.45);border-radius:8px;background:#14263a;color:#70e1d2;font-size:14px;opacity:0;animation:vfw-web-fact 4.8s ease-in-out infinite }.vfw-web-reader__fact.is-one{left:0;top:36px}.vfw-web-reader__fact.is-two{right:0;top:69px;animation-delay:1.6s}.vfw-web-reader__fact.is-three{left:5px;bottom:4px;animation-delay:3.2s}
.vfw-web-reader__security { display:block;margin-top:22px;color:#65758d;font-size:11px;letter-spacing:.02em }.vfw-web-reader__security i{margin-right:6px;color:#55cdb8}
@keyframes vfw-web-scan{0%,100%{transform:translateY(0);opacity:.25}50%{transform:translateY(80px);opacity:1}}@keyframes vfw-web-line{50%{background:#667895}}@keyframes vfw-web-fact{0%,100%{opacity:0;transform:translateY(6px) scale(.92)}12%,36%{opacity:1;transform:translateY(0) scale(1)}48%{opacity:0;transform:translateY(-5px) scale(.96)}}
@media (prefers-reduced-motion:reduce){.vfw-web-reader__beam,.vfw-web-reader__page>i,.vfw-web-reader__fact,.vfw-image-reader .is-front,.vfw-image-reader b{animation:none!important}.vfw-web-reader__beam{top:77px;opacity:.7}.vfw-web-reader__fact{opacity:1}.vfw-analysis__words span:first-child{opacity:1}}

.vfw-postflw-context{display:flex;align-items:center;gap:14px;max-width:850px;margin:18px auto 0;padding:14px 17px;border:1px solid rgba(255,146,47,.42);border-radius:13px;background:linear-gradient(100deg,rgba(255,146,47,.13),rgba(12,18,29,.96));color:#f2f5f9}.vfw-postflw-context>i{display:grid;width:40px;height:40px;place-items:center;border-radius:10px;background:#ff922f;color:#10141a;font-size:21px}.vfw-postflw-context div{display:grid;gap:3px}.vfw-postflw-context strong{font-size:13px}.vfw-postflw-context span{color:#aab3c0;font-size:11px}.vfw-postflw-context em{margin-left:auto;color:#ffab5f;font-size:10px;font-style:normal;font-weight:900;letter-spacing:.14em}.vfw-wizard.is-postflw-short .vfw-mode-grid{grid-template-columns:repeat(2,minmax(0,1fr))}@media(max-width:650px){.vfw-postflw-context em{display:none}.vfw-wizard.is-postflw-short .vfw-mode-grid{grid-template-columns:1fr}}
