@import './components.css';
@import './pages.css';
@import './utilities.css';

:root {
  --color-primary: #1d4ed8;
  --color-secondary: #0ea5e9;
  --color-accent: #fde047;
  --color-surface: #ffffff;
  --color-neutral: #0f172a;
  --color-muted: #475569;
  --color-border: #e2e8f0;
  --color-shadow: rgba(15, 23, 42, 0.08);
  --gradient-hero: radial-gradient(circle at top, rgba(14, 165, 233, 0.25), transparent 55%);
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius-base: 1.5rem;
  --radius-sm: 0.75rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
}
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-surface);
  color: var(--color-neutral);
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}

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

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

section {
  padding: var(--space-lg) 0;
}

.section__head {
  margin-bottom: var(--space-md);
}

.section__head h2 {
  margin: 0;
  font-size: 2rem;
}

.section__head p {
  margin-top: var(--space-xs);
  color: var(--color-muted);
}
