/* SynapseDev - tokens, reset e base */
:root {
  --ink: #0c1b2a;
  --ink-soft: #3d4f61;
  --muted: #6b7c8d;
  --accent: #0e7c86;
  --accent-deep: #0a5f67;
  --accent-soft: #d7eef0;
  --white: #ffffff;
  --paper: #f3f6f9;
  --line: #d8e0e7;
  --shadow: 0 16px 40px rgba(12, 27, 42, 0.1);
  --max: 1180px;
  --font-display: "Outfit", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

@media (min-width: 1400px) {
  :root {
    --max: 1320px;
  }
}

@media (min-width: 1680px) {
  :root {
    --max: 1480px;
  }
}

@media (min-width: 1920px) {
  :root {
    --max: 1600px;
  }
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

button {
  font: inherit;
}

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

@media (min-width: 1400px) {
  .container {
    width: min(100% - 4.5rem, var(--max));
  }
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 1.75rem, var(--max));
  }
}
