:root {
  --bg-0: #0a1118;
  --bg-1: #111a26;
  --bg-2: #0f1722;
  --text: #f2f5fb;
  --muted: #bac5d6;
  --brand: #87a4ea;
  --brand-strong: #6f8fd7;
  --accent: #a8b8d3;
  --stroke: rgba(166, 182, 205, 0.3);
  --surface: rgba(13, 20, 33, 0.74);
  --surface-strong: rgba(10, 16, 28, 0.84);
  --shadow: 0 20px 42px rgba(0, 0, 0, 0.38);
  --max-width: 1160px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background-color: var(--bg-0);
}

html {
  background: linear-gradient(170deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-2) 100%);
}

body {
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(170deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-2) 100%);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

p,
figure {
  margin: 0;
}

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

main {
  position: relative;
  z-index: 3;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
