/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: var(--r-pill);
	font-weight: 600;
	font-size: 15px;
	transition:
		background 0.18s var(--ease),
		transform 0.18s var(--ease),
		box-shadow 0.18s var(--ease),
		border-color 0.18s var(--ease);
	white-space: nowrap;
	line-height: 1;
}
.btn svg {
	width: 18px;
	height: 18px;
}
.btn--primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 6px 16px -6px rgba(2, 89, 255, 0.5);
}
.btn--primary:hover {
	background: var(--blue-hover);
	transform: translateY(-1px);
	box-shadow: 0 10px 22px -8px rgba(2, 89, 255, 0.55);
}
.btn--primary:active {
	background: var(--blue-press);
	transform: translateY(0);
}
.btn--ghost {
	background: #fff;
	color: var(--ink-2);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
	border-color: #cdd6e4;
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}
.btn--sm {
	padding: 10px 16px;
	font-size: 14px;
}
.btn--lg {
	padding: 15px 26px;
	font-size: 16px;
}

/* Watch-demo button: blue label + icon */
.btn--demo {
	color: var(--blue);
}
