/* WISEVOC — components */

.wv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--wv-space-2);
	height: 52px;
	padding: 0 var(--wv-space-8);
	font-family: var(--wv-font-ui);
	font-weight: 600;
	font-size: 15px;
	border-radius: var(--wv-radius-pill);
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: all var(--wv-dur-base) var(--wv-ease-spring);
	white-space: nowrap;
}

.wv-btn-primary {
	background: linear-gradient(135deg, var(--wv-color-teal), var(--wv-color-teal-dark));
	color: var(--wv-color-obsidian);
	will-change: transform, box-shadow;
}

.wv-btn-primary:hover {
	box-shadow: 0 0 30px rgba(0, 229, 195, 0.4), 0 0 60px rgba(0, 229, 195, 0.15);
	transform: translateY(-1px);
}

.wv-btn-primary:active {
	transform: scale(0.97);
}

.wv-btn-secondary {
	background: transparent;
	border: 1px solid var(--wv-color-teal);
	color: var(--wv-color-teal);
}

.wv-btn-secondary:hover {
	background: rgba(0, 229, 195, 0.08);
}

.wv-btn-ghost {
	background: transparent;
	border: none;
	color: var(--wv-color-teal);
	padding-inline: 0;
	height: auto;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.wv-card {
	background: var(--wv-color-surface);
	border: 1px solid var(--wv-color-border);
	border-radius: var(--wv-radius-lg);
	padding: var(--wv-space-8);
	transition: all var(--wv-dur-base) var(--wv-ease-spring);
	will-change: transform, box-shadow;
}

.wv-card:hover {
	border-color: rgba(0, 229, 195, 0.3);
	box-shadow: var(--wv-glow-teal), var(--wv-shadow-card);
	transform: translateY(-4px);
}

.wv-card--featured {
	border-color: rgba(0, 229, 195, 0.45);
	box-shadow: var(--wv-glow-teal);
	position: relative;
}

.wv-card--enterprise {
	background: linear-gradient(145deg, var(--wv-color-surface-raised), var(--wv-color-surface));
	border-color: rgba(0, 229, 195, 0.2);
}

.wv-card-feature .wv-card-feature__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: var(--wv-space-4);
	color: var(--wv-color-teal);
}

.wv-card-feature h3 {
	font-family: var(--wv-font-display);
	font-weight: 800;
	font-size: var(--wp--preset--font-size--xl, 20px);
	margin: 0 0 var(--wv-space-3);
	color: var(--wv-color-text-primary);
}

.wv-card-feature p {
	margin: 0;
	color: var(--wv-color-text-secondary);
	font-size: var(--wp--preset--font-size--base, 16px);
}

.wv-card-pricing {
	display: flex;
	flex-direction: column;
	gap: var(--wv-space-4);
}

.wv-card-pricing h3 {
	font-family: var(--wv-font-display);
	font-weight: 800;
	margin: 0;
}

.wv-card-pricing__price {
	font-family: var(--wv-font-mono);
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 500;
	color: var(--wv-color-teal);
}

.wv-card-pricing__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--wv-space-3);
	font-size: var(--wp--preset--font-size--sm, 14px);
	color: var(--wv-color-text-secondary);
}

.wv-card-pricing__features li {
	display: flex;
	align-items: flex-start;
	gap: var(--wv-space-2);
}

.wv-card-pricing__features .wv-check {
	color: var(--wv-color-success);
}

.wv-card-pricing__features .wv-x {
	color: var(--wv-color-text-tertiary);
}

.wv-popular-badge {
	position: absolute;
	top: var(--wv-space-4);
	right: var(--wv-space-4);
	font-family: var(--wv-font-mono);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: var(--wv-space-2) var(--wv-space-4);
	border-radius: var(--wv-radius-pill);
	background: rgba(0, 229, 195, 0.15);
	border: 1px solid rgba(0, 229, 195, 0.35);
	color: var(--wv-color-teal);
}

.wv-card-testimonial {
	display: flex;
	flex-direction: column;
	gap: var(--wv-space-4);
}

.wv-card-testimonial__quote {
	font-size: var(--wp--preset--font-size--lg, 18px);
	font-style: italic;
	color: var(--wv-color-text-primary);
	line-height: 1.6;
	margin: 0;
}

.wv-card-testimonial__stars {
	display: flex;
	gap: 4px;
	color: var(--wv-color-teal);
}

.wv-card-testimonial__meta {
	display: flex;
	align-items: center;
	gap: var(--wv-space-4);
}

.wv-avatar,
.wv-avatar-placeholder {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--wv-color-surface-raised);
	border: 1px solid var(--wv-color-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wv-font-mono);
	font-size: 14px;
	color: var(--wv-color-teal);
	flex-shrink: 0;
}

.wv-card-stat {
	text-align: center;
}

.wv-card-stat__value {
	font-family: var(--wv-font-mono);
	font-size: 2rem;
	color: var(--wv-color-teal);
}

.wv-card-integration {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--wv-space-3);
	min-height: 120px;
	position: relative;
}

.wv-card-integration__logo {
	font-family: var(--wv-font-ui);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--lg, 18px);
	color: var(--wv-color-text-primary);
}

.wv-card-integration__badge {
	position: absolute;
	bottom: var(--wv-space-4);
	right: var(--wv-space-4);
	font-family: var(--wv-font-mono);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 2px 8px;
	border-radius: var(--wv-radius-pill);
	background: rgba(56, 189, 248, 0.12);
	color: var(--wv-color-cyan);
	border: 1px solid rgba(56, 189, 248, 0.25);
}

.wv-badge {
	display: inline-flex;
	align-items: center;
	border-radius: var(--wv-radius-pill);
	font-family: var(--wv-font-mono);
	font-size: 11px;
	font-weight: 500;
	padding: 4px 12px;
	line-height: 1.2;
}

.wv-badge-teal {
	background: rgba(0, 229, 195, 0.15);
	color: var(--wv-color-teal);
	border: 1px solid rgba(0, 229, 195, 0.3);
}

.wv-badge-cyan {
	background: rgba(56, 189, 248, 0.12);
	color: var(--wv-color-cyan);
	border: 1px solid rgba(56, 189, 248, 0.28);
}

.wv-badge-success {
	background: rgba(16, 185, 129, 0.12);
	color: var(--wv-color-success);
	border: 1px solid rgba(16, 185, 129, 0.28);
}

.wv-badge-danger {
	background: rgba(255, 59, 92, 0.12);
	color: var(--wv-color-danger);
	border: 1px solid rgba(255, 59, 92, 0.28);
}

.wv-badge-warning {
	background: rgba(245, 158, 11, 0.12);
	color: var(--wv-color-warning);
	border: 1px solid rgba(245, 158, 11, 0.28);
}

.wv-field {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--wv-space-2);
	margin-bottom: var(--wv-space-5);
}

.wv-label {
	font-family: var(--wv-font-ui);
	font-size: var(--wp--preset--font-size--sm, 14px);
	font-weight: 500;
	color: var(--wv-color-text-secondary);
}

.wv-input,
.wv-select,
.wv-demo-form input,
.wv-demo-form select,
.wv-demo-form textarea {
	width: 100%;
	height: 52px;
	padding: var(--wv-space-4) var(--wv-space-4);
	font-family: var(--wv-font-body);
	font-size: var(--wp--preset--font-size--base, 16px);
	color: var(--wv-color-text-primary);
	background: var(--wv-color-surface);
	border: 1px solid var(--wv-color-border);
	border-radius: var(--wv-radius-md);
	transition: border-color var(--wv-dur-fast) var(--wv-ease-out), box-shadow var(--wv-dur-fast) var(--wv-ease-out);
}

.wv-demo-form textarea {
	min-height: 120px;
	height: auto;
	resize: vertical;
}

.wv-input:focus,
.wv-select:focus,
.wv-demo-form input:focus,
.wv-demo-form select:focus,
.wv-demo-form textarea:focus {
	outline: none;
	border-color: var(--wv-color-teal);
	box-shadow: 0 0 0 3px rgba(0, 229, 195, 0.2);
}

.wv-field--error .wv-input,
.wv-field--error input,
.wv-field--error select {
	border-color: var(--wv-color-danger);
}

.wv-field__error-msg {
	display: none;
	font-size: var(--wp--preset--font-size--sm, 14px);
	color: var(--wv-color-danger);
	margin-top: var(--wv-space-1);
}

.wv-field--error .wv-field__error-msg {
	display: block;
}

.wv-icon {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.wv-icon-sm {
	width: 16px;
	height: 16px;
}

.wv-icon-md {
	width: 24px;
	height: 24px;
}

.wv-icon-lg {
	width: 32px;
	height: 32px;
}

.wv-icon-xl {
	width: 48px;
	height: 48px;
}

.wv-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 0 calc(-1 * var(--wv-space-4));
	padding: 0 var(--wv-space-4);
}

.wv-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: var(--wp--preset--font-size--sm, 14px);
	background: var(--wv-color-surface);
	border-radius: var(--wv-radius-lg);
	overflow: hidden;
	border: 1px solid var(--wv-color-border);
}

.wv-table thead th {
	position: sticky;
	top: 0;
	z-index: 2;
	font-family: var(--wv-font-ui);
	font-weight: 600;
	text-align: left;
	padding: var(--wv-space-4) var(--wv-space-5);
	background: var(--wv-color-surface-raised);
	color: var(--wv-color-text-primary);
	border-bottom: 1px solid var(--wv-color-border);
}

.wv-table thead th.wv-col-featured {
	background: rgba(0, 229, 195, 0.12);
	color: var(--wv-color-teal);
	box-shadow: inset 0 0 0 1px rgba(0, 229, 195, 0.25);
}

.wv-table tbody tr:nth-child(even) {
	background: rgba(4, 10, 20, 0.35);
}

.wv-table td,
.wv-table th[scope="row"] {
	padding: var(--wv-space-4) var(--wv-space-5);
	border-bottom: 1px solid var(--wv-color-border);
	color: var(--wv-color-text-secondary);
	vertical-align: middle;
}

.wv-table tbody th[scope="row"] {
	font-family: var(--wv-font-ui);
	font-weight: 500;
	color: var(--wv-color-text-primary);
	text-align: left;
}

.wv-table .wv-table-cat {
	background: var(--wv-color-deep);
	color: var(--wv-color-teal);
	font-family: var(--wv-font-ui);
	font-size: var(--wp--preset--font-size--sm, 14px);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.wv-table td.wv-col-featured {
	background: rgba(0, 229, 195, 0.06);
	color: var(--wv-color-text-primary);
}

.wv-check {
	color: var(--wv-color-success);
	font-weight: 700;
}

.wv-x {
	color: var(--wv-color-danger);
	opacity: 0.85;
	font-weight: 700;
}

.wv-notification {
	display: flex;
	align-items: center;
	gap: var(--wv-space-3);
	padding: var(--wv-space-3) var(--wv-space-4);
	max-width: 260px;
	font-size: var(--wp--preset--font-size--sm, 14px);
	color: var(--wv-color-text-primary);
	will-change: transform;
}

.wv-waveform path,
path.wv-waveform {
	stroke: var(--wv-color-teal);
	stroke-width: 2;
	fill: none;
}

.wv-waveform-bg {
	display: block;
	width: 100%;
	height: 60px;
	pointer-events: none;
	opacity: 0.45;
}

.wv-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-block: var(--wv-space-20);
	overflow: hidden;
}

.wv-hero-title {
	font-family: var(--wv-font-display);
	font-weight: 800;
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	letter-spacing: -0.04em;
	line-height: 1.08;
	color: var(--wv-color-text-primary);
	margin: 0 0 var(--wv-space-6);
}

.wv-hero-sub {
	font-size: var(--wp--preset--font-size--lg, 18px);
	color: var(--wv-color-text-secondary);
	max-width: 36rem;
	margin: 0 0 var(--wv-space-8);
}

.wv-hero-ctas {
	display: flex;
	gap: var(--wv-space-4);
	flex-wrap: wrap;
	margin-bottom: var(--wv-space-6);
}

.wv-hero-trust {
	display: flex;
	align-items: center;
	gap: var(--wv-space-3);
	font-size: var(--wp--preset--font-size--sm, 14px);
	color: var(--wv-color-text-secondary);
}

.wv-hero-watch-scene {
	position: relative;
	width: 100%;
	max-width: 420px;
	margin-inline: auto;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	will-change: transform, opacity;
}

.wv-orbital {
	position: absolute;
	border: 1px solid rgba(0, 229, 195, 0.22);
	border-radius: 50%;
	pointer-events: none;
}

.wv-orbital--1 {
	width: 92%;
	height: 92%;
}

.wv-orbital--2 {
	width: 78%;
	height: 78%;
	border-color: rgba(56, 189, 248, 0.18);
}

.wv-watch-mockup {
	position: relative;
	width: 200px;
	height: 240px;
	padding: 14px;
	border-radius: 36px;
	background: linear-gradient(160deg, var(--wv-color-surface-raised), var(--wv-color-deep));
	box-shadow: var(--wv-glow-teal), var(--wv-shadow-card);
	border: 1px solid rgba(0, 229, 195, 0.25);
}

.wv-watch-screen {
	position: relative;
	height: 100%;
	border-radius: 26px;
	background: var(--wv-color-obsidian);
	border: 1px solid var(--wv-color-border);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: var(--wv-space-3);
}

.wv-watch-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--wv-font-mono);
	font-size: 10px;
	color: var(--wv-color-text-tertiary);
	margin-bottom: var(--wv-space-3);
}

.wv-watch-brand {
	color: var(--wv-color-teal);
	font-weight: 600;
	letter-spacing: 0.12em;
}

.wv-watch-alert {
	background: rgba(255, 59, 92, 0.12);
	border: 1px solid rgba(255, 59, 92, 0.35);
	border-radius: var(--wv-radius-md);
	padding: var(--wv-space-2) var(--wv-space-3);
	margin-bottom: var(--wv-space-3);
}

.wv-watch-alert__label {
	font-family: var(--wv-font-mono);
	font-size: 9px;
	color: var(--wv-color-danger);
	display: block;
}

.wv-watch-alert__msg {
	font-family: var(--wv-font-ui);
	font-size: 12px;
	font-weight: 600;
	color: var(--wv-color-text-primary);
}

.wv-watch-actions {
	display: flex;
	gap: var(--wv-space-2);
	margin-bottom: var(--wv-space-3);
}

.wv-watch-btn {
	flex: 1;
	height: 36px;
	border-radius: var(--wv-radius-sm);
	border: 1px solid var(--wv-color-border);
	background: var(--wv-color-surface);
	color: var(--wv-color-text-primary);
	cursor: default;
	font-size: 14px;
}

.wv-watch-btn--accept {
	border-color: rgba(16, 185, 129, 0.4);
	color: var(--wv-color-success);
}

.wv-watch-btn--escalate {
	border-color: rgba(245, 158, 11, 0.45);
	color: var(--wv-color-warning);
}

.wv-watch-btn--mute {
	border-color: rgba(255, 59, 92, 0.35);
	color: var(--wv-color-danger);
}

.wv-watch-vitals {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: auto;
	font-family: var(--wv-font-mono);
	font-size: 10px;
	color: var(--wv-color-text-secondary);
}

.wv-watch-bpm {
	color: var(--wv-color-teal);
}

.wv-watch-status {
	color: var(--wv-color-success);
}

.wv-watch-ecg {
	width: 100%;
	height: 20px;
	margin-top: var(--wv-space-2);
}

.wv-notification--1 {
	position: absolute;
	top: 8%;
	right: -8%;
}

.wv-notification--2 {
	position: absolute;
	bottom: 18%;
	left: -12%;
}

.wv-notification--3 {
	position: absolute;
	top: 38%;
	right: -4%;
}

.wv-pulse-dot {
	position: relative;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--wv-color-danger);
	flex-shrink: 0;
}

.wv-pulse-dot::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--wv-color-danger);
	animation: wv-pulse-dot 2s ease-out infinite;
}

.wv-stat-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--wv-space-4);
	align-items: stretch;
}

.wv-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--wv-space-2);
	padding: var(--wv-space-4);
	position: relative;
}

.wv-stat:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 15%;
	bottom: 15%;
	width: 1px;
	background: var(--wv-color-border);
}

.wv-stat__number {
	font-family: var(--wv-font-mono);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 500;
	color: var(--wv-color-teal);
}

.wv-stat__suffix {
	font-family: var(--wv-font-mono);
	font-size: 1.5rem;
	color: var(--wv-color-teal);
}

.wv-stat__label {
	margin: 0;
	max-width: 14rem;
	font-size: var(--wp--preset--font-size--sm, 14px);
	color: var(--wv-color-text-secondary);
}

.wv-toggle {
	display: inline-flex;
	padding: 4px;
	border-radius: var(--wv-radius-pill);
	background: var(--wv-color-surface);
	border: 1px solid var(--wv-color-border);
	gap: 4px;
}

.wv-toggle button {
	border: none;
	background: transparent;
	color: var(--wv-color-text-secondary);
	font-family: var(--wv-font-ui);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--sm, 14px);
	padding: var(--wv-space-2) var(--wv-space-5);
	border-radius: var(--wv-radius-pill);
	cursor: pointer;
	transition: background var(--wv-dur-fast) var(--wv-ease-out), color var(--wv-dur-fast) var(--wv-ease-out);
}

.wv-toggle button.is-active {
	background: rgba(0, 229, 195, 0.15);
	color: var(--wv-color-teal);
}

.wv-problem-panels [data-wv-problem-panel] {
	display: none;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.wv-problem-panels [data-wv-problem-panel].is-active {
	display: block;
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	animation: wv-fade-in 0.4s ease forwards;
}

.wv-filter-pills {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wv-space-2);
	margin-bottom: var(--wv-space-8);
}

.wv-filter-pill {
	font-family: var(--wv-font-ui);
	font-size: var(--wp--preset--font-size--sm, 14px);
	padding: var(--wv-space-2) var(--wv-space-5);
	border-radius: var(--wv-radius-pill);
	border: 1px solid var(--wv-color-border);
	background: transparent;
	color: var(--wv-color-text-secondary);
	cursor: pointer;
	transition: all var(--wv-dur-fast) var(--wv-ease-out);
}

.wv-filter-pill:hover,
.wv-filter-pill.is-active {
	border-color: var(--wv-color-teal);
	color: var(--wv-color-teal);
	background: rgba(0, 229, 195, 0.08);
}

.wv-integration-tile[data-wv-filter] {
	transition: opacity var(--wv-dur-base) var(--wv-ease-out), transform var(--wv-dur-base) var(--wv-ease-out);
}

.wv-integration-tile.is-hidden {
	opacity: 0.2;
	pointer-events: none;
	transform: scale(0.98);
}

.wv-accordion-item {
	border-bottom: 1px solid var(--wv-color-border);
}

.wv-accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--wv-space-4);
	padding: var(--wv-space-5) 0;
	background: none;
	border: none;
	color: var(--wv-color-text-primary);
	font-family: var(--wv-font-ui);
	font-size: var(--wp--preset--font-size--lg, 18px);
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	border-left: 3px solid transparent;
	padding-left: var(--wv-space-4);
	transition: border-color var(--wv-dur-fast) var(--wv-ease-out);
}

.wv-accordion-item.is-open .wv-accordion-trigger {
	border-left-color: var(--wv-color-teal);
}

.wv-accordion-trigger .wv-accordion-chevron {
	transition: transform var(--wv-dur-base) var(--wv-ease-spring);
}

.wv-accordion-item.is-open .wv-accordion-chevron {
	transform: rotate(180deg);
}

.wv-accordion-body {
	overflow: hidden;
	height: 0;
}

.wv-accordion-body__inner {
	padding-bottom: var(--wv-space-5);
	color: var(--wv-color-text-secondary);
	font-size: var(--wp--preset--font-size--base, 16px);
	line-height: 1.7;
}

.wv-tabs__list {
	display: flex;
	gap: var(--wv-space-2);
	border-bottom: 1px solid var(--wv-color-border);
	margin-bottom: var(--wv-space-6);
}

.wv-tabs__tab {
	padding: var(--wv-space-3) var(--wv-space-5);
	font-family: var(--wv-font-ui);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--sm, 14px);
	background: none;
	border: none;
	color: var(--wv-color-text-tertiary);
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
}

.wv-tabs__tab.is-active,
.wv-tabs__tab[aria-selected="true"] {
	color: var(--wv-color-teal);
	border-bottom-color: var(--wv-color-teal);
}

.wv-tabs__panel {
	display: none;
}

.wv-tabs__panel.is-active {
	display: block;
}

.wv-pricing-toggle {
	display: inline-flex;
	align-items: center;
	gap: var(--wv-space-3);
	margin-bottom: var(--wv-space-10);
}

.wv-pricing-toggle__inner {
	display: flex;
	padding: 4px;
	border-radius: var(--wv-radius-pill);
	background: var(--wv-color-surface);
	border: 1px solid var(--wv-color-border);
}

.wv-pricing-toggle button {
	border: none;
	background: transparent;
	font-family: var(--wv-font-ui);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--sm, 14px);
	color: var(--wv-color-text-secondary);
	padding: var(--wv-space-2) var(--wv-space-6);
	border-radius: var(--wv-radius-pill);
	cursor: pointer;
}

.wv-pricing-toggle button.is-active {
	background: rgba(0, 229, 195, 0.18);
	color: var(--wv-color-teal);
}

.wv-pricing-annual-badge {
	font-family: var(--wv-font-mono);
	font-size: 11px;
	color: var(--wv-color-success);
	opacity: 0;
}

.wv-pricing-annual-badge.is-visible {
	opacity: 1;
}

.wv-price-display [data-wv-annual] {
	display: none;
}

.wv-pricing-toggle[data-state="annual"] .wv-price-display [data-wv-monthly] {
	display: none;
}

.wv-pricing-toggle[data-state="annual"] .wv-price-display [data-wv-annual] {
	display: inline;
}

.wv-pricing-note {
	text-align: center;
	margin-top: var(--wv-space-10);
	font-size: var(--wp--preset--font-size--sm, 14px);
	color: var(--wv-color-text-secondary);
}

.wv-demo-form-wrap {
	padding: var(--wv-space-8);
}

.wv-demo-privacy {
	display: flex;
	gap: var(--wv-space-2);
	align-items: center;
	margin-bottom: var(--wv-space-4);
}

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

.wv-demo-footnote {
	margin-top: var(--wv-space-3);
}

.wv-form-success {
	display: none;
	text-align: center;
	padding: var(--wv-space-10);
}

.wv-form-success h2 {
	font-family: var(--wv-font-display);
	font-weight: 800;
	color: var(--wv-color-text-primary);
}

.wv-checkmark-animate {
	width: 80px;
	height: 80px;
	margin: 0 auto var(--wv-space-6);
}

.wv-checkmark-path {
	fill: none;
	stroke: var(--wv-color-teal);
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 200;
	stroke-dashoffset: 200;
}

.wv-timeline {
	position: relative;
	padding-left: var(--wv-space-10);
	margin: 0;
	list-style: none;
}

.wv-timeline::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	width: 1px;
	background: var(--wv-color-border);
}

.wv-timeline__item {
	position: relative;
	padding-bottom: var(--wv-space-10);
}

.wv-timeline__dot {
	position: absolute;
	left: -26px;
	top: 6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--wv-color-teal);
	box-shadow: 0 0 0 4px rgba(0, 229, 195, 0.2);
}

.wv-timeline__date {
	font-family: var(--wv-font-mono);
	font-size: var(--wp--preset--font-size--sm, 14px);
	color: var(--wv-color-teal);
	margin-bottom: var(--wv-space-2);
}

.wv-timeline__item h3 {
	font-family: var(--wv-font-display);
	font-weight: 800;
	margin: 0 0 var(--wv-space-2);
	color: var(--wv-color-text-primary);
}

.wv-timeline__item p {
	margin: 0;
	color: var(--wv-color-text-secondary);
}

.wv-blog-featured {
	margin-bottom: var(--wv-space-12);
}

.wv-comparison-mini {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wv-space-6);
}

@media (max-width: 768px) {
	.wv-comparison-mini {
		grid-template-columns: 1fr;
	}
}

.wv-how-dot {
	fill: var(--wv-color-teal);
}

.how-it-works__connector {
	max-width: 100%;
	height: auto;
	margin: var(--wv-space-6) 0;
}

.cta-wave-bottom {
	margin-top: var(--wv-space-10);
	opacity: 0.35;
}

/* --- FOOTER --- */
.wv-footer {
	border-top: 1px solid rgba(0, 229, 195, 0.15);
	background-color: var(--wv-color-deep);
	padding: var(--wv-space-16) 0 var(--wv-space-8);
}

.wv-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: var(--wv-space-12);
	margin-bottom: var(--wv-space-12);
}

@media (max-width: 1024px) {
	.wv-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.wv-footer__grid {
		grid-template-columns: 1fr;
		gap: var(--wv-space-8);
	}
}

.wv-footer__brand {
	display: flex;
	flex-direction: column;
	gap: var(--wv-space-6);
}

.wv-logo-svg {
	max-width: 140px;
	height: auto;
}

.wv-footer__tagline {
	color: var(--wv-color-text-secondary);
	font-size: 15px;
	line-height: 1.6;
	max-width: 20rem;
	margin: 0;
}

.wv-footer__social {
	display: flex;
	gap: var(--wv-space-4);
}

.wv-social-link {
	color: var(--wv-color-text-secondary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.03);
	transition: all 0.3s ease;
}

.wv-social-link:hover, .wv-social-link:focus-visible {
	color: var(--wv-color-teal);
	background-color: rgba(0, 229, 195, 0.1);
	transform: translateY(-2px);
}

.wv-footer__heading {
	color: var(--wv-color-text-primary);
	font-family: var(--wv-font-display);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 var(--wv-space-6);
}

.wv-footer__nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: var(--wv-space-4);
}

.wv-footer-link {
	color: var(--wv-color-text-secondary);
	text-decoration: none;
	font-size: 15px;
	transition: color 0.2s ease;
}

.wv-footer-link:hover, .wv-footer-link:focus-visible {
	color: var(--wv-color-teal);
}

.wv-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: var(--wv-space-8);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	flex-wrap: wrap;
	gap: var(--wv-space-6);
}

.wv-footer__copyright {
	color: var(--wv-color-text-tertiary);
	font-size: 14px;
	margin: 0;
}

.wv-footer__badges {
	display: flex;
	gap: var(--wv-space-3);
	flex-wrap: wrap;
}

.wv-cta-wrap {
	position: relative;
	width: 100%;
	padding: var(--wv-space-12) var(--wv-space-8);
	border-radius: var(--wv-radius-xl);
	overflow: hidden;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.wv-cta-gradient {
	background: linear-gradient(-45deg, #00e5c3, #38bdf8, #00e5c3, #38bdf8);
	background-size: 400% 400%;
	color: var(--wv-color-obsidian);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 40px 80px -20px rgba(0, 229, 195, 0.3);
	animation: wv-gradient-pos 15s ease infinite;
}

@keyframes wv-gradient-pos {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.wv-cta-gradient h2,
.wv-cta-gradient p,
.wv-cta-gradient span {
	color: var(--wv-color-obsidian) !important;
}

.wv-cta-gradient .wv-btn-secondary {
	background: var(--wv-color-obsidian);
	color: white;
	border: none;
}

.wv-cta-gradient .wv-btn-secondary:hover {
	background: #000;
	transform: translateY(-2px);
}

.wv-hero-icon-row {
	display: flex;
	align-items: center;
	gap: var(--wv-space-3);
	margin-bottom: var(--wv-space-3);
}

.wv-features-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--wv-space-6);
}

.wv-integrations-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--wv-space-6);
}

.wv-team-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--wv-space-8);
}

.wv-compliance-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--wv-space-6);
}

@media (max-width: 1024px) {
	.wv-compliance-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.wv-compliance-grid {
		grid-template-columns: 1fr;
	}
}

.wv-how-steps {
	display: flex;
	flex-direction: column;
	gap: var(--wv-space-8);
}

.wv-how-step {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wv-space-8);
	align-items: center;
	position: relative;
}

.wv-how-step--right .wv-how-step__content {
	order: 2;
}

.wv-how-step--right .wv-how-step__visual {
	order: 1;
}

@media (max-width: 768px) {
	.wv-how-step {
		grid-template-columns: 1fr;
	}
	.wv-how-step--right .wv-how-step__content,
	.wv-how-step--right .wv-how-step__visual {
		order: initial;
	}
}

.wv-how-step__ghost {
	position: absolute;
	top: -20px;
	left: 0;
	font-family: var(--wv-font-display);
	font-weight: 800;
	font-size: 8rem;
	color: rgba(0, 229, 195, 0.05);
	z-index: 0;
	pointer-events: none;
}

.wv-how-step--right .wv-how-step__ghost {
	left: auto;
	right: 0;
}

.wv-how-step__content, .wv-how-step__visual {
	position: relative;
	z-index: 1;
}

.wv-how-step__title {
	font-family: var(--wv-font-display);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: var(--wv-space-4);
	color: var(--wv-color-teal);
}

.wv-how-step__body {
	font-size: 1.125rem;
	color: var(--wv-color-text-primary);
	margin-bottom: var(--wv-space-4);
}

.wv-how-step__list {
	list-style: none;
	padding: 0;
	margin: 0;
	color: var(--wv-color-text-secondary);
}

.wv-how-step__list li {
	margin-bottom: var(--wv-space-2);
	position: relative;
	padding-left: var(--wv-space-4);
}

.wv-how-step__list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--wv-color-teal);
}


.wv-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--wv-space-8);
	align-items: stretch;
}

.wv-pricing-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* DEMO PAGE: CLINICAL FUTURISM */
.wv-demo-grid {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	gap: var(--wv-space-12);
	align-items: center;
}

@media (max-width: 991px) {
	.wv-demo-grid {
		grid-template-columns: 1fr;
		gap: var(--wv-space-10);
	}
}

.wv-demo-copy {
	grid-column: span 5;
}

.wv-demo-form-wrap {
	grid-column: span 5;
	position: relative;
}

@media (min-width: 1200px) {
	.wv-demo-copy {
		grid-column: span 4;
	}
	.wv-demo-form-wrap {
		grid-column: 7 / span 4;
	}
}

.wv-glass--demo {
	background: rgba(13, 22, 40, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 229, 195, 0.12);
	box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 
	            inset 0 0 40px rgba(0, 229, 195, 0.05);
}

.wv-pulse-line {
	stroke-dasharray: 200;
	stroke-dashoffset: 200;
	animation: wv-pulse-draw 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes wv-pulse-draw {
	0% { stroke-dashoffset: 200; opacity: 0; }
	20% { opacity: 1; }
	80% { opacity: 1; }
	100% { stroke-dashoffset: 0; opacity: 0; }
}

.wv-status-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--wv-color-teal);
	box-shadow: 0 0 10px var(--wv-color-teal);
	margin-right: 8px;
	animation: wv-blink-dot 2s infinite;
}

@keyframes wv-blink-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(0.9); }
}

.wv-demo-hero-title {
	font-family: 'Syne', sans-serif !important;
	letter-spacing: -0.05em !important;
}

.wv-data-mono {
	font-family: 'JetBrains Mono', monospace !important;
}

/* FORM STATES & GLASSY INPUTS */
.wv-demo-form input,
.wv-demo-form select {
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: white !important;
}

.wv-demo-form input:focus, 
.wv-demo-form select:focus {
	border-color: var(--wv-color-teal) !important;
	box-shadow: inset 0 0 15px rgba(0, 229, 195, 0.1), 0 0 0 4px rgba(0, 229, 195, 0.1) !important;
	background: rgba(255, 255, 255, 0.05) !important;
}

/* MINIMAL FOOTER */
.wv-footer--minimal {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: var(--wv-space-12) 0;
	background: transparent;
}

.wv-footer--minimal .wv-footer__bottom {
	border-top: none;
	padding-top: 0;
}

/* ═══════════════════════════════════════════════
   AUDIT FIXES — MISSING CSS DEFINITIONS
   ═══════════════════════════════════════════════ */

/* CRIT-01: Hero split layout grid */
.wv-hero__grid {
	display: grid;
	grid-template-columns: 55fr 45fr;
	gap: var(--wv-space-12);
	align-items: center;
}

.wv-hero__content {
	position: relative;
	z-index: 1;
}

.wv-hero__visual {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
}

@media (max-width: 1024px) {
	.wv-hero__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.wv-hero__content {
		order: 1;
	}

	.wv-hero__visual {
		order: 2;
		margin-top: var(--wv-space-10);
	}

	.wv-hero__content .wv-eyebrow {
		justify-content: center;
	}

	.wv-hero__content .wv-hero-ctas {
		justify-content: center;
	}

	.wv-hero__content .wv-hero-trust {
		justify-content: center;
	}
}

/* CRIT-02: Inner page hero section */
.wv-page-hero {
	min-height: 420px;
	display: flex;
	align-items: center;
	padding-block: var(--wv-space-20);
}

.wv-page-hero .wv-container {
	width: 100%;
}

/* MED-05: Section-level heading (replaces inline-style hero-title overrides) */
.wv-section-title {
	font-family: var(--wv-font-display);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--wv-color-text-primary);
	margin: var(--wv-space-4) 0 var(--wv-space-6);
	line-height: 1.15;
}

/* HIGH-02: Testimonials grid */
.wv-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--wv-space-6);
}

@media (max-width: 1024px) {
	.wv-testimonials-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.wv-testimonials-grid {
		grid-template-columns: 1fr;
	}
}

/* HIGH-03: CTA button variants for gradient banners */
.wv-btn-cta-dark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--wv-space-2);
	font-family: var(--wv-font-ui);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--base, 16px);
	padding: var(--wv-space-3) var(--wv-space-8);
	border-radius: var(--wv-radius-pill);
	text-decoration: none;
	background: var(--wv-color-obsidian);
	color: var(--wv-color-text-primary);
	border: none;
	cursor: pointer;
	transition: all var(--wv-dur-fast) var(--wv-ease-out);
}

.wv-btn-cta-dark:hover {
	background: var(--wv-color-surface);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.wv-btn-cta-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--wv-space-2);
	font-family: var(--wv-font-ui);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--base, 16px);
	padding: var(--wv-space-3) var(--wv-space-8);
	border-radius: var(--wv-radius-pill);
	text-decoration: none;
	background: transparent;
	border: 1px solid rgba(8, 14, 26, 0.25);
	color: var(--wv-color-obsidian);
	cursor: pointer;
	transition: all var(--wv-dur-fast) var(--wv-ease-out);
}

.wv-btn-cta-outline:hover {
	background: rgba(8, 14, 26, 0.08);
	transform: translateY(-2px);
}

/* HIGH-04: Pricing card typography */
.wv-card-pricing {
	display: flex;
	flex-direction: column;
}

.wv-card-pricing__tier {
	font-family: var(--wv-font-display);
	font-weight: 800;
	font-size: 20px;
	color: var(--wv-color-text-primary);
	display: block;
	margin-bottom: var(--wv-space-2);
}

.wv-card-pricing__desc {
	font-size: 14px;
	color: var(--wv-color-text-secondary);
	margin: 0 0 var(--wv-space-6);
	line-height: 1.5;
}

.wv-card-pricing__price {
	margin-bottom: var(--wv-space-6);
}

.wv-card-pricing__amount {
	font-family: var(--wv-font-mono);
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 500;
	color: var(--wv-color-teal);
}

.wv-card-pricing__period {
	font-size: 13px;
	color: var(--wv-color-text-secondary);
	margin-left: 4px;
}

.wv-card-pricing__features {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--wv-space-8);
	display: flex;
	flex-direction: column;
	gap: var(--wv-space-3);
	flex-grow: 1;
}

.wv-card-pricing__features li {
	display: flex;
	align-items: center;
	gap: var(--wv-space-2);
	font-size: 14px;
	color: var(--wv-color-text-secondary);
}

.wv-card-pricing__features .wv-icon {
	color: var(--wv-color-teal);
	flex-shrink: 0;
}

.wv-card-pricing__recommended {
	display: inline-block;
	margin-bottom: var(--wv-space-4);
}

/* CRIT-03: Comparison table styles */
.wv-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: var(--wv-radius-lg);
	border: 1px solid var(--wv-color-border);
}

.wv-comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--wv-font-ui);
	font-size: 14px;
}

.wv-comparison-table thead {
	background: var(--wv-color-surface);
	position: sticky;
	top: 0;
	z-index: 2;
}

.wv-comparison-table th {
	padding: var(--wv-space-4) var(--wv-space-5);
	text-align: left;
	font-weight: 700;
	color: var(--wv-color-text-primary);
	border-bottom: 1px solid var(--wv-color-border);
	white-space: nowrap;
}

.wv-comparison-table td {
	padding: var(--wv-space-3) var(--wv-space-5);
	color: var(--wv-color-text-secondary);
	border-bottom: 1px solid rgba(28, 46, 74, 0.4);
	vertical-align: middle;
}

.wv-comparison-table tbody tr:last-child td {
	border-bottom: none;
}

.wv-comparison-table tbody tr:hover {
	background: rgba(0, 229, 195, 0.03);
}

.wv-comparison-table td:first-child {
	color: var(--wv-color-text-primary);
	font-weight: 600;
}

.wv-comparison-table .wv-icon {
	vertical-align: middle;
}
