body {
	font-family: var(--font-body);
	font-size: var(--text-base);
	color: var(--color-text);
	line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 800;
	color: var(--color-dark);
	line-height: 1.2;
}

h1 {
	font-size: var(--text-5xl);
}

h2 {
	font-size: var(--text-4xl);
}

h3 {
	font-size: var(--text-3xl);
}

h4 {
	font-size: var(--text-2xl);
}

h5 {
	font-size: var(--text-xl);
}

h6 {
	font-size: var(--text-lg);
}

p {
	margin-bottom: var(--space-4);
}

a {
	color: var(--color-purple);
	text-decoration: none;
	transition: color 0.2s;
}

a:hover {
	color: var(--color-purple-light);
}

strong {
	font-weight: 800;
}

.mike-section-label {
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--color-purple);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.mike-section-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
}

.mike-section-subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	max-width: 600px;
	line-height: 1.6;
}
