/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
	line-height: 1.7;
	color: #1a1a1a;
	background: #ffffff;
	scroll-behavior: smooth;
}

h1,
h2,
h3,
.logo {
	font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
	letter-spacing: -0.02em;
}

/* Container and Layout */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Consistent spacing rhythm */
section {
	padding: 120px 0;
}

section:nth-child(even) {
	position: relative;
}

section:nth-child(even)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #e5e5e5 50%, transparent);
}
