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

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--nav-h);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.15;
	margin: 0;
	letter-spacing: -0.02em;
}

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

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

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

button {
	font-family: inherit;
	cursor: pointer;
}

.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 24px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--violet-300);
	background: rgba(124, 58, 237, 0.1);
	border: 1px solid var(--border-strong);
	padding: 6px 14px;
	border-radius: 999px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid transparent;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
	white-space: nowrap;
}

.btn:focus-visible {
	outline: 2px solid var(--violet-300);
	outline-offset: 3px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--violet-500), var(--violet-400));
	color: #fff;
	box-shadow: 0 8px 24px -8px var(--violet-glow);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px -8px var(--violet-glow);
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.03);
	border-color: var(--border);
	color: var(--text-primary);
}

.btn-ghost:hover {
	border-color: var(--border-strong);
	background: rgba(255, 255, 255, 0.06);
}

.section {
	padding-block: 120px;
	position: relative;
	z-index: 1;
}

.section-head {
	text-align: center;
	max-width: 620px;
	margin: 20px auto 56px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.section-head h2 {
	font-size: clamp(28px, 4vw, 40px);
}

.section-head p {
	font-size: 16px;
}

@media (max-width: 720px) {
	.section {
		padding-block: 72px;
	}
}
