/*
Theme Name: Webbiverse Launch
Theme URI: https://webbiverse.com
Author: Webbiverse
Author URI: https://webbiverse.com
Description: Dark marketing theme for webbiverse.com — the front door to the Webbiverse ecosystem of services.
Version: 2.0.23
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: webbiverse-launch-theme
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
*/

/* ── Token Bridge — core tokens from island-core, with Launch overrides ── */
:root {
	--wbv-ink:         var(--wbv-text, #fff);
	--wbv-muted:       var(--wbv-text-muted, #94a3b8);
	--wbv-shell:       1120px;
	--wbv-radius:      16px;
	--wbv-radius-lg:   24px;
}

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

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

body.wbv-launch-body {
	font-family: var(--wbv-font, 'Inter', system-ui, sans-serif);
	font-size: 16px;
	line-height: 1.5;
	background:
		radial-gradient(circle at 17% 15%, rgba(28, 61, 110, 0.25), transparent 40%),
		radial-gradient(circle at 82% 86%, rgba(230, 86, 22, 0.12), transparent 34%),
		var(--wbv-bg, #000a1a);
	color: var(--wbv-ink, #fff);
}

.wbv-launch-body a {
	color: var(--wbv-link, #60a5fa);
	text-decoration: none;
}

.wbv-launch-body a:hover {
	text-decoration: underline;
}

.wbv-shell {
	width: min(var(--wbv-shell), calc(100% - 2rem));
	margin-inline: auto;
}

.wbv-skip-link {
	position: absolute;
	top: -80px;
	left: 12px;
	padding: 0.5rem 0.8rem;
	border-radius: 8px;
	background: #000;
	color: #fff;
	z-index: 1000;
}

.wbv-skip-link:focus {
	top: 12px;
}

.wbv-site-header {
	position: sticky;
	top: 0;
	z-index: 70;
	backdrop-filter: blur(12px);
	background: rgba(0, 10, 26, 0.88);
	border-bottom: 1px solid rgba(30, 41, 59, 0.9);
}

.wbv-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 70px;
}

.wbv-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	color: var(--wbv-ink);
	font-weight: 700;
	letter-spacing: 0.01em;
}

.wbv-brand:hover {
	text-decoration: none;
}

.wbv-brand__text {
	font-size: 1rem;
}

.wbv-logo {
	width: 38px;
	height: 38px;
}

.wbv-logo--small {
	width: 28px;
	height: 28px;
}

.wbv-desktop-nav {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.wbv-desktop-nav a {
	color: var(--wbv-muted);
	padding: 0.45rem 0.65rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
}

.wbv-desktop-nav a:hover {
	text-decoration: none;
	color: var(--wbv-ink);
	background: rgba(255, 255, 255, 0.06);
}

.wbv-header-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.wbv-mobile-nav {
	display: none;
}

.wbv-mobile-nav summary {
	list-style: none;
	cursor: pointer;
	font-weight: 700;
	color: var(--wbv-ink);
}

.wbv-mobile-nav summary::-webkit-details-marker {
	display: none;
}

.wbv-mobile-nav__panel {
	position: absolute;
	top: 70px;
	right: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 0.8rem;
	width: min(280px, calc(100% - 2rem));
	border-radius: 14px;
	background: #0a1628;
	border: 1px solid var(--wbv-border);
	box-shadow: var(--wbv-shadow);
}

.wbv-mobile-nav__panel a {
	padding: 0.45rem 0.5rem;
	color: var(--wbv-ink);
}

.wbv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.62rem 0.95rem;
	border-radius: 10px;
	border: 1px solid transparent;
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.2;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.wbv-btn:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

.wbv-btn--primary {
	background: var(--wbv-accent);
	color: #fff;
	border-color: var(--wbv-accent);
}

.wbv-btn--primary:hover {
	box-shadow: 0 8px 20px rgba(230, 86, 22, 0.27);
}

.wbv-btn--ghost {
	background: rgba(255, 255, 255, 0.06);
	color: var(--wbv-ink);
	border-color: rgba(255, 255, 255, 0.12);
}

.wbv-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.1);
}

.wbv-btn--block {
	width: 100%;
}

.wbv-content {
	padding-top: 1.2rem;
}

.wbv-content--page {
	padding: 3rem 0;
}

.wbv-hero {
	padding: 2.5rem 0 1.6rem;
}

.wbv-hero__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 1rem;
	align-items: stretch;
}

.wbv-hero__copy {
	background: linear-gradient(165deg, #021c40 0%, #0a1628 100%);
	border: 1px solid var(--wbv-border);
	border-radius: var(--wbv-radius-lg);
	box-shadow: var(--wbv-shadow);
	padding: 2rem;
}

.wbv-hero__kicker {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.7rem;
	border-radius: 999px;
	background: rgba(230, 86, 22, 0.18);
	color: var(--wbv-accent);
	font-size: 0.73rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.wbv-hero h1 {
	margin-top: 0.9rem;
	font-size: clamp(2rem, 4.1vw, 3.3rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
}

.wbv-hero__lead {
	margin-top: 0.95rem;
	max-width: 55ch;
	color: var(--wbv-muted);
	font-size: 1.02rem;
	line-height: 1.65;
}

.wbv-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1.25rem;
}

.wbv-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.42rem;
	margin-top: 1.2rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.13);
	color: #137c37;
	font-size: 0.78rem;
	font-weight: 700;
}

.wbv-status-pill__dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #1dbf52;
}

.wbv-hero__panel {
	display: flex;
}

.wbv-panel-card {
	background: linear-gradient(152deg, #031f45 0%, #1c3d6e 100%);
	border-radius: var(--wbv-radius-lg);
	padding: 1.55rem;
	width: 100%;
	color: #fff;
	box-shadow: var(--wbv-shadow);
}

.wbv-panel-card__label {
	display: inline-block;
	padding: 0.18rem 0.58rem;
	border-radius: 999px;
	font-size: 0.68rem;
	background: rgba(255, 255, 255, 0.14);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.wbv-panel-card h2 {
	margin-top: 0.75rem;
	font-size: 1.25rem;
}

.wbv-panel-card__subtitle {
	margin-top: 0.45rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.75);
	font-style: italic;
}

.wbv-panel-card ul {
	margin-top: 0.85rem;
	padding-left: 1.05rem;
	display: grid;
	gap: 0.44rem;
	font-size: 0.92rem;
}

.wbv-panel-card__foot {
	margin-top: 0.95rem;
	padding-top: 0.85rem;
	border-top: 1px solid rgba(255, 255, 255, 0.21);
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.84);
}

/* ─── Philosophy ────────────────────────────────────────── */

.wbv-philosophy {
	padding: 2.2rem 0;
	background: linear-gradient(180deg, rgba(2, 28, 64, 0.25), rgba(0, 10, 26, 0.4));
	border-top: 1px solid var(--wbv-border);
	border-bottom: 1px solid var(--wbv-border);
}

.wbv-philosophy__inner {
	max-width: 52rem;
	margin: 0 auto;
	text-align: center;
}

.wbv-philosophy h2 {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	letter-spacing: -0.02em;
}

.wbv-philosophy__tagline {
	display: block;
	margin-top: 0.6rem;
	font-size: 1.05rem;
	color: var(--wbv-accent);
	font-weight: 600;
}

.wbv-philosophy__body {
	margin-top: 1rem;
	text-align: left;
	max-width: 44rem;
	margin-left: auto;
	margin-right: auto;
}

.wbv-philosophy__body p {
	color: var(--wbv-muted);
	font-size: 1rem;
	line-height: 1.7;
}

.wbv-philosophy__body p + p {
	margin-top: 0.75rem;
}

.wbv-philosophy__body a {
	color: var(--wbv-accent);
	font-weight: 600;
}

/* ─── Pillar kicker ─────────────────────────────────────── */

.wbv-pillar__kicker {
	display: inline-flex;
	align-items: center;
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	background: rgba(230, 86, 22, 0.12);
	color: var(--wbv-accent);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 0.35rem;
}

/* ─── Pillar grid (2-col for free tools) ────────────────── */

.wbv-pillar-grid {
	margin-top: 1.25rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

/* ─── Resource grid (3-col) ─────────────────────────────── */

.wbv-resource-grid {
	margin-top: 1.25rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.wbv-resource-card {
	padding: 1.35rem;
	border-radius: var(--wbv-radius);
	background: var(--wbv-surface);
	border: 1px solid var(--wbv-border);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wbv-resource-card:hover {
	border-color: rgba(230, 86, 22, 0.35);
	box-shadow: 0 16px 34px rgba(230, 86, 22, 0.08);
}

.wbv-resource-card h3 {
	margin-top: 0.65rem;
	font-size: 1.15rem;
}

.wbv-resource-card p {
	margin-top: 0.55rem;
	color: var(--wbv-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

.wbv-resource-card .wbv-btn {
	margin-top: 0.9rem;
}

.wbv-service-icon--resource {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(28, 61, 110, 0.4);
	color: #8bb4e8;
}

/* ─── Agency card (wide horizontal) ─────────────────────── */

.wbv-agency-card {
	margin-top: 1.25rem;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1.2rem;
	align-items: center;
	padding: 1.5rem;
	border-radius: var(--wbv-radius-lg);
	background: linear-gradient(152deg, #031f45 0%, #1c3d6e 100%);
	color: #fff;
	box-shadow: var(--wbv-shadow);
}

.wbv-agency-card__icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(230, 86, 22, 0.2);
	color: var(--wbv-accent);
}

.wbv-agency-card__content h3 {
	font-size: 1.2rem;
}

.wbv-agency-card__content p {
	margin-top: 0.4rem;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.92rem;
	line-height: 1.55;
}

.wbv-agency-card__content ul {
	margin-top: 0.6rem;
	padding-left: 1rem;
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 0.3rem 1.2rem;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.85rem;
}

/* ─── Trust grid ────────────────────────────────────────── */

.wbv-trust-grid {
	margin-top: 1.25rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}

.wbv-trust-card {
	padding: 1.2rem;
	border-radius: 12px;
	background: var(--wbv-surface);
	border: 1px solid var(--wbv-border);
}

.wbv-trust-card__icon {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(34, 197, 94, 0.12);
	color: #22c55e;
}

.wbv-trust-card h3 {
	margin-top: 0.6rem;
	font-size: 1.05rem;
}

.wbv-trust-card p {
	margin-top: 0.45rem;
	color: var(--wbv-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

/* ─── CTA segments ──────────────────────────────────────── */

.wbv-cta-segments {
	margin-top: 1.2rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.wbv-cta-segment {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.1rem 1rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.06);
	transition: background 0.2s ease, border-color 0.2s ease;
	text-decoration: none;
}

.wbv-cta-segment:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
}

.wbv-cta-segment__label {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.wbv-cta-segment__action {
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
}

.wbv-cta-segment--cold .wbv-cta-segment__label {
	color: #60a5fa;
}

.wbv-cta-segment--warm .wbv-cta-segment__label {
	color: #34d399;
}

.wbv-cta-segment--hot .wbv-cta-segment__label {
	color: var(--wbv-accent);
}

.wbv-section {
	padding: 2.2rem 0;
}

.wbv-section--alt {
	background: linear-gradient(180deg, rgba(2, 28, 64, 0.3), rgba(10, 22, 40, 0.5));
	border-top: 1px solid var(--wbv-border);
	border-bottom: 1px solid var(--wbv-border);
}

.wbv-section__head h2 {
	font-size: clamp(1.58rem, 3vw, 2.2rem);
	letter-spacing: -0.02em;
}

.wbv-section__head p {
	margin-top: 0.65rem;
	max-width: 70ch;
	color: var(--wbv-muted);
}

.wbv-product-grid {
	margin-top: 1.25rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.wbv-product-card {
	padding: 1.35rem;
	border-radius: var(--wbv-radius);
	background: var(--wbv-surface);
	border: 1px solid var(--wbv-border);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wbv-product-card:hover {
	border-color: var(--wbv-accent);
	box-shadow: 0 16px 34px rgba(230, 86, 22, 0.12);
}

.wbv-product-card h3 {
	margin-top: 0.55rem;
	font-size: 1.2rem;
}

.wbv-product-card p {
	margin-top: 0.6rem;
	color: var(--wbv-muted);
}

.wbv-product-card ul {
	margin: 0.95rem 0;
	padding-left: 1rem;
	display: grid;
	gap: 0.4rem;
	font-size: 0.9rem;
	color: var(--wbv-muted);
}

.wbv-cap-grid {
	margin-top: 1.3rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
}

.wbv-cap-card {
	padding: 1rem;
	border-radius: 12px;
	background: var(--wbv-surface);
	border: 1px solid var(--wbv-border);
}

.wbv-cap-card h3 {
	font-size: 1rem;
}

.wbv-cap-card p {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	color: var(--wbv-muted);
}

.wbv-steps {
	margin-top: 1.3rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}

.wbv-step {
	padding: 1.2rem 1rem;
	border-radius: 12px;
	background: var(--wbv-surface);
	border: 1px solid var(--wbv-border);
}

.wbv-step__num {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: var(--wbv-accent-deep);
	text-transform: uppercase;
}

.wbv-step h3 {
	margin-top: 0.45rem;
	font-size: 1.05rem;
}

.wbv-step p {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	color: var(--wbv-muted);
}

/* Dead code removed — pricing was from v1 */

.wbv-faq {
	margin-top: 1.2rem;
	display: grid;
	gap: 0.65rem;
}

.wbv-faq details {
	padding: 0.95rem 1rem;
	background: var(--wbv-surface);
	border: 1px solid var(--wbv-border);
	border-radius: 12px;
}

.wbv-faq summary {
	cursor: pointer;
	font-weight: 700;
}

.wbv-faq p {
	margin-top: 0.6rem;
	color: var(--wbv-muted);
	font-size: 0.94rem;
}

.wbv-final-cta {
	padding: 2.2rem 0 2.5rem;
}

.wbv-final-cta__card {
	padding: 1.8rem 1.4rem;
	border-radius: var(--wbv-radius-lg);
	background: linear-gradient(145deg, #1c3d6e, #021c40);
	color: #fff;
	box-shadow: var(--wbv-shadow);
}

.wbv-final-cta__card h2 {
	font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.wbv-final-cta__card p {
	margin-top: 0.65rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 66ch;
}

.wbv-final-cta__actions {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.wbv-final-cta__actions .wbv-btn--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.1);
}

.wbv-final-cta__legal {
	margin-top: 0.85rem;
	font-size: 0.84rem;
}

.wbv-final-cta__legal a {
	color: #dbe8fb;
}

.wbv-site-footer {
	padding: 2.2rem 0;
	border-top: 1px solid var(--wbv-border);
	background: rgba(0, 10, 26, 0.8);
}

.wbv-site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 1rem;
}

.wbv-footer-brand__logo {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
}

.wbv-footer-brand p {
	margin-top: 0.5rem;
	color: var(--wbv-muted);
	font-size: 0.88rem;
}

.wbv-footer-column h3 {
	font-size: 0.92rem;
	margin-bottom: 0.45rem;
}

.wbv-footer-column ul {
	list-style: none;
	display: grid;
	gap: 0.3rem;
}

.wbv-footer-column a {
	color: var(--wbv-muted);
	font-size: 0.88rem;
}

.wbv-content-card {
	padding: 1.4rem;
	border-radius: var(--wbv-radius);
	background: var(--wbv-surface);
	border: 1px solid var(--wbv-border);
	box-shadow: var(--wbv-shadow);
}

.wbv-content-card__title {
	font-size: clamp(1.4rem, 2.7vw, 2rem);
}

.wbv-content-card__body {
	margin-top: 0.9rem;
	color: var(--wbv-muted);
	line-height: 1.7;
}

.wbv-content-card__body h2,
.wbv-content-card__body h3 {
	margin-top: 1.4rem;
}

.wbv-content-card__body p + p {
	margin-top: 0.7rem;
}

.wbv-not-found {
	padding: 2.2rem 1.4rem;
	border-radius: var(--wbv-radius);
	background: var(--wbv-surface);
	border: 1px solid var(--wbv-border);
	box-shadow: var(--wbv-shadow);
	text-align: center;
}

.wbv-not-found__kicker {
	color: var(--wbv-accent-deep);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wbv-not-found h1 {
	margin-top: 0.4rem;
	font-size: clamp(1.55rem, 3.1vw, 2.2rem);
}

.wbv-not-found p {
	margin-top: 0.7rem;
	color: var(--wbv-muted);
}

.wbv-not-found__actions {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: center;
}

/* Shortcode styles */
.wbv-launch-shortcode {
	padding: 1.2rem;
	border: 1px solid var(--wbv-border);
	border-radius: var(--wbv-radius);
	background: var(--wbv-surface);
}

.wbv-launch-shortcode-kicker {
	font-size: 0.74rem;
	font-weight: 800;
	color: var(--wbv-accent-deep);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.wbv-launch-shortcode h2 {
	margin-top: 0.45rem;
	font-size: clamp(1.35rem, 3.2vw, 1.9rem);
}

.wbv-launch-shortcode > p {
	margin-top: 0.55rem;
	color: var(--wbv-muted);
}

.wbv-launch-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	margin-top: 1rem;
}

.wbv-launch-card {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 1rem;
	border-radius: 12px;
	border: 1px solid var(--wbv-border);
	background: var(--wbv-surface-alt);
}

.wbv-launch-card-title {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--wbv-ink);
}

.wbv-launch-card-copy {
	font-size: 0.9rem;
	color: var(--wbv-muted);
}

.wbv-launch-card-button {
	display: inline-flex;
	align-self: flex-start;
	padding: 0.5rem 0.78rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	background: var(--wbv-accent);
	color: #fff;
}

.wbv-launch-shortcode-stats {
	margin-top: 0.8rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.55rem;
}

.wbv-launch-shortcode-stat {
	padding: 0.75rem 0.65rem;
	background: var(--wbv-surface-alt);
	border: 1px solid var(--wbv-border);
	border-radius: 10px;
	text-align: center;
}

.wbv-launch-shortcode-stat strong {
	display: block;
	font-size: 1rem;
}

.wbv-launch-shortcode-stat span {
	display: block;
	margin-top: 0.25rem;
	color: var(--wbv-muted);
	font-size: 0.74rem;
}

@media (max-width: 1040px) {
	.wbv-desktop-nav,
	.wbv-header-actions {
		display: none;
	}

	.wbv-mobile-nav {
		display: block;
	}

	.wbv-hero__grid {
		grid-template-columns: 1fr;
	}

	.wbv-site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.wbv-product-grid,
	.wbv-cap-grid,
	.wbv-steps,
	.wbv-pillar-grid,
	.wbv-resource-grid,
	.wbv-trust-grid,
	.wbv-cta-segments,
	.wbv-launch-grid,
	.wbv-launch-shortcode-stats {
		grid-template-columns: 1fr;
	}

	.wbv-agency-card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.wbv-agency-card__icon {
		margin: 0 auto;
	}

	.wbv-agency-card__content ul {
		grid-template-columns: 1fr;
	}

	.wbv-agency-card__action {
		justify-self: center;
	}

	.wbv-hero__copy,
	.wbv-panel-card,
	.wbv-final-cta__card {
		padding: 1.4rem 1rem;
	}

	.wbv-site-footer__grid {
		grid-template-columns: 1fr;
	}

	.wbv-content--page {
		padding: 1.8rem 0 2rem;
	}
}

/* ─── Blog index ──────────────────────────────────────────── */

.wbv-content--blog {
	padding: 2rem 0 2.5rem;
}

.wbv-blog-header {
	margin-bottom: 1.5rem;
}

.wbv-blog-header__title {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: -0.02em;
}

.wbv-blog-header__desc {
	margin-top: 0.4rem;
	color: var(--wbv-muted);
	font-size: 1rem;
	max-width: 60ch;
}

.wbv-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.2rem;
}

/* ─── Post card ───────────────────────────────────────────── */

.wbv-post-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--wbv-radius);
	background: var(--wbv-surface);
	border: 1px solid var(--wbv-border);
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wbv-post-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--wbv-shadow);
}

.wbv-post-card__image {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.wbv-post-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wbv-post-card__body {
	padding: 1rem 1.1rem 1.1rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.wbv-post-card__meta {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.78rem;
	margin-bottom: 0.4rem;
}

.wbv-post-card__cat {
	display: inline-block;
	padding: 0.15rem 0.5rem;
	border-radius: 999px;
	background: var(--wbv-accent-soft);
	color: var(--wbv-accent-deep);
	font-weight: 700;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.wbv-post-card__cat:hover {
	text-decoration: none;
	background: var(--wbv-accent);
	color: #fff;
}

.wbv-post-card__date {
	color: var(--wbv-muted);
}

.wbv-post-card__title {
	font-size: 1.1rem;
	line-height: 1.3;
	margin-bottom: 0.4rem;
}

.wbv-post-card__title a {
	color: var(--wbv-ink);
}

.wbv-post-card__title a:hover {
	color: var(--wbv-accent);
	text-decoration: none;
}

.wbv-post-card__excerpt {
	font-size: 0.9rem;
	color: var(--wbv-muted);
	line-height: 1.55;
	flex: 1;
}

.wbv-post-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 0.7rem;
	padding-top: 0.6rem;
	border-top: 1px solid var(--wbv-border);
	font-size: 0.78rem;
	color: var(--wbv-muted);
}

/* ─── Single article ──────────────────────────────────────── */

.wbv-content--single {
	padding: 1.5rem 0 2.5rem;
}

.wbv-shell--narrow {
	max-width: 780px;
}

.wbv-single-article__hero {
	margin-bottom: 1.2rem;
	border-radius: var(--wbv-radius);
	overflow: hidden;
}

.wbv-single-article__hero-img {
	width: 100%;
	height: auto;
	display: block;
}

.wbv-single-article__cats {
	display: flex;
	gap: 0.4rem;
	margin-bottom: 0.6rem;
}

.wbv-single-article__cat {
	display: inline-block;
	padding: 0.18rem 0.55rem;
	border-radius: 999px;
	background: var(--wbv-accent-soft);
	color: var(--wbv-accent-deep);
	font-weight: 700;
	font-size: 0.73rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.wbv-single-article__cat:hover {
	text-decoration: none;
	background: var(--wbv-accent);
	color: #fff;
}

.wbv-single-article__header {
	margin-bottom: 1.2rem;
}

.wbv-single-article__title {
	font-size: clamp(1.6rem, 3.5vw, 2.8rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 0.7rem;
}

.wbv-single-article__meta {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 0.86rem;
	color: var(--wbv-muted);
	flex-wrap: wrap;
}

.wbv-single-article__author {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 600;
	color: var(--wbv-ink);
}

.wbv-avatar {
	border-radius: 999px;
}

.wbv-single-article__reading-time::before {
	content: "·";
	margin-right: 0.3rem;
}

/* ─── Article body (Gutenberg output) ─────────────────────── */

.wbv-article-body {
	font-size: 1.05rem;
	line-height: 1.72;
	color: var(--wbv-ink);
}

.wbv-article-body > * + * {
	margin-top: 1.2em;
}

.wbv-article-body h2 {
	font-size: 1.55rem;
	margin-top: 2em;
}

.wbv-article-body h3 {
	font-size: 1.25rem;
	margin-top: 1.6em;
}

.wbv-article-body h4 {
	font-size: 1.1rem;
	margin-top: 1.4em;
}

.wbv-article-body blockquote {
	border-left: 4px solid var(--wbv-accent);
	padding: 0.5rem 0 0.5rem 1.2rem;
	color: var(--wbv-muted);
	font-style: italic;
}

.wbv-article-body ul,
.wbv-article-body ol {
	padding-left: 1.4rem;
}

.wbv-article-body li + li {
	margin-top: 0.3em;
}

.wbv-article-body img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

.wbv-article-body figure {
	margin: 1.5em 0;
}

.wbv-article-body figcaption {
	margin-top: 0.4rem;
	font-size: 0.85rem;
	color: var(--wbv-muted);
	text-align: center;
}

.wbv-article-body pre {
	background: #0f172a;
	color: #e2e8f0;
	padding: 1.2rem;
	border-radius: 12px;
	overflow-x: auto;
	font-size: 0.9rem;
	line-height: 1.5;
}

.wbv-article-body code {
	font-size: 0.88em;
	background: rgba(255, 255, 255, 0.08);
	padding: 0.12em 0.35em;
	border-radius: 4px;
}

.wbv-article-body pre code {
	background: none;
	padding: 0;
}

.wbv-article-body table {
	width: 100%;
	border-collapse: collapse;
}

.wbv-article-body th,
.wbv-article-body td {
	padding: 0.6rem 0.8rem;
	border: 1px solid var(--wbv-border);
	text-align: left;
}

.wbv-article-body th {
	background: var(--wbv-surface-alt);
	font-weight: 700;
}

/* Block editor alignment support */
.wbv-article-body .alignwide,
.wbv-content--single .alignwide {
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	max-width: 1120px;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: 100vw;
}

@media (min-width: 1200px) {
	.wbv-content--single .alignwide {
		margin-left: -170px;
		margin-right: -170px;
		max-width: calc(780px + 340px);
		left: auto;
		right: auto;
	}
}

.wbv-article-body .alignfull {
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	max-width: 100vw;
	width: 100vw;
}

/* ─── Tags ────────────────────────────────────────────────── */

.wbv-single-article__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--wbv-border);
}

.wbv-tag {
	display: inline-block;
	padding: 0.22rem 0.6rem;
	border-radius: 999px;
	background: rgba(230, 86, 22, 0.15);
	color: var(--wbv-accent);
	font-size: 0.78rem;
	font-weight: 600;
}

.wbv-tag:hover {
	text-decoration: none;
	background: var(--wbv-accent);
	color: #fff;
}

/* ─── Post navigation ─────────────────────────────────────── */

.wbv-post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--wbv-border);
}

.wbv-post-nav__link {
	display: flex;
	flex-direction: column;
	padding: 0.8rem 1rem;
	border-radius: 12px;
	border: 1px solid var(--wbv-border);
	background: var(--wbv-surface);
	transition: border-color 0.15s ease;
}

.wbv-post-nav__link:hover {
	text-decoration: none;
	border-color: var(--wbv-accent);
}

.wbv-post-nav__link--next {
	text-align: right;
	grid-column: 2;
}

.wbv-post-nav__label {
	font-size: 0.76rem;
	font-weight: 700;
	color: var(--wbv-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.wbv-post-nav__title {
	margin-top: 0.2rem;
	font-size: 0.92rem;
	color: var(--wbv-ink);
	font-weight: 600;
}

/* ─── Related articles ────────────────────────────────────── */

.wbv-related {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--wbv-border);
}

.wbv-related__title {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

/* ─── Comments ────────────────────────────────────────────── */

.wbv-comments {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--wbv-border);
}

.wbv-comments__title {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.wbv-comment-list {
	list-style: none;
	padding: 0;
}

.wbv-comment-list .comment {
	padding: 1rem;
	margin-bottom: 0.8rem;
	border: 1px solid var(--wbv-border);
	border-radius: 12px;
	background: var(--wbv-surface);
}

.wbv-comment-form textarea {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid var(--wbv-border);
	border-radius: 10px;
	font-family: var(--wbv-font);
	font-size: 0.92rem;
}

.wbv-comment-form input[type="submit"] {
	margin-top: 0.5rem;
	padding: 0.62rem 1.2rem;
	border-radius: 10px;
	border: none;
	background: var(--wbv-accent);
	color: #fff;
	font-weight: 700;
	font-size: 0.86rem;
	cursor: pointer;
}

/* ─── Pagination ──────────────────────────────────────────── */

.wbv-pagination {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
}

.wbv-pagination .nav-links {
	display: flex;
	gap: 0.3rem;
}

.wbv-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 0.5rem;
	border-radius: 8px;
	border: 1px solid var(--wbv-border);
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--wbv-ink);
	background: var(--wbv-surface);
}

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

.wbv-pagination .page-numbers:hover {
	text-decoration: none;
	border-color: var(--wbv-accent);
}

/* ─── Landing page template ───────────────────────────────── */

.wbv-content--landing {
	padding: 0;
}

.wbv-landing-content > .alignfull {
	margin-left: 0;
	margin-right: 0;
}

/* ─── About / Contact page templates ──────────────────────── */

.wbv-about__header,
.wbv-contact__header {
	margin-bottom: 1.5rem;
}

.wbv-about__title,
.wbv-contact__title {
	font-size: clamp(1.6rem, 3.2vw, 2.4rem);
	letter-spacing: -0.02em;
}

.wbv-contact__info {
	margin-top: 2rem;
	padding: 1.2rem;
	border-radius: 12px;
	background: var(--wbv-surface-alt);
	border: 1px solid var(--wbv-border);
}

.wbv-contact__info h2 {
	font-size: 1.1rem;
	margin-bottom: 0.4rem;
}

/* ─── Sidebar / Widgets ───────────────────────────────────── */

.wbv-widget {
	margin-bottom: 1.2rem;
	padding: 1rem;
	border-radius: 12px;
	background: var(--wbv-surface);
	border: 1px solid var(--wbv-border);
}

.wbv-widget__title {
	font-size: 0.92rem;
	margin-bottom: 0.6rem;
}

/* ─── WP nav menu in desktop nav ──────────────────────────── */

.wbv-desktop-nav .menu {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.wbv-desktop-nav .menu-item a {
	color: var(--wbv-muted);
	padding: 0.45rem 0.65rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
}

.wbv-desktop-nav .menu-item a:hover {
	text-decoration: none;
	color: var(--wbv-ink);
	background: rgba(255, 255, 255, 0.06);
}

.wbv-desktop-nav .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #0a1628;
	border: 1px solid var(--wbv-border);
	border-radius: 12px;
	padding: 0.4rem;
	box-shadow: var(--wbv-shadow);
	list-style: none;
	min-width: 180px;
	z-index: 80;
}

.wbv-desktop-nav .menu-item:hover > .sub-menu {
	display: block;
}

.wbv-desktop-nav .sub-menu a {
	display: block;
	padding: 0.45rem 0.65rem;
	border-radius: 6px;
}

/* ─── Service icons ────────────────────────────────────────── */

.wbv-service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	margin-bottom: 0.65rem;
	font-size: 1.2rem;
	font-weight: 800;
}

.wbv-service-icon--qr {
	background: rgba(230, 86, 22, 0.18);
	color: var(--wbv-accent);
}

.wbv-service-icon--nxs {
	background: rgba(96, 165, 250, 0.15);
	color: #60a5fa;
}

.wbv-service-icon--web {
	background: rgba(34, 197, 94, 0.15);
	color: #22c55e;
}

/* ─── Scrollbar ───────────────────────────────────────────── */

* {
	scrollbar-width: thin;
	scrollbar-color: #1e293b transparent;
}

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-track {
	background: transparent;
}
::-webkit-scrollbar-thumb {
	background: #1e293b;
	border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
	background: #334155;
}

/* ─── Print ───────────────────────────────────────────────── */

@media print {
	.wbv-site-header,
	.wbv-site-footer,
	.wbv-post-nav,
	.wbv-related,
	.wbv-comments,
	.wbv-pagination {
		display: none !important;
	}

	body.wbv-launch-body {
		background: #fff;
		color: #000;
	}

	.wbv-single-article__hero-img {
		max-height: 300px;
		object-fit: cover;
	}

	.wbv-article-body {
		font-size: 11pt;
		line-height: 1.6;
	}

	a[href]::after {
		content: " (" attr(href) ")";
		font-size: 0.8em;
		color: #666;
	}
}

/* ═══════════════════════════════════════════════════════════════
   CPT CONTENT FRAMEWORK — Guides, Plugins, Tips
   ═══════════════════════════════════════════════════════════════ */

/* ── Resource Type Block (homepage pillar 2) ── */
.wbv-resource-type {
	padding: 2.5rem 0;
	border-bottom: 1px solid #1e293b;
}
.wbv-resource-type:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.wbv-resource-type__head {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	margin-bottom: 1.5rem;
}
.wbv-resource-type__meta {
	flex: 1;
}
.wbv-resource-type__meta h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.35rem;
}
.wbv-resource-type__meta h3 a {
	color: inherit;
	text-decoration: none;
}
.wbv-resource-type__meta h3 a:hover {
	color: #e65616;
}
.wbv-resource-type__meta p {
	margin: 0;
	color: #cbd5e1;
	font-size: 0.9rem;
}
.wbv-resource-type__viewall {
	flex-shrink: 0;
	align-self: center;
}
.wbv-resource-type__empty {
	color: #64748b;
	font-size: 0.9rem;
	font-style: italic;
	padding: 0.75rem 0;
}
.wbv-resource-type__empty a {
	color: #e65616;
}

/* ── Mini Grid ── */
.wbv-mini-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
@media (max-width: 900px) {
	.wbv-mini-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 560px) {
	.wbv-mini-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Mini Cards ── */
.wbv-mini-card {
	background: #021c40;
	border: 1px solid #1e293b;
	border-radius: 0.75rem;
	padding: 1.1rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	transition: border-color 0.2s, transform 0.2s;
}
.wbv-mini-card:hover {
	border-color: #e65616;
	transform: translateY(-2px);
}
.wbv-mini-card__title {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}
.wbv-mini-card__title a {
	color: #fff;
	text-decoration: none;
}
.wbv-mini-card__title a:hover {
	color: #e65616;
}
.wbv-mini-card__excerpt {
	font-size: 0.82rem;
	color: #94a3b8;
	margin: 0;
	line-height: 1.5;
	flex: 1;
}
.wbv-mini-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: center;
	margin-top: auto;
	padding-top: 0.5rem;
}
.wbv-mini-card__time {
	font-size: 0.75rem;
	color: #64748b;
}
.wbv-mini-card--plugin {
	border-left: 3px solid #3b82f6;
}
.wbv-mini-card--tip {
	border-left: 3px solid #e65616;
}
.wbv-mini-card--guide {
	border-left: 3px solid #10b981;
}
.wbv-mini-card__thumb {
	display: block;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 0.6rem;
}
.wbv-mini-card__thumb img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}
.wbv-mini-card:hover .wbv-mini-card__thumb img {
	transform: scale(1.04);
}

/* ── Tag Pills ── */
.wbv-tag {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.2em 0.6em;
	border-radius: 0.3rem;
	background: #0f2443;
	color: #94a3b8;
	border: 1px solid #1e293b;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}
.wbv-tag:hover,
.wbv-tag--active {
	background: #e65616;
	color: #fff;
	border-color: #e65616;
}
.wbv-tag--version {
	background: #1e3a5f;
	color: #93c5fd;
	border-color: #2563eb;
}

/* ── Topic Filter Bar ── */
.wbv-topic-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

/* ── CPT Archive Header ── */
.wbv-cpt-header {
	padding: 3rem 0 2rem;
	border-bottom: 1px solid #1e293b;
	margin-bottom: 2rem;
}
.wbv-cpt-header h1 {
	font-size: clamp(1.8rem, 4vw, 2.75rem);
	font-weight: 800;
	color: #fff;
	margin: 0.35rem 0 0.75rem;
}
.wbv-cpt-header__desc {
	color: #cbd5e1;
	max-width: 56ch;
	font-size: 1.05rem;
	margin: 0;
}
.wbv-cpt-header--guides { border-left: 4px solid #10b981; padding-left: 1.25rem; }
.wbv-cpt-header--plugins { border-left: 4px solid #3b82f6; padding-left: 1.25rem; }
.wbv-cpt-header--tips { border-left: 4px solid #e65616; padding-left: 1.25rem; }

/* ── Plugin Grid (archive) ── */
.wbv-plugin-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-bottom: 2rem;
}
@media (max-width: 640px) {
	.wbv-plugin-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Tips Grid (archive) ── */
.wbv-tips-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
}
@media (max-width: 900px) {
	.wbv-tips-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.wbv-tips-grid { grid-template-columns: 1fr; }
}

/* ── Empty State ── */
.wbv-empty-state {
	padding: 3rem 0;
	text-align: center;
	color: #64748b;
}
.wbv-empty-state p {
	margin-bottom: 1.25rem;
}

/* ── Breadcrumb ── */
.wbv-breadcrumb {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: #94a3b8;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 1rem;
}
.wbv-breadcrumb:hover {
	color: #e65616;
}

/* ── Guide Single ── */
.wbv-single-guide__header,
.wbv-single-plugin__header {
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #1e293b;
	margin-bottom: 2rem;
}
.wbv-single-guide__header h1,
.wbv-single-plugin__header h1 {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 800;
	color: #fff;
	margin: 0.75rem 0;
}
.wbv-single-guide__meta {
	font-size: 0.85rem;
	color: #64748b;
}
.wbv-single-guide__thumbnail,
.wbv-single-plugin__thumbnail {
	width: 100%;
	height: auto;
	border-radius: 0.75rem;
	margin-top: 1.5rem;
	display: block;
}
.wbv-single-guide__footer,
.wbv-single-plugin__footer {
	padding-top: 2rem;
	border-top: 1px solid #1e293b;
	margin-top: 2rem;
}

/* ── Plugin Meta Block ── */
.wbv-plugin-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0.75rem 0;
}
.wbv-plugin-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.25rem 0;
}
.wbv-single-plugin__cta {
	text-align: center;
	padding: 2.5rem 0;
	border-top: 1px solid #1e293b;
	margin-top: 2rem;
}

/* ── Prose (article body) ── */
.wbv-prose {
	color: #cbd5e1;
	font-size: 1.05rem;
	line-height: 1.8;
}
.wbv-prose h2,
.wbv-prose h3,
.wbv-prose h4 {
	color: #fff;
	margin: 2rem 0 0.75rem;
	font-weight: 700;
}
.wbv-prose h2 { font-size: 1.5rem; }
.wbv-prose h3 { font-size: 1.2rem; }
.wbv-prose p  { margin: 0 0 1.25rem; }
.wbv-prose a {
	color: #e65616;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.wbv-prose a:hover { color: #ff7a3d; }
.wbv-prose ul,
.wbv-prose ol {
	padding-left: 1.5rem;
	margin: 0 0 1.25rem;
}
.wbv-prose li { margin-bottom: 0.4rem; }
.wbv-prose pre,
.wbv-prose code {
	background: #0a1628;
	border: 1px solid #1e293b;
	border-radius: 0.4rem;
	font-family: 'Fira Code', 'Consolas', monospace;
	font-size: 0.88em;
}
.wbv-prose pre {
	padding: 1.1rem 1.25rem;
	overflow-x: auto;
	margin: 1.25rem 0;
}
.wbv-prose code {
	padding: 0.15em 0.45em;
}
.wbv-prose blockquote {
	border-left: 4px solid #e65616;
	padding: 0.75rem 1.25rem;
	margin: 1.5rem 0;
	background: #021c40;
	border-radius: 0 0.5rem 0.5rem 0;
	font-style: italic;
	color: #94a3b8;
}
.wbv-prose img {
	max-width: 100%;
	height: auto;
	border-radius: 0.5rem;
	display: block;
	margin: 1.5rem auto;
}
.wbv-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
	font-size: 0.92rem;
}
.wbv-prose th {
	background: #0f2443;
	color: #fff;
	padding: 0.6rem 0.9rem;
	text-align: left;
	font-weight: 700;
	border-bottom: 2px solid #1e293b;
}
.wbv-prose td {
	padding: 0.6rem 0.9rem;
	border-bottom: 1px solid #1e293b;
	color: #cbd5e1;
}
.wbv-prose tr:hover td { background: rgba(255,255,255,0.02); }

/* ── xs button variant ── */
.wbv-btn--xs {
	padding: 0.25rem 0.65rem;
	font-size: 0.75rem;
}
.wbv-btn--lg {
	padding: 0.875rem 2rem;
	font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════
   PARTICLE CANVAS
   ═══════════════════════════════════════════════════════════ */
#wbv-particle-canvas {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

/* ensure body children sit above canvas */
.site-header,
.site-main,
.site-footer,
.wbv-section,
.wbv-hero,
.wbv-cpt-header,
.wbv-footer { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════
   ENTRANCE ANIMATIONS — data-reveal
   ═══════════════════════════════════════════════════════════ */
[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}
[data-reveal="left"] {
	transform: translateX(-40px);
}
[data-reveal="right"] {
	transform: translateX(40px);
}
[data-reveal="scale"] {
	transform: scale(0.92);
}
[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0) translateX(0) scale(1);
}

/* ═══════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes wbv-pulse {
	0%, 100% { opacity: 1; }
	50%      { opacity: 0.55; }
}
@keyframes wbv-shimmer {
	0%   { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}
@keyframes wbv-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-8px); }
}
@keyframes wbv-glow-ring {
	0%, 100% { box-shadow: 0 0 0 0 rgba(230, 86, 22, 0.0); }
	50%      { box-shadow: 0 0 28px 4px rgba(230, 86, 22, 0.12); }
}

/* ── Card hover glow ── */
.wbv-card:hover,
.wbv-mini-card:hover {
	box-shadow:
		0 0 0 1px rgba(230, 86, 22, 0.3),
		0 18px 40px rgba(0, 0, 0, 0.35),
		0 0 32px -8px rgba(230, 86, 22, 0.1);
}

/* ── Animated border shimmer on featured cards ── */
.wbv-card--featured {
	position: relative;
	overflow: hidden;
}
.wbv-card--featured::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--wbv-radius);
	padding: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(230, 86, 22, 0.3) 40%,
		rgba(230, 86, 22, 0.6) 50%,
		rgba(230, 86, 22, 0.3) 60%,
		transparent 100%
	);
	background-size: 200% 100%;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: wbv-shimmer 4s ease-in-out infinite;
	pointer-events: none;
	z-index: 2;
}

/* ── Hero floating accent aura ── */
.wbv-hero__panel {
	animation: wbv-float 6s ease-in-out infinite;
}

/* ── Status / badge pulse ── */
.wbv-badge--pulse {
	animation: wbv-pulse 2s ease-in-out infinite;
}
.wbv-badge--glow {
	animation: wbv-glow-ring 3s ease-in-out infinite;
}

/* ── Prose link hover animation ── */
.wbv-prose a {
	position: relative;
	background-image: linear-gradient(var(--wbv-accent), var(--wbv-accent));
	background-size: 0% 2px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.3s ease;
	padding-bottom: 2px;
}
.wbv-prose a:hover {
	background-size: 100% 2px;
}

/* ═══════════════════════════════════════════════════════════
   FAQ SMOOTH ACCORDION
   ═══════════════════════════════════════════════════════════ */
.wbv-faq__item { border-bottom: 1px solid var(--wbv-border); }
.wbv-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.1rem 0;
	background: none;
	border: none;
	color: var(--wbv-ink);
	font-family: var(--wbv-font);
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	text-align: left;
	gap: 1rem;
}
.wbv-faq__q::after {
	content: '+';
	font-size: 1.3rem;
	font-weight: 300;
	color: var(--wbv-accent);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}
.wbv-faq__item.is-open .wbv-faq__q::after {
	transform: rotate(45deg);
}
.wbv-faq__a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}
.wbv-faq__item.is-open .wbv-faq__a {
	grid-template-rows: 1fr;
}
.wbv-faq__a > div {
	overflow: hidden;
}
.wbv-faq__a p {
	padding-bottom: 1.1rem;
	color: var(--wbv-muted);
	line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   TOC — Table of Contents (Guide posts)
   ═══════════════════════════════════════════════════════════ */
.wbv-toc {
	background: var(--wbv-surface-alt);
	border: 1px solid var(--wbv-border);
	border-radius: var(--wbv-radius);
	padding: 1.25rem 1.5rem;
	margin-bottom: 2rem;
}
.wbv-toc__heading {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--wbv-muted);
	margin-bottom: 0.8rem;
}
.wbv-toc__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.wbv-toc__item { margin: 0; }
.wbv-toc__item--h3 { padding-left: 1rem; }
.wbv-toc__link {
	display: block;
	padding: 0.35rem 0.5rem;
	border-radius: 6px;
	color: var(--wbv-muted);
	font-size: 0.88rem;
	transition: color 0.15s, background 0.15s;
}
.wbv-toc__link:hover,
.wbv-toc__link.is-active {
	color: var(--wbv-ink);
	background: rgba(255, 255, 255, 0.04);
}
.wbv-toc__link.is-active {
	border-left: 2px solid var(--wbv-accent);
	padding-left: calc(0.5rem - 2px);
}

/* ═══════════════════════════════════════════════════════════
   CPT META BADGES & PILLS
   ═══════════════════════════════════════════════════════════ */
.wbv-meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 0.75rem;
}
.wbv-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.2rem 0.65rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	line-height: 1.5;
}
.wbv-badge--difficulty {
	background: rgba(230, 86, 22, 0.15);
	color: #f09060;
}
.wbv-badge--difficulty[data-level="beginner"] {
	background: rgba(34, 197, 94, 0.15);
	color: #4ade80;
}
.wbv-badge--difficulty[data-level="intermediate"] {
	background: rgba(234, 179, 8, 0.15);
	color: #facc15;
}
.wbv-badge--difficulty[data-level="advanced"] {
	background: rgba(239, 68, 68, 0.15);
	color: #f87171;
}
.wbv-badge--time {
	background: rgba(96, 165, 250, 0.12);
	color: #93c5fd;
}
.wbv-badge--type {
	background: rgba(168, 85, 247, 0.15);
	color: #c084fc;
}
.wbv-badge--version {
	background: rgba(34, 197, 94, 0.12);
	color: #4ade80;
}
.wbv-tool-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}
.wbv-tool-pill {
	padding: 0.15rem 0.55rem;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.06);
	color: var(--wbv-muted);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Plugin screenshot hero ── */
.wbv-plugin-hero {
	border-radius: var(--wbv-radius);
	overflow: hidden;
	margin-bottom: 2rem;
	border: 1px solid var(--wbv-border);
}
.wbv-plugin-hero img {
	width: 100%;
	height: auto;
	display: block;
}

/* ── Plugin spec table ── */
.wbv-spec-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
	font-size: 0.88rem;
}
.wbv-spec-table th {
	text-align: left;
	padding: 0.65rem 1rem;
	color: var(--wbv-muted);
	font-weight: 500;
	border-bottom: 1px solid var(--wbv-border);
	width: 35%;
}
.wbv-spec-table td {
	padding: 0.65rem 1rem;
	color: var(--wbv-ink);
	border-bottom: 1px solid var(--wbv-border);
}

/* ── Changelog accordion ── */
.wbv-changelog { margin-top: 2rem; }
.wbv-changelog__toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: none;
	border: 1px solid var(--wbv-border);
	border-radius: var(--wbv-radius);
	padding: 0.75rem 1.25rem;
	color: var(--wbv-ink);
	font-family: var(--wbv-font);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	text-align: left;
	transition: border-color 0.15s;
}
.wbv-changelog__toggle:hover { border-color: var(--wbv-accent); }
.wbv-changelog__toggle::after {
	content: '▸';
	margin-left: auto;
	transition: transform 0.25s;
}
.wbv-changelog.is-open .wbv-changelog__toggle::after {
	transform: rotate(90deg);
}
.wbv-changelog__body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}
.wbv-changelog.is-open .wbv-changelog__body {
	grid-template-rows: 1fr;
}
.wbv-changelog__body > div { overflow: hidden; }
.wbv-changelog__inner {
	padding: 1rem 0;
	color: var(--wbv-muted);
	font-size: 0.88rem;
	line-height: 1.7;
}

/* ── Tip takeaway callout ── */
.wbv-takeaway {
	background: linear-gradient(135deg, rgba(230, 86, 22, 0.08), rgba(28, 61, 110, 0.12));
	border-left: 3px solid var(--wbv-accent);
	border-radius: 0 var(--wbv-radius) var(--wbv-radius) 0;
	padding: 1rem 1.25rem;
	margin: 1.5rem 0;
	font-size: 0.95rem;
	color: var(--wbv-ink);
	font-weight: 500;
}
.wbv-takeaway strong {
	color: var(--wbv-accent);
	font-weight: 700;
}

/* ── Topic archive: multi-CPT sections ── */
.wbv-topic-section { margin-bottom: 3rem; }
.wbv-topic-section__heading {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--wbv-ink);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.wbv-topic-section__heading::before {
	content: '';
	width: 3px;
	height: 1.1em;
	background: var(--wbv-accent);
	border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   FOCUS-VISIBLE (WCAG 2.1 AA)
   ═══════════════════════════════════════════════════════════ */

:focus-visible {
	outline: 2px solid var(--wbv-accent);
	outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--wbv-accent);
	outline-offset: 2px;
}

.wbv-btn:focus-visible {
	outline: 2px solid var(--wbv-accent);
	outline-offset: 3px;
	box-shadow: 0 0 0 4px rgba(230, 86, 22, 0.25);
}

.wbv-btn--primary:focus-visible {
	outline-color: #fff;
	box-shadow: 0 0 0 4px rgba(230, 86, 22, 0.4);
}

.wbv-faq__q:focus-visible {
	outline: 2px solid var(--wbv-accent);
	outline-offset: -2px;
	border-radius: 8px;
}

.wbv-card:focus-visible,
.wbv-trust-card:focus-visible,
.wbv-cta-segment:focus-visible {
	outline: 2px solid var(--wbv-accent);
	outline-offset: 2px;
	box-shadow: 0 0 12px rgba(230, 86, 22, 0.3);
}

.wbv-desktop-nav a:focus-visible,
.wbv-brand:focus-visible {
	outline: 2px solid var(--wbv-accent);
	outline-offset: 3px;
	border-radius: 4px;
}

.wbv-mobile-nav summary:focus-visible {
	outline: 2px solid var(--wbv-accent);
	outline-offset: 2px;
}

.wbv-toc__link:focus-visible {
	outline: 2px solid var(--wbv-accent);
	outline-offset: 1px;
	border-radius: 4px;
}

.wbv-skip-link:focus-visible {
	outline: 2px solid var(--wbv-accent);
	outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION OVERRIDE
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	.wbv-hero__panel,
	.wbv-badge--pulse,
	.wbv-badge--glow,
	.wbv-card--featured::before {
		animation: none !important;
	}
	#wbv-particle-canvas { display: none; }
}

