/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Links: remove default underline globally */
a, a:hover, a:focus, a:active { text-decoration: none; }

body {
  font-family: 'Avenir Next', 'Futura Light', 'Century Gothic', sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #f7fafc;
  background-image:
    radial-gradient(800px 400px at 10% 10%, rgba(79, 209, 199, 0.05), rgba(79, 209, 199, 0) 60%),
    linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.container { margin: 0 auto; padding: 0 20px; }

