/* Base reset — shared by every page. Page-specific look lives in landing.css (Liquid Glass system). */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
}

.container {
  --max: 1120px;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
