/* Flooding shared theme tokens and base layout primitives. */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #142f75;
  --blue-mid: #1f3f90;
  --uk: #1f6f8b;
  --de: #4c6fbf;
  --nl: #8a5ea7;
  --bg: #ffffff;
  --surface: #f8f9fc;
  --border: #e5e7eb;
  --text: #111827;
  --muted: #6b7280;
  --max-w: 920px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem;
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }
}
