* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

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

#about,
#platforms,
#contacts {
  scroll-margin-top: 96px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}

.section-title h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
}

.section-title p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--muted);
}
