/* =========================
GLOBAL STYLES
========================= */
:root {
–primary: #2563eb; /* Blue CTA */
–primary-dark: #1e40af;
–accent: #22c55e; /* Success green */
–bg: #f8fafc;
–text: #0f172a;
–muted: #64748b;
–radius: 12px;
–shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
–max-width: 1100px;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
margin: 0;
font-family: “Inter”, system-ui, -apple-system, sans-serif;
color: var(–text);
background: var(–bg);
line-height: 1.6;
}
/* =========================
LAYOUT
========================= */
.container {
max-width: var(–max-width);
margin: 0 auto;
padding: 4rem 1.5rem;
}
.hero {
display: grid;
grid-template-columns: 1.1fr 0.9fr;