:root {
  --font-main: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Arial, sans-serif;
  --white: #ffffff;
  --bg: #020611;
  --bg-2: #030817;
  --muted: rgba(231, 237, 255, 0.56);
  --muted-soft: rgba(231, 237, 255, 0.42);
  --line: rgba(128, 172, 255, 0.14);
  --line-strong: rgba(150, 195, 255, 0.24);
  --blue: #3b82ff;
  --blue-strong: #1267ff;
  --blue-deep: #061a4d;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img,
video {
  max-width: 100%;
}

img {
  user-select: none;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}
